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
AsciiDoc defines <<< as a page break, but does not recognize the resulting DocBook markup of <simpara><?asciidoc-pagebreak?></simpara>. The DocBook XML is a necessary intermediate step for master documents that contain subdocuments, since pandoc doesn't (yet?) honor the include::[] macro for combining separate documents, either.
Running pandoc on a master document results in a bulleted list of include statements. Running pandoc on AsciiDoc -> DocBook output results in the page breaks simply being ignored.
The text was updated successfully, but these errors were encountered:
There is nowhere in the pandoc AST for page breaks unfortunately. There are also technical limitations with macros such as include::[]. It is better to handle that with a preprocessor and feed pandoc the complete document.
AsciiDoc defines
<<<
as a page break, but does not recognize the resulting DocBook markup of<simpara><?asciidoc-pagebreak?></simpara>
. The DocBook XML is a necessary intermediate step for master documents that contain subdocuments, since pandoc doesn't (yet?) honor theinclude::[]
macro for combining separate documents, either.Running pandoc on a master document results in a bulleted list of include statements. Running pandoc on AsciiDoc -> DocBook output results in the page breaks simply being ignored.
The text was updated successfully, but these errors were encountered: