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
I am trying to export an org file with #+OPTIONS: H:0, meaning with no headers, so that the final result is a traditional outline with proper indentation etc.
In org mode's own exporter, I get this: Org Export within emacs, which, while not beautiful, allows the functionality I want: what were top level headers are numbered (1., 2., etc.). They become top level lines within the outline.
Pandoc's is close, but the first level headers lack proper numbering. See here: Pandoc pdf. It does not generate a usable outline, which should look like:
1. aaaa
a. bbbbbb
rather than
aaaaa
1. bbbbbbb
I request that this functionality be added to match Org mode's own exporter.
~$ pandoc --version
pandoc 1.19.2.1
Compiled with pandoc-types 1.17.0.4, texmath 0.9, skylighting 0.1.1.4
Default user data directory: /home/william/.pandoc
Copyright (C) 2006-2016 John MacFarlane
Web: http://pandoc.org
This is free software; see the source for copying conditions.
There is no warranty, not even for merchantability or fitness
for a particular purpose.
The text was updated successfully, but these errors were encountered:
Emacs parses org documents into a tree structure, which is then
post-processed during exporting. The reader is changed to do the same,
turning the document into a single tree of headlines starting at
level 0.
Fixes: jgm#3695
I am trying to export an org file with #+OPTIONS: H:0, meaning with no headers, so that the final result is a traditional outline with proper indentation etc.
In org mode's own exporter, I get this: Org Export within emacs, which, while not beautiful, allows the functionality I want: what were top level headers are numbered (1., 2., etc.). They become top level lines within the outline.
Pandoc's is close, but the first level headers lack proper numbering. See here:
Pandoc pdf. It does not generate a usable outline, which should look like:
rather than
I request that this functionality be added to match Org mode's own exporter.
~$ pandoc --version
pandoc 1.19.2.1
Compiled with pandoc-types 1.17.0.4, texmath 0.9, skylighting 0.1.1.4
Default user data directory: /home/william/.pandoc
Copyright (C) 2006-2016 John MacFarlane
Web: http://pandoc.org
This is free software; see the source for copying conditions.
There is no warranty, not even for merchantability or fitness
for a particular purpose.
The text was updated successfully, but these errors were encountered: