Created
August 10, 2011 05:48
-
-
Save davidbanham/1136212 to your computer and use it in GitHub Desktop.
Jade weirdness
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
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