导出.org文件时如何跳过某些指定的部分?

时间:2014-07-01 23:47:30

标签: emacs export org-mode

我的.org文件中有一些我不想导出的部分。我不知道怎么能这样做。这是一个示例文件来说明我的意思:

* Should be exported
  bla bla

** Should be exported

*** Secret part that should not be exported; the same goes for its child sections
    The contents should not be exported either.

**** Child section (not exported)

*** Should be exported

** Should be exported

1 个答案:

答案 0 :(得分:1)

您可以使用export和noexport标记来完成它。要启用此功能,您需要添加

#+EXPORT_SELECT_TAGS: export

#+EXPORT_EXCLUDE_TAGS: noexport

给你的文件。