Variable: org-export-creator-string

org-export-creator-string is a customizable variable defined in ox.el.gz.

Value

"Emacs 29.4 (Org mode 9.6.15)"

Documentation

Information about the creator of the document.

This option can also be set on with the CREATOR keyword.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-creator-string
  (format "Emacs %s (Org mode %s)"
	  emacs-version
	  (if (fboundp 'org-version) (org-version) "unknown version"))
  "Information about the creator of the document.
This option can also be set on with the CREATOR keyword."
  :group 'org-export-general
  :type '(string :tag "Creator string")
  :safe #'stringp)