2014-01-25 55 views
1

HAML有可能在主題提問時創建變量TAG嗎?HAML變量標籤即。 %foo或%#{foo}可能嗎?

想做

- tag = "h1" 


%tag 

乾杯

最終版本我所用

-# Type Default 
- if ! defined? locals[ :type ] 
    - type = "h1" 
- else 
    - type = locals[ :type ] 

-# Heading 
- haml_tag type do 

    -# Main Text 
    = locals[:text] 

    -# Add the secondary text if required 
    -if defined? locals[ :small ] 
     %small= locals[ :small ] 

回答

4

是的,這是可能的。

試試這個。

- tag = 'h1' 
- haml_tag tag, "I'm h1." 
+0

真棒讓我試試 - 酷URL提供了完整性 - http://haml.info/docs/yardoc/Haml/Helpers.html –

相關問題