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 ]
真棒讓我試試 - 酷URL提供了完整性 - http://haml.info/docs/yardoc/Haml/Helpers.html –