You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a way to convert "standard" manuscripts (in Microsoft Word doc format) to Asciidoc, such that Asciidoctor can then typeset them into pretty PDFs.
The text was updated successfully, but these errors were encountered:
Lol OK so pandoc's ODT reader does NOT put DoubleQuote nodes into the AST. But the Markdown reader does. However, the AsciiDoc writer will ONLY use the correct syntax for double-quotes --
"`Like this,`" she said.
-- when given a DoubleQuote node in the AST.
Therefore, ODT -> AsciiDoc does NOT provide the correct results, but ODT -> Markdown -> AsciiDoc does.
# This is a serviceable workaround lol
pandoc -f odt -t markdown UNTITLED.odt | pandoc -f markdown -t asciidoc
We need a way to convert "standard" manuscripts (in Microsoft Word doc format) to Asciidoc, such that Asciidoctor can then typeset them into pretty PDFs.
The text was updated successfully, but these errors were encountered: