Variable: org-html-postamble
org-html-postamble is a customizable variable defined in
ox-html.el.gz.
Value
auto
Documentation
Non-nil means insert a postamble in HTML export.
When set to auto, check against the
org-export-with-author/email/creator/date variables to set the
content of the postamble. When t, insert a string as defined by the
formatting string in org-html-postamble-format. When set to a
string, use this formatting string instead (see
org-html-postamble-format for an example of such a formatting
string).
When set to a function, apply this function and insert the returned string. The function takes the property list of export options as its only argument.
Setting :html-postamble in publishing projects will take precedence over this variable.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Template :: Postamble
(defcustom org-html-postamble 'auto
"Non-nil means insert a postamble in HTML export.
When set to `auto', check against the
`org-export-with-author/email/creator/date' variables to set the
content of the postamble. When t, insert a string as defined by the
formatting string in `org-html-postamble-format'. When set to a
string, use this formatting string instead (see
`org-html-postamble-format' for an example of such a formatting
string).
When set to a function, apply this function and insert the
returned string. The function takes the property list of export
options as its only argument.
Setting :html-postamble in publishing projects will take
precedence over this variable."
:group 'org-export-html
:type '(choice (const :tag "No postamble" nil)
(const :tag "Auto postamble" auto)
(const :tag "Default formatting string" t)
(string :tag "Custom formatting string")
(function :tag "Function (must return a string)")))