Is there an equivalent of Org-mode's b_ignoreheading for non-beamer documents?

前端 未结 3 1402
有刺的猬
有刺的猬 2021-02-06 02:58

When using Org-mode to create beamer presentation it is possible to set the property of a heading such that the exported heading is not shown but only its contents. For instance

3条回答
  •  北荒
    北荒 (楼主)
    2021-02-06 03:57

    Now you can do this easily with ox-extra. Add the following to your init file:

    (require 'ox-extra)
    (ox-extras-activate '(ignore-headlines))
    

    Then any headings with ignore tag will be ignored, while their content will still be exported.

提交回复
热议问题