diff --git a/lisp/ox-html.el b/lisp/ox-html.el index a229b85ac..d09cc0ff5 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1052,9 +1052,9 @@ like that: \"%%\"." :type 'string) (defcustom org-html-creator-string - (format "Generated by Org mode %s in Emacs %s." - (if (fboundp 'org-version) (org-version) "(Unknown)") - emacs-version) + (format "Emacs %s (Org 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 diff --git a/lisp/ox.el b/lisp/ox.el index 86aa7dd43..22da0b337 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -385,9 +385,9 @@ string." (const :tag "No format string" nil))) (defcustom org-export-creator-string - (format "Generated by Org mode %s in Emacs %s." - (if (fboundp 'org-version) (org-version) "(Unknown)") - emacs-version) + (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