Skip to content

Instantly share code, notes, and snippets.

@RobertTheGrey
Created June 1, 2012 16:24
Show Gist options
  • Save RobertTheGrey/2853337 to your computer and use it in GitHub Desktop.
Save RobertTheGrey/2853337 to your computer and use it in GitHub Desktop.
Unless - in Spark
<div>
<var arg="5"/>
<unless condition="arg==5">
<p>argis5</p>
</unless>
<unless condition="arg==6">
<p>argisnot6</p>
</unless>
</div>
<!-- outputs <div><p>argisnot6</p></div> -->
<div>
<var arg="5"/>
<p unless="arg==5">argis5</p>
<p unless="arg==6">argisnot6</p>
</div>
<!-- outputs <div><p>argisnot6</p></div> -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment