summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-05-09 08:26:38 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-05-09 08:26:38 +0200
commitce59889673c08353b40f7d85760ba9c878822462 (patch)
treeb133ddf71e802bb24df5a75158297e71e419402c
parentd9d9226c925018c7f941d02e1bfd75d81eef8b5b (diff)
downloadorg-mode-ce59889673c08353b40f7d85760ba9c878822462.tar.gz
ox-html: Fix code typo
* lisp/ox-html.el (org-html--build-meta-info): Fix code typo.
-rw-r--r--lisp/ox-html.el27
1 files changed, 18 insertions, 9 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 0379567..30de11f 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -1511,7 +1511,8 @@ INFO is a plist used as a communication channel."
(keywords (plist-get info :keywords))
(charset (or (and org-html-coding-system
(fboundp 'coding-system-get)
- (coding-system-get org-html-coding-system 'mime-charset))
+ (coding-system-get org-html-coding-system
+ 'mime-charset))
"iso-8859-1")))
(concat
(format "<title>%s</title>\n" title)
@@ -1523,20 +1524,28 @@ INFO is a plist used as a communication channel."
(if (org-html-html5-p info)
(org-html-close-tag "meta" " charset=\"%s\"" info)
(org-html-close-tag
- "meta" " http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"" info))
+ "meta" " http-equiv=\"Content-Type\" content=\"text/html;charset=%s\""
+ info))
charset) "\n"
- (org-html-close-tag "meta" " name=\"generator\" content=\"Org-mode\"" info) "\n"
+ (org-html-close-tag "meta" " name=\"generator\" content=\"Org-mode\"" info)
+ "\n"
(and (org-string-nw-p author)
- (org-html-close-tag "meta" (format " name=\"author\" content=\"%s\""
- (funcall protect-string author)) info)
+ (org-html-close-tag "meta"
+ (format " name=\"author\" content=\"%s\""
+ (funcall protect-string author))
+ info)
"\n")
(and (org-string-nw-p description)
- (org-html-close-tag "meta" (format " name=\"description\" content=\"%s\"%s\n"
- (funcall protect-string description)) info)
+ (org-html-close-tag "meta"
+ (format " name=\"description\" content=\"%s\"\n"
+ (funcall protect-string description))
+ info)
"\n")
(and (org-string-nw-p keywords)
- (org-html-close-tag "meta" (format " name=\"keywords\" content=\"%s\""
- (funcall protect-string keywords)) info)
+ (org-html-close-tag "meta"
+ (format " name=\"keywords\" content=\"%s\""
+ (funcall protect-string keywords))
+ info)
"\n"))))
(defun org-html--build-head (info)