Variable: org-export-exclude-tags
org-export-exclude-tags is a customizable variable defined in
ox.el.gz.
Value
("noexport")
Documentation
Tags that exclude a tree from export.
All trees carrying any of these tags will be excluded from
export. This is without condition, so even subtrees inside that
carry one of the org-export-select-tags will be removed.
This option can also be set with the EXCLUDE_TAGS keyword.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-exclude-tags '("noexport")
"Tags that exclude a tree from export.
All trees carrying any of these tags will be excluded from
export. This is without condition, so even subtrees inside that
carry one of the `org-export-select-tags' will be removed.
This option can also be set with the EXCLUDE_TAGS keyword."
:group 'org-export-general
:type '(repeat (string :tag "Tag"))
:safe (lambda (x) (and (listp x) (cl-every #'stringp x))))