Variable: org-export-with-tags
org-export-with-tags is a customizable variable defined in ox.el.gz.
Value
t
Documentation
If nil, do not export tags, just remove them from headlines.
If this is the symbol not-in-toc, tags will be removed from
table of contents entries, but still be shown in the headlines of
the document.
This option can also be set with the OPTIONS keyword, e.g. "tags:nil".
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-tags t
"If nil, do not export tags, just remove them from headlines.
If this is the symbol `not-in-toc', tags will be removed from
table of contents entries, but still be shown in the headlines of
the document.
This option can also be set with the OPTIONS keyword,
e.g. \"tags:nil\"."
:group 'org-export-general
:type '(choice
(const :tag "Off" nil)
(const :tag "Not in TOC" not-in-toc)
(const :tag "On" t))
:safe (lambda (x) (memq x '(t nil not-in-toc))))