Created
June 1, 2010 05:26
-
-
Save dshaw/420604 to your computer and use it in GitHub Desktop.
Mustache - Logic-less Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello {{name}} | |
You have just won ${{value}}! | |
{{#in_ca}} | |
Well, ${{taxed_value}}, after taxes. | |
{{/in_ca}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
name: "Chris", | |
value: 10000, | |
taxed_value: function() { | |
return this.value - (this.value * 0.4); | |
}, | |
in_ca: true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello Chris | |
You have just won $10000! | |
Well, $6000, after taxes. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment