如何在HAML代码中为文本添加引号

时间:2012-06-14 05:29:15

标签: haml double-quotes

我有以下HAML代码

//add some text
%div.text
  <%= answer.text %>

浏览器中的结果是这样的

enter image description here

如何在此文本中添加引号,以便显示“test remuse”?

1 个答案:

答案 0 :(得分:0)

更自然的解决方案:

//add some text
%div.text
  "#{answer.text}"

我认为您不需要%div,因为.textdiv class="text"

.text
  "#{answer.text}"