Last active
August 29, 2015 14:02
-
-
Save dstarh/7a4e787f83af0867e146 to your computer and use it in GitHub Desktop.
This file contains 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
:template{id: "foo"} | |
.this | |
.that.somethingelse | |
%h1 Title | |
.body | |
some text {{foo}} |
This file contains 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
<script type="text/javascript" id="foo"> | |
<div class="this"> | |
<div class="that somethingelse"> | |
<h1>Title</h1> | |
</div> | |
<div class="body"> | |
som text {{foo}} | |
</div> | |
</div> | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment