diff options
author | Rasmus <rasmus@gmx.us> | 2018-03-27 23:34:41 +0200 |
---|---|---|
committer | Rasmus <rasmus@gmx.us> | 2018-03-27 23:34:41 +0200 |
commit | 613c9a5c1f3237fbdc3a3db2341c7c59353d2aa2 (patch) | |
tree | 7651699ebeb2a2a2d8d1081707d091fbc424e8fb /lisp/org/ox-html.el | |
parent | 1b075a9e38ca6812417f95ed2272e61d875d9e86 (diff) | |
download | emacs-613c9a5c1f3237fbdc3a3db2341c7c59353d2aa2.tar.gz emacs-613c9a5c1f3237fbdc3a3db2341c7c59353d2aa2.tar.bz2 emacs-613c9a5c1f3237fbdc3a3db2341c7c59353d2aa2.zip |
Update Org to v9.1.9
Please note this is a bugfix release. See etc/ORG-NEWS for details.
Diffstat (limited to 'lisp/org/ox-html.el')
-rw-r--r-- | lisp/org/ox-html.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/org/ox-html.el b/lisp/org/ox-html.el index 83f6479bd4a..39f7d83e14a 100644 --- a/lisp/org/ox-html.el +++ b/lisp/org/ox-html.el @@ -465,7 +465,7 @@ customize `org-html-head-include-default-style'.") ;;;; Handle infojs (defvar org-html-infojs-opts-table - '((path PATH "http://orgmode.org/org-info.js") + '((path PATH "https://orgmode.org/org-info.js") (view VIEW "info") (toc TOC :with-toc) (ftoc FIXED_TOC "0") @@ -1324,7 +1324,7 @@ like that: \"%%\"." :type 'string) (defcustom org-html-creator-string - (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"http://orgmode.org\">Org</a> mode %s)" + (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"https://orgmode.org\">Org</a> mode %s)" emacs-version (if (fboundp 'org-version) (org-version) "unknown version")) "Information about the creator of the HTML document. @@ -1452,13 +1452,13 @@ done, timestamp, timestamp-kwd, tag, target. For example, a valid value would be: <style type=\"text/css\"> - <![CDATA[ - p { font-weight: normal; color: gray; } - h1 { color: black; } + /*<![CDATA[*/ + p { font-weight: normal; color: gray; } + h1 { color: black; } .title { text-align: center; } .todo, .timestamp-kwd { color: red; } .done { color: green; } - ]]> + /*]]>*/ </style> If you want to refer to an external style, use something like |