Skip to content

Instantly share code, notes, and snippets.

@dstarh
Created January 14, 2013 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dstarh/4530665 to your computer and use it in GitHub Desktop.
Save dstarh/4530665 to your computer and use it in GitHub Desktop.
#foo
#bar
#baz
renders
<div id="foo">
<div id="bar">
<div id="baz">
</div>
</div>
</div>
un-indent the #baz and you get:
#foo
#bar
#baz
<div id="foo">
<div id="bar">
</div>
<div id="baz">
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment