8

I want to export an org mode document so that sections or subsections with TODO keywords do not appear in the exported output. How can this be achieved?

The export-settings documentation does not explicitly mention anything related to this.

hrkrshnn
  • 439
  • 6
  • 14

3 Answers3

9

There is an export option to control exporting of TODO items:

tasks: Toggle inclusion of tasks (TODO items), can be nil to remove all tasks, todo to remove DONE tasks, or a list of keywords to keep (org-export-with-tasks).

Setting it to nil will hide tasks from your exported document.

Juancho
  • 5,395
  • 15
  • 20
2

Or if you want to export DONE items but not TODO items, set it (tasks) to done.

0

I used tasks:nil. For example, I use this in a sub-tree where I want to exclude tasks from export:

:PROPERTIES:
:EXPORT_OPTIONS: tasks:nil
:END:
midas0441
  • 304
  • 1
  • 7