我在使用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>
。
谢谢!
答案 0 :(得分:0)
有点晚但想知道?你试过html_safe
吗? <%= RedCloth.new(post.text).to_html.html_safe %>