Last active
August 31, 2015 14:23
-
-
Save YumaInaura/033c2d8efa1c6e0230b3 to your computer and use it in GitHub Desktop.
Hamlでidを正しく出力する方法( {id: "my-id"} のようにベタ書きで出力されてしまう原因) ref: http://qiita.com/Yinaura/items/9e3afdfe2204e7c12b53
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
%div{id: "my-id"} |
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
%div {id: "my-id"} |
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
%div#my-id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment