org-html.el: Bugfix: Convert special characters in some meta tag.
* org-html.el (org-export-as-html): Convert special characters in meta tag "author", "date", "keyword" and "description". Thanks to Pavel Panchekha for raising this issue.
This commit is contained in:
parent
ad09e1e036
commit
b2408c0096
|
@ -1157,8 +1157,8 @@ PUB-DIR is set, use this as the publishing directory."
|
|||
(t (get-buffer-create to-buffer)))
|
||||
(find-file-noselect filename)))
|
||||
(org-levels-open (make-vector org-level-max nil))
|
||||
(date (plist-get opt-plist :date))
|
||||
(author (plist-get opt-plist :author))
|
||||
(date (org-html-expand (plist-get opt-plist :date)))
|
||||
(author (org-html-expand (plist-get opt-plist :author)))
|
||||
(html-validation-link (or org-export-html-validation-link ""))
|
||||
(title (org-html-expand
|
||||
(or (and subtree-p (org-export-get-title-from-subtree))
|
||||
|
@ -1187,8 +1187,8 @@ PUB-DIR is set, use this as the publishing directory."
|
|||
(inverse nil)
|
||||
(email (plist-get opt-plist :email))
|
||||
(language (plist-get opt-plist :language))
|
||||
(keywords (plist-get opt-plist :keywords))
|
||||
(description (plist-get opt-plist :description))
|
||||
(keywords (org-html-expand (plist-get opt-plist :keywords)))
|
||||
(description (org-html-expand (plist-get opt-plist :description)))
|
||||
(num (plist-get opt-plist :section-numbers))
|
||||
(lang-words nil)
|
||||
(head-count 0) cnt
|
||||
|
|
Loading…
Reference in New Issue