Variable: org-html-creator-string

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

Value

"<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> 29.4 (<a href=\"https://orgmode.org\">Org</a> mode 9.6.15)"

Documentation

Information about the creator of the HTML document.

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

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-creator-string
  (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"https://orgmode.org\">Org</a> mode %s)"
	  emacs-version
	  (if (fboundp 'org-version) (org-version) "unknown version"))
  "Information about the creator of the HTML document.
This option can also be set on with the CREATOR keyword."
  :group 'org-export-html
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(string :tag "Creator string"))