我有以下HAML代码
//add some text
%div.text
<%= answer.text %>
浏览器中的结果是这样的
如何在此文本中添加引号,以便显示“test remuse”?
答案 0 :(得分:0)
更自然的解决方案:
//add some text
%div.text
"#{answer.text}"
我认为您不需要%div
,因为.text
是div
class="text"
:
.text
"#{answer.text}"