Variable: org-hidden-keywords

org-hidden-keywords is a customizable variable defined in org.el.gz.

Value

nil

Documentation

List of symbols corresponding to keywords to be hidden in the Org buffer.

For example, a value (title) for this list makes the document's title appear in the buffer without the initial "#+TITLE:" part.

This variable was added, or its default value changed, in Org version
9.5.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-hidden-keywords nil
  "List of symbols corresponding to keywords to be hidden in the Org buffer.
For example, a value (title) for this list makes the document's title
appear in the buffer without the initial \"#+TITLE:\" part."
  :group 'org-appearance
  :package-version '(Org . "9.5")
  :type '(set (const :tag "#+AUTHOR" author)
	      (const :tag "#+DATE" date)
	      (const :tag "#+EMAIL" email)
	      (const :tag "#+SUBTITLE" subtitle)
	      (const :tag "#+TITLE" title)))