Variable: org-html-head-extra

org-html-head-extra is a customizable variable defined in ox-html.el.gz.

Value

""

Documentation

More head information to add in the HTML output.

You can set this on a per-file basis using #+HTML_HEAD_EXTRA:, or for publication projects using the :html-head-extra property. Can be a string, or a function that accepts the INFO plist and returns a string.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-head-extra ""
  "More head information to add in the HTML output.

You can set this on a per-file basis using #+HTML_HEAD_EXTRA:, or
for publication projects using the :html-head-extra property.
Can be a string, or a function that accepts the INFO plist and returns
a string."
  :group 'org-export-html
  :package-version '(Org . "9.8")
  :type '(choice (string :tag "Literal text to insert")
                 (function :tag "Function evaluating to a string"))
  :safe #'stringp)