2013-04-30 49 views
0

我無法將HTML語法轉換爲HAML。haml中的div標題語法,並且還包含裏面的ruby變量

我知道<div>類可以通過簡單地表示:

.class-name 

但是,我想下面的語法轉換成HAML並在標題中包含的變量:

<div title="My title" class="my-text">This is my title</div> 

東西如:

.title{@ruby-variable}.my-text 

回答

1
.my-text{:title => "My title"} This is my title 

in haml你使用#someid.someclass{:custom_attr => "something"}。如果你需要動態定義它,:costum_attr也可以是一個類或一個id。

1

試試這個:

.my-text{:title => 'My title'} This is my title 

或者另一種語法:

.my-text(title = 'My title') This is my title