In my rails view I use
<%= Asciidoctor.render '*This* is http://asciidoc.org[AsciiDoc]!' %>
I expected to get
<div class="paragraph"> <p><strong>This</strong> is
<a href="http://asciidoc.org">AsciiDoc</a>!</p> </div>
but instead of that I get (in page source code)
<div class="paragraph">
<p><strong>This</strong> is <a href=&
quot;http://asciidoc.org">AsciiDoc</a>!</p>
</div>
What am I doing wrong? How to display asciidoc converted to html not literally with all <tags>
as now?