Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created May 11, 2012 03:27
Show Gist options
  • Save nissuk/2657345 to your computer and use it in GitHub Desktop.
Save nissuk/2657345 to your computer and use it in GitHub Desktop.
Haml: Hamlでの属性のいくつかの書き方
%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