Skip to content

Instantly share code, notes, and snippets.

@chrislerum
Last active August 29, 2015 14:13
Show Gist options
  • Save chrislerum/abb2dc7e708838ce0846 to your computer and use it in GitHub Desktop.
Save chrislerum/abb2dc7e708838ce0846 to your computer and use it in GitHub Desktop.
snippet of slim
code: (slim in view)
.page-header
h1 One
small Two
expected:
<div class="page-header">
<h1>
One
<small>
Two
</small>
</h1>
</div>
actual:
<div class="page-header">
<h1>
One
small Two
</h1>
</div>
solution:
.page-header
h1
| One
small
| Two
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment