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
Pandoc should understand and follow these directives. HOWEVER pandoc only operates on the file it is given and does not know about settings from Emacs such as customisations. If, for example, you wish not to have a Table of Contents, there must be a line #+OPTIONS: toc:nil in the file itself; any global setting of org-export-with-toc will not be respected.
So you should set the desired setting for headline levels in the file you are exporting (#+OPTIONS: H:9, I think).
It might be possible by having the exporter look through all possible global options in org-export-options-alist (defined in org-mode's ox.el). Where the global setting is non-default and no file setting is present, add an #+OPTION tag to the intermediate org file that pandoc actually processes.
Globally set the variable
org-export-headline-levels
to 9, the default export level is still 3.The text was updated successfully, but these errors were encountered: