Variable: org-export-with-archived-trees

org-export-with-archived-trees is a customizable variable defined in ox.el.gz.

Value

headline

Documentation

Whether sub-trees with the ARCHIVE tag should be exported.

This can have three different values:
nil Do not export, pretend this tree is not present.
t Do export the entire tree.
headline Only export the headline, but skip the tree below it.

This option can also be set with the OPTIONS keyword, e.g. "arch:nil".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-archived-trees 'headline
  "Whether sub-trees with the ARCHIVE tag should be exported.

This can have three different values:
nil         Do not export, pretend this tree is not present.
t           Do export the entire tree.
`headline'  Only export the headline, but skip the tree below it.

This option can also be set with the OPTIONS keyword,
e.g. \"arch:nil\"."
  :group 'org-export-general
  :type '(choice
	  (const :tag "Not at all" nil)
	  (const :tag "Headline only" headline)
	  (const :tag "Entirely" t))
  :safe (lambda (x) (memq x '(t nil headline))))