Created
May 11, 2012 03:27
-
-
Save nissuk/2657345 to your computer and use it in GitHub Desktop.
Haml: Hamlでの属性のいくつかの書き方
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
%a(href="http://example.com" title="title") | |
Haml HTML-style Attributes -- 簡単! | |
/ その他 | |
%a{"href"=>"http://example.com", "title"=>"title"} | |
Ruby Hash (key: String) | |
%a{:href=>"http://example.com", :title=>"title"} | |
Ruby Hash (key: Symbol) | |
%a{href:"http://example.com", title:"title"} | |
Ruby Hash (key: Symbol, ver. 1.9) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment