在我的 Rails 视图中,我使用
<%= Asciidoctor.render '*This* is http://asciidoc.org[AsciiDoc]!' %>
我希望得到
<div class="paragraph"> <p><strong>This</strong> is
<a href="http://asciidoc.org">AsciiDoc</a>!</p> </div>
但我得到的不是那个(在页面源代码中)
<div class="paragraph">
<p><strong>This</strong> is <a href=&
quot;http://asciidoc.org">AsciiDoc</a>!</p>
</div>
我究竟做错了什么?如何显示 asciidoc 转换为 html 而不是<tags>
像现在一样全部?