-
-
Save DCarper/1267727 to your computer and use it in GitHub Desktop.
Haml vs html -- can have "display: inline" tags inline?
This file contains hidden or 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