Skip to content

Instantly share code, notes, and snippets.

@davidbanham
Created August 10, 2011 05:48
Show Gist options
  • Save davidbanham/1136212 to your computer and use it in GitHub Desktop.
Save davidbanham/1136212 to your computer and use it in GitHub Desktop.
Jade weirdness
This:
p
form
label Email Address:
input(type="text", name="email")
label Wedding Date
input(type="text", name="date")
Renders this:
<p></p>
<form>
<label>Email Address:</label>
<input type="text" name="email">
<input type="text" name="date">
</form>
<p></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment