Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于这个项目,我需要能够在 Maruku 过滤器中混合 Haml 标签。例如,我能否做到这一点:
#contain :maruku ## Hello H2 Tag div{:id => 'divinmaruku'} **Can I do this?**
我知道你可以在想从 Maruku 中取出的地方取消缩进,但是:maruku每当我想使用它时这样做很痛苦。
:maruku
不,你不能这样做(至少,如果没有破解 Maruku 以便它呼唤 Haml,则不能这样做)。您可以插入文字 HTML,或使用 Maruku 的 div 语法:
+-----------{#divinmaruku}--- | **You can do this** +----------------------------
这呈现为
<div id='divinmaruku'> <p><strong>You can do this</strong></p> </div>