0

我在使用 forem gem 格式化 html 时遇到问题。

在 _post.html.erb 里面你会发现这一行:<%= forem_format(post.text) %>

但是,当我查看帖子时,我会在输出中看到 html。例如,如果我输入<b> HI </b>,我会在输出中看到确切的行。

我确实尝试安装 RedCloth gem,然后把这<%= RedCloth.new(post.text).to_html %>没有产生错误,但不幸的是我仍然只<b> HI </b>在输出中看到。

谢谢!

4

1 回答 1

0

有点晚了,但想知道吗?你试过 html_safe

<%= RedCloth.new(post.text).to_html.html_safe %>

于 2012-11-05T15:20:21.297 回答