Skip to content

Instantly share code, notes, and snippets.

@timkg
Last active December 17, 2015 07:39
Show Gist options
  • Save timkg/5574566 to your computer and use it in GitHub Desktop.
Save timkg/5574566 to your computer and use it in GitHub Desktop.
A quick look at jade html syntax
h1 This is a heading!
h2.warning This is a warning
p.info this is a paragraph, with an image nested inside, at the end.
img(src='http://some.url')
<h1>This is a heading!</h1>
<h2 class="warning">This is a warning</h2>
<p class="info">this is a paragraph, with an image nested inside, at the end.<img src="http://some.url"></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment