Is DocBook's <informalexample> supported in pandoc's ePub conversion? #2319
adeluccar
commented
Not (yet) supported. (Btw, you can see what is supported
in the comments at the beginning of the source file:
https://github.com/jgm/pandoc/blob/master/src/Text/Pandoc/Readers/DocBook.hs#L24
We could support it, perhaps putting it in a Div?
+++ Alberto De Lucca [Jul 21 15 17:53 ]:
…
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey!
I have a docbook which makes extensive use of
<informalexample>
tags.When I run
pandoc -f docbook -t epub3 --epub-cover=images/cover.jpg --epub-stylesheet=styles/epub.css -o book.epub book.xml
I get the ePub but the examples lack any output tags or anything that I could style.Is this a bug or is
<informalexample>
just not supported when converting?