Skip to content

Instantly share code, notes, and snippets.

@NV
Created May 16, 2009 07:42
Show Gist options
  • Save NV/112612 to your computer and use it in GitHub Desktop.
Save NV/112612 to your computer and use it in GitHub Desktop.
<html>
<h1 class=title id=head>Quack-Quack!</h1>
<p>
Quack
<span>quack</span>
quack!
</p>
</html>
We can safety simplify closing tags.
<html>
<h1 class=title id=head>Quack-Quack!</>
<p>
Quack
<span>quack</>
quack!
</>
</>
html{
h1(class=title id=head){
Quack-Quack!
}
p{
Quack
span{quack}
quack!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment