|
@@ -209,6 +209,12 @@ e.g. \"author-info:nil\"."
|
|
|
:group 'org-export-general
|
|
|
:type 'boolean)
|
|
|
|
|
|
+(defcustom org-export-creator-info t
|
|
|
+ "Non-nil means, the postamle should contain a creator sentence.
|
|
|
+This sentence is \"HTML generated by org-mode XX in emacs XXX\"."
|
|
|
+ :group 'org-export-general
|
|
|
+ :type 'boolean)
|
|
|
+
|
|
|
(defcustom org-export-time-stamp-file t
|
|
|
"Non-nil means, insert a time stamp into the exported file.
|
|
|
The time stamp shows when the file was created.
|
|
@@ -744,6 +750,7 @@ or if they are only using it locally."
|
|
|
(:fixed-width . org-export-with-fixed-width)
|
|
|
(:timestamps . org-export-with-timestamps)
|
|
|
(:author-info . org-export-author-info)
|
|
|
+ (:creator-info . org-export-creator-info)
|
|
|
(:time-stamp-file . org-export-time-stamp-file)
|
|
|
(:tables . org-export-with-tables)
|
|
|
(:table-auto-headline . org-export-highlight-first-table-line)
|
|
@@ -3249,8 +3256,9 @@ lang=\"%s\" xml:lang=\"%s\">
|
|
|
(insert "<p class=\"date\"> "
|
|
|
(nth 2 lang-words) ": "
|
|
|
date "</p>\n"))
|
|
|
- (insert (format "<p>HTML generated by org-mode %s in emacs %s<\p>\n"
|
|
|
- org-version emacs-major-version))
|
|
|
+ (when org-export-creator-info
|
|
|
+ (insert (format "<p>HTML generated by org-mode %s in emacs %s<\p>\n"
|
|
|
+ org-version emacs-major-version)))
|
|
|
(insert "</div>"))
|
|
|
|
|
|
(if org-export-html-with-timestamp
|