Is there a way to tell #Emacs #org-mode to omit yhe TOC and headline numbers when exporting to a text or markdown file? I'm trying to implement a #JohnnyDecimal system, so I'm supplying my own numbers and the 00.00-index.org
file essentially is the table of contents.
Edit: Because not all replies federate, here's the solution I ended up with:
#+STARTUP: overview indent nonum
#+OPTIONS: toc:nil
like this
randygalbraith
in reply to Jonathan Lamothe • • •Arjen :emacs: :linux: :nixos:
in reply to Jonathan Lamothe • • •Export Settings (The Org Manual)
orgmode.orgJonathan Lamothe likes this.
Lea
in reply to Arjen :emacs: :linux: :nixos: • • •Since the manual doesn't include examples, it can be confusing as to how to actually use those settings. For this case, add the following line:
#+OPTIONS: toc:nil num:nil
Jonathan Lamothe likes this.