summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-04-07 20:12:56 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-04-07 20:21:58 +0200
commitd6d7bc55b87ea819404a92e74a05310e31600122 (patch)
tree842c25e3b1ffdb111215e17c62131607bcffe6fe
parentbf1f08cd41c43e351dbd56343d23a7379550c49e (diff)
downloadorg-mode-d6d7bc55b87ea819404a92e74a05310e31600122.tar.gz
ox/ox-html: Use a language agnostic and more neutral default creator
* lisp/ox-html.el (org-html-creator-string): Change default value. * lisp/ox.el (org-export-creator-string): Change default value.
-rw-r--r--lisp/ox-html.el6
-rw-r--r--lisp/ox.el6
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index a229b85..d09cc0f 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 <a href=\"http://orgmode.org\">Org</a> mode %s in <a href=\"http://www.gnu.org/software/emacs/\">Emacs</a> %s."
- (if (fboundp 'org-version) (org-version) "(Unknown)")
- emacs-version)
+ (format "<a href=\"http://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"http://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
diff --git a/lisp/ox.el b/lisp/ox.el
index 86aa7dd..22da0b3 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