Created
October 6, 2011 15:34
-
-
Save carols10cents/1267705 to your computer and use it in GitHub Desktop.
Haml vs html -- can have "display: inline" tags inline?
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
<!-- haml --> | |
%blockquote | |
I am not running for president. - | |
%strong | |
everyone | |
, ever | |
<!-- html --> | |
<blockquote> | |
I am not running for president. -<strong>everyone</strong>, ever | |
</blockquote> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment