Closed mo-aro-etailer closed 2 months ago
When you try to convert nested span <span class="class-1">abc<span class="class-2">123</span></span>
<span class="class-1">abc<span class="class-2">123</span></span>
to asciidoc, you get
[.class-1]#abc [.class-2]# 123##
when you try to convert it back to html you get <span class="class-1">abc [.class-2]</span>123##
<span class="class-1">abc [.class-2]</span>123##
As you can see pandoc is unable to properly create nested span object.
What is the expected asciidoc output for this?
This issue can be closed. The problem is not from pandoc but from aciidoctor. Thanks for the quick response
When you try to convert nested span
<span class="class-1">abc<span class="class-2">123</span></span>
to asciidoc, you get
[.class-1]#abc [.class-2]# 123##
when you try to convert it back to html you get
<span class="class-1">abc [.class-2]</span>123##
As you can see pandoc is unable to properly create nested span object.