gpt4 book ai didi

ruby-on-rails - 帮助 HAML : Mixing text and other HTML tags

转载 作者:行者123 更新时间:2023-12-03 16:18:08 30 4
gpt4 key购买 nike

我正在将我的 ERB 模板转换为 HAML 模板。

<p>
Welcome to <span><%= name1 %> </span>, <span> <%= name2 %></span> and <span><%= name3 %></span>.
</p>

这是我想出的
%p
Welcome to
%span= name1
,
%span= name2
and
%span= name3
.

我有一种感觉,有更优雅的方式来做到这一点。

最佳答案

您没有理由不应该在您的 Haml 文档中使用内联 HTML 标签。见 this post解释为什么 Haml 不适合内联标记。

<p>
Welcome to <span>#{name1}</span>, <span>#{name2}</span> and <span>#{name3}</span>.
</p>

关于ruby-on-rails - 帮助 HAML : Mixing text and other HTML tags,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2337903/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com