ox-html: Change footpara wrapper
[org-mode/org-tableheadings.git] / lisp / ox-html.el
blob17695f0368726efca075d96ff3af4b32b9a54015
1 ;;; ox-html.el --- HTML Back-End for Org Export Engine
3 ;; Copyright (C) 2011-2015 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Jambunathan K <kjambunathan at gmail dot com>
7 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This library implements a HTML back-end for Org generic exporter.
27 ;; See Org manual for more information.
29 ;;; Code:
31 ;;; Dependencies
33 (require 'ox)
34 (require 'ox-publish)
35 (require 'format-spec)
36 (eval-when-compile (require 'cl) (require 'table nil 'noerror))
39 ;;; Function Declarations
41 (declare-function org-id-find-id-file "org-id" (id))
42 (declare-function htmlize-region "ext:htmlize" (beg end))
43 (declare-function org-pop-to-buffer-same-window
44 "org-compat" (&optional buffer-or-name norecord label))
45 (declare-function mm-url-decode-entities "mm-url" ())
47 ;;; Define Back-End
49 (org-export-define-backend 'html
50 '((bold . org-html-bold)
51 (center-block . org-html-center-block)
52 (clock . org-html-clock)
53 (code . org-html-code)
54 (drawer . org-html-drawer)
55 (dynamic-block . org-html-dynamic-block)
56 (entity . org-html-entity)
57 (example-block . org-html-example-block)
58 (export-block . org-html-export-block)
59 (export-snippet . org-html-export-snippet)
60 (fixed-width . org-html-fixed-width)
61 (footnote-definition . org-html-footnote-definition)
62 (footnote-reference . org-html-footnote-reference)
63 (headline . org-html-headline)
64 (horizontal-rule . org-html-horizontal-rule)
65 (inline-src-block . org-html-inline-src-block)
66 (inlinetask . org-html-inlinetask)
67 (inner-template . org-html-inner-template)
68 (italic . org-html-italic)
69 (item . org-html-item)
70 (keyword . org-html-keyword)
71 (latex-environment . org-html-latex-environment)
72 (latex-fragment . org-html-latex-fragment)
73 (line-break . org-html-line-break)
74 (link . org-html-link)
75 (node-property . org-html-node-property)
76 (paragraph . org-html-paragraph)
77 (plain-list . org-html-plain-list)
78 (plain-text . org-html-plain-text)
79 (planning . org-html-planning)
80 (property-drawer . org-html-property-drawer)
81 (quote-block . org-html-quote-block)
82 (radio-target . org-html-radio-target)
83 (section . org-html-section)
84 (special-block . org-html-special-block)
85 (src-block . org-html-src-block)
86 (statistics-cookie . org-html-statistics-cookie)
87 (strike-through . org-html-strike-through)
88 (subscript . org-html-subscript)
89 (superscript . org-html-superscript)
90 (table . org-html-table)
91 (table-cell . org-html-table-cell)
92 (table-row . org-html-table-row)
93 (target . org-html-target)
94 (template . org-html-template)
95 (timestamp . org-html-timestamp)
96 (underline . org-html-underline)
97 (verbatim . org-html-verbatim)
98 (verse-block . org-html-verse-block))
99 :export-block "HTML"
100 :filters-alist '((:filter-options . org-html-infojs-install-script)
101 (:filter-final-output . org-html-final-function))
102 :menu-entry
103 '(?h "Export to HTML"
104 ((?H "As HTML buffer" org-html-export-as-html)
105 (?h "As HTML file" org-html-export-to-html)
106 (?o "As HTML file and open"
107 (lambda (a s v b)
108 (if a (org-html-export-to-html t s v b)
109 (org-open-file (org-html-export-to-html nil s v b)))))))
110 :options-alist
111 '((:html-doctype "HTML_DOCTYPE" nil org-html-doctype)
112 (:html-container "HTML_CONTAINER" nil org-html-container-element)
113 (:description "DESCRIPTION" nil nil newline)
114 (:keywords "KEYWORDS" nil nil space)
115 (:html-html5-fancy nil "html5-fancy" org-html-html5-fancy)
116 (:html-link-use-abs-url nil "html-link-use-abs-url" org-html-link-use-abs-url)
117 (:html-link-home "HTML_LINK_HOME" nil org-html-link-home)
118 (:html-link-up "HTML_LINK_UP" nil org-html-link-up)
119 (:html-mathjax "HTML_MATHJAX" nil "" space)
120 (:html-link-use-abs-url nil "html-link-use-abs-url" org-html-link-use-abs-url)
121 (:html-postamble nil "html-postamble" org-html-postamble)
122 (:html-preamble nil "html-preamble" org-html-preamble)
123 (:html-head "HTML_HEAD" nil org-html-head newline)
124 (:html-head-extra "HTML_HEAD_EXTRA" nil org-html-head-extra newline)
125 (:subtitle "SUBTITLE" nil nil parse)
126 (:html-head-include-default-style
127 nil "html-style" org-html-head-include-default-style)
128 (:html-head-include-scripts nil "html-scripts" org-html-head-include-scripts)
129 (:html-allow-name-attribute-in-anchors
130 nil nil org-html-allow-name-attribute-in-anchors)
131 (:html-divs nil nil org-html-divs)
132 (:html-checkbox-type nil nil org-html-checkbox-type)
133 (:html-extension nil nil org-html-extension)
134 (:html-footnote-format nil nil org-html-footnote-format)
135 (:html-footnote-separator nil nil org-html-footnote-separator)
136 (:html-footnotes-section nil nil org-html-footnotes-section)
137 (:html-format-drawer-function nil nil org-html-format-drawer-function)
138 (:html-format-headline-function nil nil org-html-format-headline-function)
139 (:html-format-inlinetask-function
140 nil nil org-html-format-inlinetask-function)
141 (:html-home/up-format nil nil org-html-home/up-format)
142 (:html-indent nil nil org-html-indent)
143 (:html-infojs-options nil nil org-html-infojs-options)
144 (:html-infojs-template nil nil org-html-infojs-template)
145 (:html-inline-image-rules nil nil org-html-inline-image-rules)
146 (:html-link-org-files-as-html nil nil org-html-link-org-files-as-html)
147 (:html-mathjax-options nil nil org-html-mathjax-options)
148 (:html-mathjax-template nil nil org-html-mathjax-template)
149 (:html-metadata-timestamp-format nil nil org-html-metadata-timestamp-format)
150 (:html-postamble-format nil nil org-html-postamble-format)
151 (:html-preamble-format nil nil org-html-preamble-format)
152 (:html-table-align-individual-fields
153 nil nil org-html-table-align-individual-fields)
154 (:html-table-caption-above nil nil org-html-table-caption-above)
155 (:html-table-data-tags nil nil org-html-table-data-tags)
156 (:html-table-header-tags nil nil org-html-table-header-tags)
157 (:html-table-use-header-tags-for-first-column
158 nil nil org-html-table-use-header-tags-for-first-column)
159 (:html-tag-class-prefix nil nil org-html-tag-class-prefix)
160 (:html-text-markup-alist nil nil org-html-text-markup-alist)
161 (:html-todo-kwd-class-prefix nil nil org-html-todo-kwd-class-prefix)
162 (:html-toplevel-hlevel nil nil org-html-toplevel-hlevel)
163 (:html-use-infojs nil nil org-html-use-infojs)
164 (:html-use-unicode-chars nil nil org-html-use-unicode-chars)
165 (:html-validation-link nil nil org-html-validation-link)
166 (:html-viewport nil nil org-html-viewport)
167 (:html-inline-images nil nil org-html-inline-images)
168 (:html-table-attributes nil nil org-html-table-default-attributes)
169 (:html-table-row-tags nil nil org-html-table-row-tags)
170 (:html-xml-declaration nil nil org-html-xml-declaration)
171 (:infojs-opt "INFOJS_OPT" nil nil)
172 ;; Redefine regular options.
173 (:creator "CREATOR" nil org-html-creator-string)
174 (:with-latex nil "tex" org-html-with-latex)
175 ;; Retrieve LaTeX header for fragments.
176 (:latex-header "LATEX_HEADER" nil nil newline)))
179 ;;; Internal Variables
181 (defvar org-html-format-table-no-css)
182 (defvar htmlize-buffer-places) ; from htmlize.el
184 (defvar org-html--pre/postamble-class "status"
185 "CSS class used for pre/postamble")
187 (defconst org-html-doctype-alist
188 '(("html4-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"
189 \"http://www.w3.org/TR/html4/strict.dtd\">")
190 ("html4-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
191 \"http://www.w3.org/TR/html4/loose.dtd\">")
192 ("html4-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\"
193 \"http://www.w3.org/TR/html4/frameset.dtd\">")
195 ("xhtml-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
196 \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">")
197 ("xhtml-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
198 \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">")
199 ("xhtml-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\"
200 \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">")
201 ("xhtml-11" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
202 \"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\">")
204 ("html5" . "<!DOCTYPE html>")
205 ("xhtml5" . "<!DOCTYPE html>"))
206 "An alist mapping (x)html flavors to specific doctypes.")
208 (defconst org-html-html5-elements
209 '("article" "aside" "audio" "canvas" "details" "figcaption"
210 "figure" "footer" "header" "menu" "meter" "nav" "output"
211 "progress" "section" "video")
212 "New elements in html5.
214 For blocks that should contain headlines, use the HTML_CONTAINER
215 property on the headline itself.")
217 (defconst org-html-special-string-regexps
218 '(("\\\\-" . "&#x00ad;") ; shy
219 ("---\\([^-]\\)" . "&#x2014;\\1") ; mdash
220 ("--\\([^-]\\)" . "&#x2013;\\1") ; ndash
221 ("\\.\\.\\." . "&#x2026;")) ; hellip
222 "Regular expressions for special string conversion.")
224 (defconst org-html-scripts
225 "<script type=\"text/javascript\">
227 @licstart The following is the entire license notice for the
228 JavaScript code in this tag.
230 Copyright (C) 2012-2013 Free Software Foundation, Inc.
232 The JavaScript code in this tag is free software: you can
233 redistribute it and/or modify it under the terms of the GNU
234 General Public License (GNU GPL) as published by the Free Software
235 Foundation, either version 3 of the License, or (at your option)
236 any later version. The code is distributed WITHOUT ANY WARRANTY;
237 without even the implied warranty of MERCHANTABILITY or FITNESS
238 FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
240 As additional permission under GNU GPL version 3 section 7, you
241 may distribute non-source (e.g., minimized or compacted) forms of
242 that code without the copy of the GNU GPL normally required by
243 section 4, provided you include this license notice and a URL
244 through which recipients can access the Corresponding Source.
247 @licend The above is the entire license notice
248 for the JavaScript code in this tag.
250 <!--/*--><![CDATA[/*><!--*/
251 function CodeHighlightOn(elem, id)
253 var target = document.getElementById(id);
254 if(null != target) {
255 elem.cacheClassElem = elem.className;
256 elem.cacheClassTarget = target.className;
257 target.className = \"code-highlighted\";
258 elem.className = \"code-highlighted\";
261 function CodeHighlightOff(elem, id)
263 var target = document.getElementById(id);
264 if(elem.cacheClassElem)
265 elem.className = elem.cacheClassElem;
266 if(elem.cacheClassTarget)
267 target.className = elem.cacheClassTarget;
269 /*]]>*///-->
270 </script>"
271 "Basic JavaScript that is needed by HTML files produced by Org mode.")
273 (defconst org-html-style-default
274 "<style type=\"text/css\">
275 <!--/*--><![CDATA[/*><!--*/
276 .title { text-align: center;
277 margin-bottom: .2em; }
278 .subtitle { text-align: center;
279 font-size: medium;
280 font-weight: bold;
281 margin-top:0; }
282 .todo { font-family: monospace; color: red; }
283 .done { font-family: monospace; color: green; }
284 .priority { font-family: monospace; color: orange; }
285 .tag { background-color: #eee; font-family: monospace;
286 padding: 2px; font-size: 80%; font-weight: normal; }
287 .timestamp { color: #bebebe; }
288 .timestamp-kwd { color: #5f9ea0; }
289 .org-right { margin-left: auto; margin-right: 0px; text-align: right; }
290 .org-left { margin-left: 0px; margin-right: auto; text-align: left; }
291 .org-center { margin-left: auto; margin-right: auto; text-align: center; }
292 .underline { text-decoration: underline; }
293 #postamble p, #preamble p { font-size: 90%; margin: .2em; }
294 p.verse { margin-left: 3%; }
295 pre {
296 border: 1px solid #ccc;
297 box-shadow: 3px 3px 3px #eee;
298 padding: 8pt;
299 font-family: monospace;
300 overflow: auto;
301 margin: 1.2em;
303 pre.src {
304 position: relative;
305 overflow: visible;
306 padding-top: 1.2em;
308 pre.src:before {
309 display: none;
310 position: absolute;
311 background-color: white;
312 top: -10px;
313 right: 10px;
314 padding: 3px;
315 border: 1px solid black;
317 pre.src:hover:before { display: inline;}
318 pre.src-sh:before { content: 'sh'; }
319 pre.src-bash:before { content: 'sh'; }
320 pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
321 pre.src-R:before { content: 'R'; }
322 pre.src-perl:before { content: 'Perl'; }
323 pre.src-java:before { content: 'Java'; }
324 pre.src-sql:before { content: 'SQL'; }
326 table { border-collapse:collapse; }
327 caption.t-above { caption-side: top; }
328 caption.t-bottom { caption-side: bottom; }
329 td, th { vertical-align:top; }
330 th.org-right { text-align: center; }
331 th.org-left { text-align: center; }
332 th.org-center { text-align: center; }
333 td.org-right { text-align: right; }
334 td.org-left { text-align: left; }
335 td.org-center { text-align: center; }
336 dt { font-weight: bold; }
337 .footpara { display: inline; }
338 .footdef { margin-bottom: 1em; }
339 .figure { padding: 1em; }
340 .figure p { text-align: center; }
341 .inlinetask {
342 padding: 10px;
343 border: 2px solid gray;
344 margin: 10px;
345 background: #ffffcc;
347 #org-div-home-and-up
348 { text-align: right; font-size: 70%; white-space: nowrap; }
349 textarea { overflow-x: auto; }
350 .linenr { font-size: smaller }
351 .code-highlighted { background-color: #ffff00; }
352 .org-info-js_info-navigation { border-style: none; }
353 #org-info-js_console-label
354 { font-size: 10px; font-weight: bold; white-space: nowrap; }
355 .org-info-js_search-highlight
356 { background-color: #ffff00; color: #000000; font-weight: bold; }
357 /*]]>*/-->
358 </style>"
359 "The default style specification for exported HTML files.
360 You can use `org-html-head' and `org-html-head-extra' to add to
361 this style. If you don't want to include this default style,
362 customize `org-html-head-include-default-style'.")
365 ;;; User Configuration Variables
367 (defgroup org-export-html nil
368 "Options for exporting Org mode files to HTML."
369 :tag "Org Export HTML"
370 :group 'org-export)
372 ;;;; Handle infojs
374 (defvar org-html-infojs-opts-table
375 '((path PATH "http://orgmode.org/org-info.js")
376 (view VIEW "info")
377 (toc TOC :with-toc)
378 (ftoc FIXED_TOC "0")
379 (tdepth TOC_DEPTH "max")
380 (sdepth SECTION_DEPTH "max")
381 (mouse MOUSE_HINT "underline")
382 (buttons VIEW_BUTTONS "0")
383 (ltoc LOCAL_TOC "1")
384 (up LINK_UP :html-link-up)
385 (home LINK_HOME :html-link-home))
386 "JavaScript options, long form for script, default values.")
388 (defcustom org-html-use-infojs 'when-configured
389 "Non-nil when Sebastian Rose's Java Script org-info.js should be active.
390 This option can be nil or t to never or always use the script.
391 It can also be the symbol `when-configured', meaning that the
392 script will be linked into the export file if and only if there
393 is a \"#+INFOJS_OPT:\" line in the buffer. See also the variable
394 `org-html-infojs-options'."
395 :group 'org-export-html
396 :version "24.4"
397 :package-version '(Org . "8.0")
398 :type '(choice
399 (const :tag "Never" nil)
400 (const :tag "When configured in buffer" when-configured)
401 (const :tag "Always" t)))
403 (defcustom org-html-infojs-options
404 (mapcar (lambda (x) (cons (car x) (nth 2 x))) org-html-infojs-opts-table)
405 "Options settings for the INFOJS JavaScript.
406 Each of the options must have an entry in `org-html-infojs-opts-table'.
407 The value can either be a string that will be passed to the script, or
408 a property. This property is then assumed to be a property that is defined
409 by the Export/Publishing setup of Org.
410 The `sdepth' and `tdepth' parameters can also be set to \"max\", which
411 means to use the maximum value consistent with other options."
412 :group 'org-export-html
413 :version "24.4"
414 :package-version '(Org . "8.0")
415 :type
416 `(set :greedy t :inline t
417 ,@(mapcar
418 (lambda (x)
419 (list 'cons (list 'const (car x))
420 '(choice
421 (symbol :tag "Publishing/Export property")
422 (string :tag "Value"))))
423 org-html-infojs-opts-table)))
425 (defcustom org-html-infojs-template
426 "<script type=\"text/javascript\" src=\"%SCRIPT_PATH\">
429 * @source: %SCRIPT_PATH
431 * @licstart The following is the entire license notice for the
432 * JavaScript code in %SCRIPT_PATH.
434 * Copyright (C) 2012-2013 Free Software Foundation, Inc.
437 * The JavaScript code in this tag is free software: you can
438 * redistribute it and/or modify it under the terms of the GNU
439 * General Public License (GNU GPL) as published by the Free Software
440 * Foundation, either version 3 of the License, or (at your option)
441 * any later version. The code is distributed WITHOUT ANY WARRANTY;
442 * without even the implied warranty of MERCHANTABILITY or FITNESS
443 * FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
445 * As additional permission under GNU GPL version 3 section 7, you
446 * may distribute non-source (e.g., minimized or compacted) forms of
447 * that code without the copy of the GNU GPL normally required by
448 * section 4, provided you include this license notice and a URL
449 * through which recipients can access the Corresponding Source.
451 * @licend The above is the entire license notice
452 * for the JavaScript code in %SCRIPT_PATH.
455 </script>
457 <script type=\"text/javascript\">
460 @licstart The following is the entire license notice for the
461 JavaScript code in this tag.
463 Copyright (C) 2012-2013 Free Software Foundation, Inc.
465 The JavaScript code in this tag is free software: you can
466 redistribute it and/or modify it under the terms of the GNU
467 General Public License (GNU GPL) as published by the Free Software
468 Foundation, either version 3 of the License, or (at your option)
469 any later version. The code is distributed WITHOUT ANY WARRANTY;
470 without even the implied warranty of MERCHANTABILITY or FITNESS
471 FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
473 As additional permission under GNU GPL version 3 section 7, you
474 may distribute non-source (e.g., minimized or compacted) forms of
475 that code without the copy of the GNU GPL normally required by
476 section 4, provided you include this license notice and a URL
477 through which recipients can access the Corresponding Source.
480 @licend The above is the entire license notice
481 for the JavaScript code in this tag.
484 <!--/*--><![CDATA[/*><!--*/
485 %MANAGER_OPTIONS
486 org_html_manager.setup(); // activate after the parameters are set
487 /*]]>*///-->
488 </script>"
489 "The template for the export style additions when org-info.js is used.
490 Option settings will replace the %MANAGER-OPTIONS cookie."
491 :group 'org-export-html
492 :version "24.4"
493 :package-version '(Org . "8.0")
494 :type 'string)
496 (defun org-html-infojs-install-script (exp-plist backend)
497 "Install script in export options when appropriate.
498 EXP-PLIST is a plist containing export options. BACKEND is the
499 export back-end currently used."
500 (unless (or (memq 'body-only (plist-get exp-plist :export-options))
501 (not (plist-get exp-plist :html-use-infojs))
502 (and (eq (plist-get exp-plist :html-use-infojs) 'when-configured)
503 (let ((opt (plist-get exp-plist :infojs-opt)))
504 (or (not opt)
505 (string= "" opt)
506 (string-match "\\<view:nil\\>" opt)))))
507 (let* ((template (plist-get exp-plist :html-infojs-template))
508 (ptoc (plist-get exp-plist :with-toc))
509 (hlevels (plist-get exp-plist :headline-levels))
510 (sdepth hlevels)
511 (tdepth (if (integerp ptoc) (min ptoc hlevels) hlevels))
512 (options (plist-get exp-plist :infojs-opt))
513 (infojs-opt (plist-get exp-plist :html-infojs-options))
514 (table org-html-infojs-opts-table)
515 style)
516 (dolist (entry table)
517 (let* ((opt (car entry))
518 (var (nth 1 entry))
519 ;; Compute default values for script option OPT from
520 ;; `org-html-infojs-options' variable.
521 (default
522 (let ((default (cdr (assq opt infojs-opt))))
523 (if (and (symbolp default) (not (memq default '(t nil))))
524 (plist-get exp-plist default)
525 default)))
526 ;; Value set through INFOJS_OPT keyword has precedence
527 ;; over the default one.
528 (val (if (and options
529 (string-match (format "\\<%s:\\(\\S-+\\)" opt)
530 options))
531 (match-string 1 options)
532 default)))
533 (case opt
534 (path (setq template
535 (replace-regexp-in-string
536 "%SCRIPT_PATH" val template t t)))
537 (sdepth (when (integerp (read val))
538 (setq sdepth (min (read val) sdepth))))
539 (tdepth (when (integerp (read val))
540 (setq tdepth (min (read val) tdepth))))
541 (otherwise (setq val
542 (cond
543 ((or (eq val t) (equal val "t")) "1")
544 ((or (eq val nil) (equal val "nil")) "0")
545 ((stringp val) val)
546 (t (format "%s" val))))
547 (push (cons var val) style)))))
548 ;; Now we set the depth of the *generated* TOC to SDEPTH,
549 ;; because the toc will actually determine the splitting. How
550 ;; much of the toc will actually be displayed is governed by the
551 ;; TDEPTH option.
552 (setq exp-plist (plist-put exp-plist :with-toc sdepth))
553 ;; The table of contents should not show more sections than we
554 ;; generate.
555 (setq tdepth (min tdepth sdepth))
556 (push (cons "TOC_DEPTH" tdepth) style)
557 ;; Build style string.
558 (setq style (mapconcat
559 (lambda (x)
560 (format "org_html_manager.set(\"%s\", \"%s\");"
561 (car x) (cdr x)))
562 style "\n"))
563 (when (and style (> (length style) 0))
564 (and (string-match "%MANAGER_OPTIONS" template)
565 (setq style (replace-match style t t template))
566 (setq exp-plist
567 (plist-put
568 exp-plist :html-head-extra
569 (concat (or (plist-get exp-plist :html-head-extra) "")
570 "\n"
571 style)))))
572 ;; This script absolutely needs the table of contents, so we
573 ;; change that setting.
574 (unless (plist-get exp-plist :with-toc)
575 (setq exp-plist (plist-put exp-plist :with-toc t)))
576 ;; Return the modified property list.
577 exp-plist)))
579 ;;;; Bold, etc.
581 (defcustom org-html-text-markup-alist
582 '((bold . "<b>%s</b>")
583 (code . "<code>%s</code>")
584 (italic . "<i>%s</i>")
585 (strike-through . "<del>%s</del>")
586 (underline . "<span class=\"underline\">%s</span>")
587 (verbatim . "<code>%s</code>"))
588 "Alist of HTML expressions to convert text markup.
590 The key must be a symbol among `bold', `code', `italic',
591 `strike-through', `underline' and `verbatim'. The value is
592 a formatting string to wrap fontified text with.
594 If no association can be found for a given markup, text will be
595 returned as-is."
596 :group 'org-export-html
597 :version "24.4"
598 :package-version '(Org . "8.0")
599 :type '(alist :key-type (symbol :tag "Markup type")
600 :value-type (string :tag "Format string"))
601 :options '(bold code italic strike-through underline verbatim))
603 (defcustom org-html-indent nil
604 "Non-nil means to indent the generated HTML.
605 Warning: non-nil may break indentation of source code blocks."
606 :group 'org-export-html
607 :version "24.4"
608 :package-version '(Org . "8.0")
609 :type 'boolean)
611 (defcustom org-html-use-unicode-chars nil
612 "Non-nil means to use unicode characters instead of HTML entities."
613 :group 'org-export-html
614 :version "24.4"
615 :package-version '(Org . "8.0")
616 :type 'boolean)
618 ;;;; Drawers
620 (defcustom org-html-format-drawer-function (lambda (name contents) contents)
621 "Function called to format a drawer in HTML code.
623 The function must accept two parameters:
624 NAME the drawer name, like \"LOGBOOK\"
625 CONTENTS the contents of the drawer.
627 The function should return the string to be exported.
629 For example, the variable could be set to the following function
630 in order to mimic default behaviour:
632 The default value simply returns the value of CONTENTS."
633 :group 'org-export-html
634 :version "24.4"
635 :package-version '(Org . "8.0")
636 :type 'function)
638 ;;;; Footnotes
640 (defcustom org-html-footnotes-section "<div id=\"footnotes\">
641 <h2 class=\"footnotes\">%s: </h2>
642 <div id=\"text-footnotes\">
644 </div>
645 </div>"
646 "Format for the footnotes section.
647 Should contain a two instances of %s. The first will be replaced with the
648 language-specific word for \"Footnotes\", the second one will be replaced
649 by the footnotes themselves."
650 :group 'org-export-html
651 :type 'string)
653 (defcustom org-html-footnote-format "<sup>%s</sup>"
654 "The format for the footnote reference.
655 %s will be replaced by the footnote reference itself."
656 :group 'org-export-html
657 :type 'string)
659 (defcustom org-html-footnote-separator "<sup>, </sup>"
660 "Text used to separate footnotes."
661 :group 'org-export-html
662 :type 'string)
664 ;;;; Headline
666 (defcustom org-html-toplevel-hlevel 2
667 "The <H> level for level 1 headings in HTML export.
668 This is also important for the classes that will be wrapped around headlines
669 and outline structure. If this variable is 1, the top-level headlines will
670 be <h1>, and the corresponding classes will be outline-1, section-number-1,
671 and outline-text-1. If this is 2, all of these will get a 2 instead.
672 The default for this variable is 2, because we use <h1> for formatting the
673 document title."
674 :group 'org-export-html
675 :type 'integer)
677 (defcustom org-html-format-headline-function
678 'org-html-format-headline-default-function
679 "Function to format headline text.
681 This function will be called with six arguments:
682 TODO the todo keyword (string or nil).
683 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
684 PRIORITY the priority of the headline (integer or nil)
685 TEXT the main headline text (string).
686 TAGS the tags (string or nil).
687 INFO the export options (plist).
689 The function result will be used in the section format string."
690 :group 'org-export-html
691 :version "25.1"
692 :package-version '(Org . "8.3")
693 :type 'function)
695 ;;;; HTML-specific
697 (defcustom org-html-allow-name-attribute-in-anchors nil
698 "When nil, do not set \"name\" attribute in anchors.
699 By default, when appropriate, anchors are formatted with \"id\"
700 but without \"name\" attribute."
701 :group 'org-export-html
702 :version "24.4"
703 :package-version '(Org . "8.0")
704 :type 'boolean)
706 ;;;; Inlinetasks
708 (defcustom org-html-format-inlinetask-function
709 'org-html-format-inlinetask-default-function
710 "Function called to format an inlinetask in HTML code.
712 The function must accept seven parameters:
713 TODO the todo keyword, as a string
714 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
715 PRIORITY the inlinetask priority, as a string
716 NAME the inlinetask name, as a string.
717 TAGS the inlinetask tags, as a list of strings.
718 CONTENTS the contents of the inlinetask, as a string.
719 INFO the export options, as a plist
721 The function should return the string to be exported."
722 :group 'org-export-html
723 :version "25.1"
724 :package-version '(Org . "8.3")
725 :type 'function)
727 ;;;; LaTeX
729 (defcustom org-html-with-latex org-export-with-latex
730 "Non-nil means process LaTeX math snippets.
732 When set, the exporter will process LaTeX environments and
733 fragments.
735 This option can also be set with the +OPTIONS line,
736 e.g. \"tex:mathjax\". Allowed values are:
738 nil Ignore math snippets.
739 `verbatim' Keep everything in verbatim
740 `dvipng' Process the LaTeX fragments to images. This will also
741 include processing of non-math environments.
742 `imagemagick' Convert the LaTeX fragments to pdf files and use
743 imagemagick to convert pdf files to png files.
744 `mathjax' Do MathJax preprocessing and arrange for MathJax.js to
745 be loaded.
746 t Synonym for `mathjax'."
747 :group 'org-export-html
748 :version "24.4"
749 :package-version '(Org . "8.0")
750 :type '(choice
751 (const :tag "Do not process math in any way" nil)
752 (const :tag "Use dvipng to make images" dvipng)
753 (const :tag "Use imagemagick to make images" imagemagick)
754 (const :tag "Use MathJax to display math" mathjax)
755 (const :tag "Leave math verbatim" verbatim)))
757 ;;;; Links :: Generic
759 (defcustom org-html-link-org-files-as-html t
760 "Non-nil means make file links to `file.org' point to `file.html'.
761 When `org-mode' is exporting an `org-mode' file to HTML, links to
762 non-html files are directly put into a href tag in HTML.
763 However, links to other Org-mode files (recognized by the
764 extension `.org.) should become links to the corresponding html
765 file, assuming that the linked `org-mode' file will also be
766 converted to HTML.
767 When nil, the links still point to the plain `.org' file."
768 :group 'org-export-html
769 :type 'boolean)
771 ;;;; Links :: Inline images
773 (defcustom org-html-inline-images t
774 "Non-nil means inline images into exported HTML pages.
775 This is done using an <img> tag. When nil, an anchor with href is used to
776 link to the image."
777 :group 'org-export-html
778 :version "24.4"
779 :package-version '(Org . "8.1")
780 :type 'boolean)
782 (defcustom org-html-inline-image-rules
783 '(("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")
784 ("http" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")
785 ("https" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'"))
786 "Rules characterizing image files that can be inlined into HTML.
787 A rule consists in an association whose key is the type of link
788 to consider, and value is a regexp that will be matched against
789 link's path."
790 :group 'org-export-html
791 :version "24.4"
792 :package-version '(Org . "8.0")
793 :type '(alist :key-type (string :tag "Type")
794 :value-type (regexp :tag "Path")))
796 ;;;; Plain Text
798 (defvar org-html-protect-char-alist
799 '(("&" . "&amp;")
800 ("<" . "&lt;")
801 (">" . "&gt;"))
802 "Alist of characters to be converted by `org-html-encode-plain-text'.")
804 ;;;; Src Block
806 (defcustom org-html-htmlize-output-type 'inline-css
807 "Output type to be used by htmlize when formatting code snippets.
808 Choices are `css' to export the CSS selectors only,`inline-css'
809 to export the CSS attribute values inline in the HTML or `nil' to
810 export plain text. We use as default `inline-css', in order to
811 make the resulting HTML self-containing.
813 However, this will fail when using Emacs in batch mode for export, because
814 then no rich font definitions are in place. It will also not be good if
815 people with different Emacs setup contribute HTML files to a website,
816 because the fonts will represent the individual setups. In these cases,
817 it is much better to let Org/Htmlize assign classes only, and to use
818 a style file to define the look of these classes.
819 To get a start for your css file, start Emacs session and make sure that
820 all the faces you are interested in are defined, for example by loading files
821 in all modes you want. Then, use the command
822 \\[org-html-htmlize-generate-css] to extract class definitions."
823 :group 'org-export-html
824 :type '(choice (const css) (const inline-css) (const nil)))
826 (defcustom org-html-htmlize-font-prefix "org-"
827 "The prefix for CSS class names for htmlize font specifications."
828 :group 'org-export-html
829 :type 'string)
831 ;;;; Table
833 (defcustom org-html-table-default-attributes
834 '(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides")
835 "Default attributes and values which will be used in table tags.
836 This is a plist where attributes are symbols, starting with
837 colons, and values are strings.
839 When exporting to HTML5, these values will be disregarded."
840 :group 'org-export-html
841 :version "24.4"
842 :package-version '(Org . "8.0")
843 :type '(plist :key-type (symbol :tag "Property")
844 :value-type (string :tag "Value")))
846 (defcustom org-html-table-header-tags '("<th scope=\"%s\"%s>" . "</th>")
847 "The opening and ending tags for table header fields.
848 This is customizable so that alignment options can be specified.
849 The first %s will be filled with the scope of the field, either row or col.
850 The second %s will be replaced by a style entry to align the field.
851 See also the variable `org-html-table-use-header-tags-for-first-column'.
852 See also the variable `org-html-table-align-individual-fields'."
853 :group 'org-export-html
854 :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
856 (defcustom org-html-table-data-tags '("<td%s>" . "</td>")
857 "The opening and ending tags for table data fields.
858 This is customizable so that alignment options can be specified.
859 The first %s will be filled with the scope of the field, either row or col.
860 The second %s will be replaced by a style entry to align the field.
861 See also the variable `org-html-table-align-individual-fields'."
862 :group 'org-export-html
863 :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
865 (defcustom org-html-table-row-tags '("<tr>" . "</tr>")
866 "The opening and ending tags for table rows.
867 This is customizable so that alignment options can be specified.
868 Instead of strings, these can be Lisp forms that will be
869 evaluated for each row in order to construct the table row tags.
871 During evaluation, these variables will be dynamically bound so that
872 you can reuse them:
874 `row-number': row number (0 is the first row)
875 `rowgroup-number': group number of current row
876 `start-rowgroup-p': non-nil means the row starts a group
877 `end-rowgroup-p': non-nil means the row ends a group
878 `top-row-p': non-nil means this is the top row
879 `bottom-row-p': non-nil means this is the bottom row
881 For example:
883 \(setq org-html-table-row-tags
884 (cons '(cond (top-row-p \"<tr class=\\\"tr-top\\\">\")
885 (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\")
886 (t (if (= (mod row-number 2) 1)
887 \"<tr class=\\\"tr-odd\\\">\"
888 \"<tr class=\\\"tr-even\\\">\")))
889 \"</tr>\"))
891 will use the \"tr-top\" and \"tr-bottom\" classes for the top row
892 and the bottom row, and otherwise alternate between \"tr-odd\" and
893 \"tr-even\" for odd and even rows."
894 :group 'org-export-html
895 :type '(cons
896 (choice :tag "Opening tag"
897 (string :tag "Specify")
898 (sexp))
899 (choice :tag "Closing tag"
900 (string :tag "Specify")
901 (sexp))))
903 (defcustom org-html-table-align-individual-fields t
904 "Non-nil means attach style attributes for alignment to each table field.
905 When nil, alignment will only be specified in the column tags, but this
906 is ignored by some browsers (like Firefox, Safari). Opera does it right
907 though."
908 :group 'org-export-html
909 :type 'boolean)
911 (defcustom org-html-table-use-header-tags-for-first-column nil
912 "Non-nil means format column one in tables with header tags.
913 When nil, also column one will use data tags."
914 :group 'org-export-html
915 :type 'boolean)
917 (defcustom org-html-table-caption-above t
918 "When non-nil, place caption string at the beginning of the table.
919 Otherwise, place it near the end."
920 :group 'org-export-html
921 :type 'boolean)
923 ;;;; Tags
925 (defcustom org-html-tag-class-prefix ""
926 "Prefix to class names for TODO keywords.
927 Each tag gets a class given by the tag itself, with this prefix.
928 The default prefix is empty because it is nice to just use the keyword
929 as a class name. But if you get into conflicts with other, existing
930 CSS classes, then this prefix can be very useful."
931 :group 'org-export-html
932 :type 'string)
934 ;;;; Template :: Generic
936 (defcustom org-html-extension "html"
937 "The extension for exported HTML files."
938 :group 'org-export-html
939 :type 'string)
941 (defcustom org-html-xml-declaration
942 '(("html" . "<?xml version=\"1.0\" encoding=\"%s\"?>")
943 ("php" . "<?php echo \"<?xml version=\\\"1.0\\\" encoding=\\\"%s\\\" ?>\"; ?>"))
944 "The extension for exported HTML files.
945 %s will be replaced with the charset of the exported file.
946 This may be a string, or an alist with export extensions
947 and corresponding declarations.
949 This declaration only applies when exporting to XHTML."
950 :group 'org-export-html
951 :type '(choice
952 (string :tag "Single declaration")
953 (repeat :tag "Dependent on extension"
954 (cons (string :tag "Extension")
955 (string :tag "Declaration")))))
957 (defcustom org-html-coding-system 'utf-8
958 "Coding system for HTML export.
959 Use utf-8 as the default value."
960 :group 'org-export-html
961 :version "24.4"
962 :package-version '(Org . "8.0")
963 :type 'coding-system)
965 (defcustom org-html-doctype "xhtml-strict"
966 "Document type definition to use for exported HTML files.
967 Can be set with the in-buffer HTML_DOCTYPE property or for
968 publishing, with :html-doctype."
969 :group 'org-export-html
970 :version "24.4"
971 :package-version '(Org . "8.0")
972 :type (append
973 '(choice)
974 (mapcar (lambda (x) `(const ,(car x))) org-html-doctype-alist)
975 '((string :tag "Custom doctype" ))))
977 (defcustom org-html-html5-fancy nil
978 "Non-nil means using new HTML5 elements.
979 This variable is ignored for anything other than HTML5 export.
981 For compatibility with Internet Explorer, it's probably a good
982 idea to download some form of the html5shiv (for instance
983 https://code.google.com/p/html5shiv/) and add it to your
984 HTML_HEAD_EXTRA, so that your pages don't break for users of IE
985 versions 8 and below."
986 :group 'org-export-html
987 :version "24.4"
988 :package-version '(Org . "8.0")
989 :type 'boolean)
991 (defcustom org-html-container-element "div"
992 "HTML element to use for wrapping top level sections.
993 Can be set with the in-buffer HTML_CONTAINER property or for
994 publishing, with :html-container.
996 Note that changing the default will prevent you from using
997 org-info.js for your website."
998 :group 'org-export-html
999 :version "24.4"
1000 :package-version '(Org . "8.0")
1001 :type 'string)
1003 (defcustom org-html-divs
1004 '((preamble "div" "preamble")
1005 (content "div" "content")
1006 (postamble "div" "postamble"))
1007 "Alist of the three section elements for HTML export.
1008 The car of each entry is one of 'preamble, 'content or 'postamble.
1009 The cdrs of each entry are the ELEMENT_TYPE and ID for each
1010 section of the exported document.
1012 Note that changing the default will prevent you from using
1013 org-info.js for your website."
1014 :group 'org-export-html
1015 :version "24.4"
1016 :package-version '(Org . "8.0")
1017 :type '(list :greedy t
1018 (list :tag "Preamble"
1019 (const :format "" preamble)
1020 (string :tag "element") (string :tag " id"))
1021 (list :tag "Content"
1022 (const :format "" content)
1023 (string :tag "element") (string :tag " id"))
1024 (list :tag "Postamble" (const :format "" postamble)
1025 (string :tag " id") (string :tag "element"))))
1027 (defconst org-html-checkbox-types
1028 '((unicode .
1029 ((on . "&#x2611;") (off . "&#x2610;") (trans . "&#x2610;")))
1030 (ascii .
1031 ((on . "<code>[X]</code>")
1032 (off . "<code>[&#xa0;]</code>")
1033 (trans . "<code>[-]</code>")))
1034 (html .
1035 ((on . "<input type='checkbox' checked='checked' />")
1036 (off . "<input type='checkbox' />")
1037 (trans . "<input type='checkbox' />"))))
1038 "Alist of checkbox types.
1039 The cdr of each entry is an alist list three checkbox types for
1040 HTML export: `on', `off' and `trans'.
1042 The choices are:
1043 `unicode' Unicode characters (HTML entities)
1044 `ascii' ASCII characters
1045 `html' HTML checkboxes
1047 Note that only the ascii characters implement tri-state
1048 checkboxes. The other two use the `off' checkbox for `trans'.")
1050 (defcustom org-html-checkbox-type 'ascii
1051 "The type of checkboxes to use for HTML export.
1052 See `org-html-checkbox-types' for for the values used for each
1053 option."
1054 :group 'org-export-html
1055 :version "24.4"
1056 :package-version '(Org . "8.0")
1057 :type '(choice
1058 (const :tag "ASCII characters" ascii)
1059 (const :tag "Unicode characters" unicode)
1060 (const :tag "HTML checkboxes" html)))
1062 (defcustom org-html-metadata-timestamp-format "%Y-%m-%d %a %H:%M"
1063 "Format used for timestamps in preamble, postamble and metadata.
1064 See `format-time-string' for more information on its components."
1065 :group 'org-export-html
1066 :version "24.4"
1067 :package-version '(Org . "8.0")
1068 :type 'string)
1070 ;;;; Template :: Mathjax
1072 (defcustom org-html-mathjax-options
1073 '((path "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" )
1074 (scale "100")
1075 (align "center")
1076 (font "TeX")
1077 (linebreaks "false")
1078 (autonumber "AMS")
1079 (indent "0em")
1080 (multlinewidth "85%")
1081 (tagindent ".8em")
1082 (tagside "right"))
1083 "Options for MathJax setup.
1085 Alist of the following elements. All values are strings.
1087 path The path to MathJax.
1088 scale Scaling with HTML-CSS, MathML and SVG output engines.
1089 align How to align display math: left, center, or right.
1090 font The font to use with HTML-CSS and SVG output. As of MathJax 2.5
1091 the following values are understood: \"TeX\", \"STIX-Web\",
1092 \"Asana-Math\", \"Neo-Euler\", \"Gyre-Pagella\",
1093 \"Gyre-Termes\", and \"Latin-Modern\".
1094 linebreaks Let MathJax perform automatic linebreaks. Valid values
1095 are \"true\" and \"false\".
1096 indent If align is not center, how far from the left/right side?
1097 Valid values are \"left\" and \"right\"
1098 multlinewidth The width of the multline environment.
1099 autonumber How to number equations. Valid values are \"None\",
1100 \"all\" and \"AMS Math\".
1101 tagindent The amount tags are indented.
1102 tagside Which side to show tags/labels on. Valid values are
1103 \"left\" and \"right\"
1105 You can also customize this for each buffer, using something like
1107 #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
1109 For further information about MathJax options, see the MathJax documentation:
1111 http://docs.mathjax.org/
1113 Please note that by using the default CDN one must agree with
1114 MathJax CDN Terms of Service.
1116 http://www.mathjax.org/mathjax-cdn-terms-of-service.html"
1117 :group 'org-export-html
1118 :package-version '(Org . "8.3")
1119 :type '(list :greedy t
1120 (list :tag "path (the path from where to load MathJax.js)"
1121 (const :format " " path) (string))
1122 (list :tag "scale (scaling for the displayed math)"
1123 (const :format " " scale) (string))
1124 (list :tag "align (alignment of displayed equations)"
1125 (const :format " " align) (string))
1126 (list :tag "font (used to display math)"
1127 (const :format " " font)
1128 (choice (const "TeX")
1129 (const "STIX-Web")
1130 (const "Asana-Math")
1131 (const "Neo-Euler")
1132 (const "Gyre-Pagella")
1133 (const "Gyre-Termes")
1134 (const "Latin-Modern")))
1135 (list :tag "linebreaks (automatic line-breaking)"
1136 (const :format " " linebreaks)
1137 (choice (const "true")
1138 (const "false")))
1139 (list :tag "autonumber (when should equations be numbered)"
1140 (const :format " " autonumber)
1141 (choice (const "AMS")
1142 (const "None")
1143 (const "All")))
1144 (list :tag "indent (indentation with left or right alignment)"
1145 (const :format " " indent) (string))
1146 (list :tag "multlinewidth (width to use for the multline environment)"
1147 (const :format " " multlinewidth) (string))
1148 (list :tag "tagindent (the indentation of tags from left or right)"
1149 (const :format " " tagindent) (string))
1150 (list :tag "tagside (location of tags)"
1151 (const :format " " tagside)
1152 (choice (const "left")
1153 (const "right")))))
1155 (defcustom org-html-mathjax-template
1156 "<script type=\"text/x-mathjax-config\">
1157 MathJax.Hub.Config({
1158 displayAlign: \"%ALIGN\",
1159 displayIndent: \"%INDENT\",
1161 \"HTML-CSS\": { scale: %SCALE,
1162 linebreaks: { automatic: \"%LINEBREAKS\" },
1163 webFont: \"%FONT\"
1165 SVG: {scale: %SCALE,
1166 linebreaks: { automatic: \"%LINEBREAKS\" },
1167 font: \"%FONT\"},
1168 NativeMML: {scale: %SCALE},
1169 TeX: { equationNumbers: {autoNumber: \"%AUTONUMBER\"},
1170 MultLineWidth: \"%MULTLINEWIDTH\",
1171 TagSide: \"%TAGSIDE\",
1172 TagIndent: \"%TAGINDENT\"
1175 </script>
1176 <script type=\"text/javascript\"
1177 src=\"%PATH\"></script>"
1178 "The MathJax template. See also `org-html-mathjax-options'."
1179 :group 'org-export-html
1180 :type 'string)
1182 ;;;; Template :: Postamble
1184 (defcustom org-html-postamble 'auto
1185 "Non-nil means insert a postamble in HTML export.
1187 When set to 'auto, check against the
1188 `org-export-with-author/email/creator/date' variables to set the
1189 content of the postamble. When set to a string, use this string
1190 as the postamble. When t, insert a string as defined by the
1191 formatting string in `org-html-postamble-format'.
1193 When set to a function, apply this function and insert the
1194 returned string. The function takes the property list of export
1195 options as its only argument.
1197 Setting :html-postamble in publishing projects will take
1198 precedence over this variable."
1199 :group 'org-export-html
1200 :type '(choice (const :tag "No postamble" nil)
1201 (const :tag "Auto postamble" auto)
1202 (const :tag "Default formatting string" t)
1203 (string :tag "Custom formatting string")
1204 (function :tag "Function (must return a string)")))
1206 (defcustom org-html-postamble-format
1207 '(("en" "<p class=\"author\">Author: %a (%e)</p>
1208 <p class=\"date\">Date: %d</p>
1209 <p class=\"creator\">%c</p>
1210 <p class=\"validation\">%v</p>"))
1211 "Alist of languages and format strings for the HTML postamble.
1213 The first element of each list is the language code, as used for
1214 the LANGUAGE keyword. See `org-export-default-language'.
1216 The second element of each list is a format string to format the
1217 postamble itself. This format string can contain these elements:
1219 %t stands for the title.
1220 %s stands for the subtitle.
1221 %a stands for the author's name.
1222 %e stands for the author's email.
1223 %d stands for the date.
1224 %c will be replaced by `org-html-creator-string'.
1225 %v will be replaced by `org-html-validation-link'.
1226 %T will be replaced by the export time.
1227 %C will be replaced by the last modification time.
1229 If you need to use a \"%\" character, you need to escape it
1230 like that: \"%%\"."
1231 :group 'org-export-html
1232 :type '(repeat
1233 (list (string :tag "Language")
1234 (string :tag "Format string"))))
1236 (defcustom org-html-validation-link
1237 "<a href=\"http://validator.w3.org/check?uri=referer\">Validate</a>"
1238 "Link to HTML validation service."
1239 :group 'org-export-html
1240 :type 'string)
1242 (defcustom org-html-creator-string
1243 (format "<a href=\"http://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"http://orgmode.org\">Org</a> mode %s)"
1244 emacs-version
1245 (if (fboundp 'org-version) (org-version) "unknown version"))
1246 "Information about the creator of the HTML document.
1247 This option can also be set on with the CREATOR keyword."
1248 :group 'org-export-html
1249 :version "24.4"
1250 :package-version '(Org . "8.0")
1251 :type '(string :tag "Creator string"))
1253 ;;;; Template :: Preamble
1255 (defcustom org-html-preamble t
1256 "Non-nil means insert a preamble in HTML export.
1258 When t, insert a string as defined by the formatting string in
1259 `org-html-preamble-format'. When set to a string, use this
1260 formatting string instead (see `org-html-postamble-format' for an
1261 example of such a formatting string).
1263 When set to a function, apply this function and insert the
1264 returned string. The function takes the property list of export
1265 options as its only argument.
1267 Setting :html-preamble in publishing projects will take
1268 precedence over this variable."
1269 :group 'org-export-html
1270 :type '(choice (const :tag "No preamble" nil)
1271 (const :tag "Default preamble" t)
1272 (string :tag "Custom formatting string")
1273 (function :tag "Function (must return a string)")))
1275 (defcustom org-html-preamble-format '(("en" ""))
1276 "Alist of languages and format strings for the HTML preamble.
1278 The first element of each list is the language code, as used for
1279 the LANGUAGE keyword. See `org-export-default-language'.
1281 The second element of each list is a format string to format the
1282 preamble itself. This format string can contain these elements:
1284 %t stands for the title.
1285 %s stands for the subtitle.
1286 %a stands for the author's name.
1287 %e stands for the author's email.
1288 %d stands for the date.
1289 %c will be replaced by `org-html-creator-string'.
1290 %v will be replaced by `org-html-validation-link'.
1291 %T will be replaced by the export time.
1292 %C will be replaced by the last modification time.
1294 If you need to use a \"%\" character, you need to escape it
1295 like that: \"%%\".
1297 See the default value of `org-html-postamble-format' for an
1298 example."
1299 :group 'org-export-html
1300 :type '(repeat
1301 (list (string :tag "Language")
1302 (string :tag "Format string"))))
1304 (defcustom org-html-link-up ""
1305 "Where should the \"UP\" link of exported HTML pages lead?"
1306 :group 'org-export-html
1307 :type '(string :tag "File or URL"))
1309 (defcustom org-html-link-home ""
1310 "Where should the \"HOME\" link of exported HTML pages lead?"
1311 :group 'org-export-html
1312 :type '(string :tag "File or URL"))
1314 (defcustom org-html-link-use-abs-url nil
1315 "Should we prepend relative links with HTML_LINK_HOME?"
1316 :group 'org-export-html
1317 :version "24.4"
1318 :package-version '(Org . "8.1")
1319 :type 'boolean)
1321 (defcustom org-html-home/up-format
1322 "<div id=\"org-div-home-and-up\">
1323 <a accesskey=\"h\" href=\"%s\"> UP </a>
1325 <a accesskey=\"H\" href=\"%s\"> HOME </a>
1326 </div>"
1327 "Snippet used to insert the HOME and UP links.
1328 This is a format string, the first %s will receive the UP link,
1329 the second the HOME link. If both `org-html-link-up' and
1330 `org-html-link-home' are empty, the entire snippet will be
1331 ignored."
1332 :group 'org-export-html
1333 :type 'string)
1335 ;;;; Template :: Scripts
1337 (define-obsolete-variable-alias
1338 'org-html-style-include-scripts 'org-html-head-include-scripts "24.4")
1339 (defcustom org-html-head-include-scripts t
1340 "Non-nil means include the JavaScript snippets in exported HTML files.
1341 The actual script is defined in `org-html-scripts' and should
1342 not be modified."
1343 :group 'org-export-html
1344 :version "24.4"
1345 :package-version '(Org . "8.0")
1346 :type 'boolean)
1348 ;;;; Template :: Styles
1350 (define-obsolete-variable-alias
1351 'org-html-style-include-default 'org-html-head-include-default-style "24.4")
1352 (defcustom org-html-head-include-default-style t
1353 "Non-nil means include the default style in exported HTML files.
1354 The actual style is defined in `org-html-style-default' and
1355 should not be modified. Use `org-html-head' to use your own
1356 style information."
1357 :group 'org-export-html
1358 :version "24.4"
1359 :package-version '(Org . "8.0")
1360 :type 'boolean)
1361 ;;;###autoload
1362 (put 'org-html-head-include-default-style 'safe-local-variable 'booleanp)
1364 (define-obsolete-variable-alias 'org-html-style 'org-html-head "24.4")
1365 (defcustom org-html-head ""
1366 "Org-wide head definitions for exported HTML files.
1368 This variable can contain the full HTML structure to provide a
1369 style, including the surrounding HTML tags. You can consider
1370 including definitions for the following classes: title, todo,
1371 done, timestamp, timestamp-kwd, tag, target.
1373 For example, a valid value would be:
1375 <style type=\"text/css\">
1376 <![CDATA[
1377 p { font-weight: normal; color: gray; }
1378 h1 { color: black; }
1379 .title { text-align: center; }
1380 .todo, .timestamp-kwd { color: red; }
1381 .done { color: green; }
1383 </style>
1385 If you want to refer to an external style, use something like
1387 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\" />
1389 As the value of this option simply gets inserted into the HTML
1390 <head> header, you can use it to add any arbitrary text to the
1391 header.
1393 You can set this on a per-file basis using #+HTML_HEAD:,
1394 or for publication projects using the :html-head property."
1395 :group 'org-export-html
1396 :version "24.4"
1397 :package-version '(Org . "8.0")
1398 :type 'string)
1399 ;;;###autoload
1400 (put 'org-html-head 'safe-local-variable 'stringp)
1402 (defcustom org-html-head-extra ""
1403 "More head information to add in the HTML output.
1405 You can set this on a per-file basis using #+HTML_HEAD_EXTRA:,
1406 or for publication projects using the :html-head-extra property."
1407 :group 'org-export-html
1408 :version "24.4"
1409 :package-version '(Org . "8.0")
1410 :type 'string)
1411 ;;;###autoload
1412 (put 'org-html-head-extra 'safe-local-variable 'stringp)
1414 ;;;; Template :: Viewport
1416 (defcustom org-html-viewport '((width "device-width")
1417 (initial-scale "1")
1418 (minimum-scale "")
1419 (maximum-scale "")
1420 (user-scalable ""))
1421 "Viewport options for mobile-optimized sites.
1423 The following values are recognized
1425 width Size of the viewport.
1426 initial-scale Zoom level when the page is first loaded.
1427 minimum-scale Minimum allowed zoom level.
1428 maximum-scale Maximum allowed zoom level.
1429 user-scalable Whether zoom can be changed.
1431 The viewport meta tag is inserted if this variable is non-nil.
1433 See the following site for a reference:
1434 https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag"
1435 :group 'org-export-html
1436 :version "25.1"
1437 :package-version '(Org . "8.3")
1438 :type '(list :greedy t
1439 (list :tag "Width of viewport"
1440 (const :format " " width)
1441 (choice (const :tag "unset" "")
1442 (string)))
1443 (list :tag "Initial scale"
1444 (const :format " " initial-scale)
1445 (choice (const :tag "unset" "")
1446 (string)))
1447 (list :tag "Minimum scale/zoom"
1448 (const :format " " minimum-scale)
1449 (choice (const :tag "unset" "")
1450 (string)))
1451 (list :tag "Maximum scale/zoom"
1452 (const :format " " maximum-scale)
1453 (choice (const :tag "unset" "")
1454 (string)))
1455 (list :tag "User scalable/zoomable"
1456 (const :format " " user-scalable)
1457 (choice (const :tag "unset" "")
1458 (const "true")
1459 (const "false")))))
1461 ;;;; Todos
1463 (defcustom org-html-todo-kwd-class-prefix ""
1464 "Prefix to class names for TODO keywords.
1465 Each TODO keyword gets a class given by the keyword itself, with this prefix.
1466 The default prefix is empty because it is nice to just use the keyword
1467 as a class name. But if you get into conflicts with other, existing
1468 CSS classes, then this prefix can be very useful."
1469 :group 'org-export-html
1470 :type 'string)
1473 ;;; Internal Functions
1475 (defun org-html-xhtml-p (info)
1476 (let ((dt (downcase (plist-get info :html-doctype))))
1477 (string-match-p "xhtml" dt)))
1479 (defun org-html-html5-p (info)
1480 (let ((dt (downcase (plist-get info :html-doctype))))
1481 (member dt '("html5" "xhtml5" "<!doctype html>"))))
1483 (defun org-html-close-tag (tag attr info)
1484 (concat "<" tag " " attr
1485 (if (org-html-xhtml-p info) " />" ">")))
1487 (defun org-html-doctype (info)
1488 "Return correct html doctype tag from `org-html-doctype-alist',
1489 or the literal value of :html-doctype from INFO if :html-doctype
1490 is not found in the alist.
1491 INFO is a plist used as a communication channel."
1492 (let ((dt (plist-get info :html-doctype)))
1493 (or (cdr (assoc dt org-html-doctype-alist)) dt)))
1495 (defun org-html--make-attribute-string (attributes)
1496 "Return a list of attributes, as a string.
1497 ATTRIBUTES is a plist where values are either strings or nil. An
1498 attributes with a nil value will be omitted from the result."
1499 (let (output)
1500 (dolist (item attributes (mapconcat 'identity (nreverse output) " "))
1501 (cond ((null item) (pop output))
1502 ((symbolp item) (push (substring (symbol-name item) 1) output))
1503 (t (let ((key (car output))
1504 (value (replace-regexp-in-string
1505 "\"" "&quot;" (org-html-encode-plain-text item))))
1506 (setcar output (format "%s=\"%s\"" key value))))))))
1508 (defun org-html--wrap-image (contents info &optional caption label)
1509 "Wrap CONTENTS string within an appropriate environment for images.
1510 INFO is a plist used as a communication channel. When optional
1511 arguments CAPTION and LABEL are given, use them for caption and
1512 \"id\" attribute."
1513 (let ((html5-fancy (and (org-html-html5-p info)
1514 (plist-get info :html-html5-fancy))))
1515 (format (if html5-fancy "\n<figure%s>%s%s\n</figure>"
1516 "\n<div%s class=\"figure\">%s%s\n</div>")
1517 ;; ID.
1518 (if (org-string-nw-p label) (format " id=\"%s\"" label) "")
1519 ;; Contents.
1520 (format "\n<p>%s</p>" contents)
1521 ;; Caption.
1522 (if (not (org-string-nw-p caption)) ""
1523 (format (if html5-fancy "\n<figcaption>%s</figcaption>"
1524 "\n<p>%s</p>")
1525 caption)))))
1527 (defun org-html--format-image (source attributes info)
1528 "Return \"img\" tag with given SOURCE and ATTRIBUTES.
1529 SOURCE is a string specifying the location of the image.
1530 ATTRIBUTES is a plist, as returned by
1531 `org-export-read-attribute'. INFO is a plist used as
1532 a communication channel."
1533 (if (string= "svg" (file-name-extension source))
1534 (org-html--svg-image source attributes info)
1535 (org-html-close-tag
1536 "img"
1537 (org-html--make-attribute-string
1538 (org-combine-plists
1539 (list :src source
1540 :alt (if (string-match-p "^ltxpng/" source)
1541 (org-html-encode-plain-text
1542 (org-find-text-property-in-string 'org-latex-src source))
1543 (file-name-nondirectory source)))
1544 attributes))
1545 info)))
1547 (defun org-html--svg-image (source attributes info)
1548 "Return \"object\" appropriate for embedding svg file SOURCE
1549 with assoicated ATTRIBUTES. INFO is a plist used as a
1550 communication channel.
1552 The special attribute \"fallback\" can be used to specify a fallback
1553 image file to use if the object embedding is not supported."
1554 (let ((fallback (plist-get attributes :fallback))
1555 (attrs (org-html--make-attribute-string
1556 (plist-put attributes :fallback nil))))
1557 (format "<object type=\"image/svg+xml\" data=\"%s\" %s>\n%s</object>"
1558 source attrs
1559 (if fallback
1560 (org-html-close-tag
1561 "img" (format "src=\"%s\" %s" fallback attrs) info)
1562 "Sorry, your browser does not support SVG."))))
1564 (defun org-html--textarea-block (element)
1565 "Transcode ELEMENT into a textarea block.
1566 ELEMENT is either a src block or an example block."
1567 (let* ((code (car (org-export-unravel-code element)))
1568 (attr (org-export-read-attribute :attr_html element)))
1569 (format "<p>\n<textarea cols=\"%s\" rows=\"%s\">\n%s</textarea>\n</p>"
1570 (or (plist-get attr :width) 80)
1571 (or (plist-get attr :height) (org-count-lines code))
1572 code)))
1574 (defun org-html--has-caption-p (element &optional info)
1575 "Non-nil when ELEMENT has a caption affiliated keyword.
1576 INFO is a plist used as a communication channel. This function
1577 is meant to be used as a predicate for `org-export-get-ordinal' or
1578 a value to `org-html-standalone-image-predicate'."
1579 (org-element-property :caption element))
1581 ;;;; Table
1583 (defun org-html-htmlize-region-for-paste (beg end)
1584 "Convert the region between BEG and END to HTML, using htmlize.el.
1585 This is much like `htmlize-region-for-paste', only that it uses
1586 the settings define in the org-... variables."
1587 (let* ((htmlize-output-type org-html-htmlize-output-type)
1588 (htmlize-css-name-prefix org-html-htmlize-font-prefix)
1589 (htmlbuf (htmlize-region beg end)))
1590 (unwind-protect
1591 (with-current-buffer htmlbuf
1592 (buffer-substring (plist-get htmlize-buffer-places 'content-start)
1593 (plist-get htmlize-buffer-places 'content-end)))
1594 (kill-buffer htmlbuf))))
1596 ;;;###autoload
1597 (defun org-html-htmlize-generate-css ()
1598 "Create the CSS for all font definitions in the current Emacs session.
1599 Use this to create face definitions in your CSS style file that can then
1600 be used by code snippets transformed by htmlize.
1601 This command just produces a buffer that contains class definitions for all
1602 faces used in the current Emacs session. You can copy and paste the ones you
1603 need into your CSS file.
1605 If you then set `org-html-htmlize-output-type' to `css', calls
1606 to the function `org-html-htmlize-region-for-paste' will
1607 produce code that uses these same face definitions."
1608 (interactive)
1609 (require 'htmlize)
1610 (and (get-buffer "*html*") (kill-buffer "*html*"))
1611 (with-temp-buffer
1612 (let ((fl (face-list))
1613 (htmlize-css-name-prefix "org-")
1614 (htmlize-output-type 'css)
1615 f i)
1616 (while (setq f (pop fl)
1617 i (and f (face-attribute f :inherit)))
1618 (when (and (symbolp f) (or (not i) (not (listp i))))
1619 (insert (org-add-props (copy-sequence "1") nil 'face f))))
1620 (htmlize-region (point-min) (point-max))))
1621 (org-pop-to-buffer-same-window "*html*")
1622 (goto-char (point-min))
1623 (if (re-search-forward "<style" nil t)
1624 (delete-region (point-min) (match-beginning 0)))
1625 (if (re-search-forward "</style>" nil t)
1626 (delete-region (1+ (match-end 0)) (point-max)))
1627 (beginning-of-line 1)
1628 (if (looking-at " +") (replace-match ""))
1629 (goto-char (point-min)))
1631 (defun org-html--make-string (n string)
1632 "Build a string by concatenating N times STRING."
1633 (let (out) (dotimes (i n out) (setq out (concat string out)))))
1635 (defun org-html-fix-class-name (kwd) ; audit callers of this function
1636 "Turn todo keyword KWD into a valid class name.
1637 Replaces invalid characters with \"_\"."
1638 (save-match-data
1639 (while (string-match "[^a-zA-Z0-9_]" kwd)
1640 (setq kwd (replace-match "_" t t kwd))))
1641 kwd)
1643 (defun org-html-footnote-section (info)
1644 "Format the footnote section.
1645 INFO is a plist used as a communication channel."
1646 (let* ((fn-alist (org-export-collect-footnote-definitions info))
1647 (fn-alist
1648 (loop for (n type raw) in fn-alist collect
1649 (cons n (if (eq (org-element-type raw) 'org-data)
1650 (org-trim (org-export-data raw info))
1651 (format "<div class=\"footpara\">%s</div>"
1652 (org-trim (org-export-data raw info))))))))
1653 (when fn-alist
1654 (format
1655 (plist-get info :html-footnotes-section)
1656 (org-html--translate "Footnotes" info)
1657 (format
1658 "\n%s\n"
1659 (mapconcat
1660 (lambda (fn)
1661 (let ((n (car fn)) (def (cdr fn)))
1662 (format
1663 "<div class=\"footdef\">%s %s</div>\n"
1664 (format
1665 (plist-get info :html-footnote-format)
1666 (org-html--anchor
1667 (format "fn.%d" n)
1669 (format " class=\"footnum\" href=\"#fnr.%d\"" n)
1670 info))
1671 def)))
1672 fn-alist
1673 "\n"))))))
1676 ;;; Template
1678 (defun org-html--build-meta-info (info)
1679 "Return meta tags for exported document.
1680 INFO is a plist used as a communication channel."
1681 (let ((protect-string
1682 (lambda (str)
1683 (replace-regexp-in-string
1684 "\"" "&quot;" (org-html-encode-plain-text str))))
1685 (title (org-export-data (plist-get info :title) info))
1686 (author (and (plist-get info :with-author)
1687 (let ((auth (plist-get info :author)))
1688 (and auth
1689 ;; Return raw Org syntax, skipping non
1690 ;; exportable objects.
1691 (org-element-interpret-data
1692 (org-element-map auth
1693 (cons 'plain-text org-element-all-objects)
1694 'identity info))))))
1695 (description (plist-get info :description))
1696 (keywords (plist-get info :keywords))
1697 (charset (or (and org-html-coding-system
1698 (fboundp 'coding-system-get)
1699 (coding-system-get org-html-coding-system
1700 'mime-charset))
1701 "iso-8859-1")))
1702 (concat
1703 (when (plist-get info :time-stamp-file)
1704 (format-time-string
1705 (concat "<!-- "
1706 (plist-get info :html-metadata-timestamp-format)
1707 " -->\n")))
1708 (format
1709 (if (org-html-html5-p info)
1710 (org-html-close-tag "meta" " charset=\"%s\"" info)
1711 (org-html-close-tag
1712 "meta" " http-equiv=\"Content-Type\" content=\"text/html;charset=%s\""
1713 info))
1714 charset) "\n"
1715 (let ((viewport-options
1716 (org-remove-if-not (lambda (cell) (org-string-nw-p (cadr cell)))
1717 (plist-get info :html-viewport))))
1718 (and viewport-options
1719 (concat
1720 (org-html-close-tag
1721 "meta"
1722 (format " name=\"viewport\" content=\"%s\""
1723 (mapconcat
1724 (lambda (elm) (format "%s=%s" (car elm) (cadr elm)))
1725 viewport-options ", "))
1726 info)
1727 "\n")))
1728 (format "<title>%s</title>\n" title)
1729 (org-html-close-tag "meta" " name=\"generator\" content=\"Org-mode\"" info)
1730 "\n"
1731 (and (org-string-nw-p author)
1732 (concat
1733 (org-html-close-tag "meta"
1734 (format " name=\"author\" content=\"%s\""
1735 (funcall protect-string author))
1736 info)
1737 "\n"))
1738 (and (org-string-nw-p description)
1739 (concat
1740 (org-html-close-tag "meta"
1741 (format " name=\"description\" content=\"%s\"\n"
1742 (funcall protect-string description))
1743 info)
1744 "\n"))
1745 (and (org-string-nw-p keywords)
1746 (concat
1747 (org-html-close-tag "meta"
1748 (format " name=\"keywords\" content=\"%s\""
1749 (funcall protect-string keywords))
1750 info)
1751 "\n")))))
1753 (defun org-html--build-head (info)
1754 "Return information for the <head>..</head> of the HTML output.
1755 INFO is a plist used as a communication channel."
1756 (org-element-normalize-string
1757 (concat
1758 (when (plist-get info :html-head-include-default-style)
1759 (org-element-normalize-string org-html-style-default))
1760 (org-element-normalize-string (plist-get info :html-head))
1761 (org-element-normalize-string (plist-get info :html-head-extra))
1762 (when (and (plist-get info :html-htmlized-css-url)
1763 (eq org-html-htmlize-output-type 'css))
1764 (org-html-close-tag "link"
1765 (format " rel=\"stylesheet\" href=\"%s\" type=\"text/css\""
1766 (plist-get info :html-htmlized-css-url))
1767 info))
1768 (when (plist-get info :html-head-include-scripts) org-html-scripts))))
1770 (defun org-html--build-mathjax-config (info)
1771 "Insert the user setup into the mathjax template.
1772 INFO is a plist used as a communication channel."
1773 (when (and (memq (plist-get info :with-latex) '(mathjax t))
1774 (org-element-map (plist-get info :parse-tree)
1775 '(latex-fragment latex-environment) 'identity info t))
1776 (let ((template (plist-get info :html-mathjax-template))
1777 (options (plist-get info :html-mathjax-options))
1778 (in-buffer (or (plist-get info :html-mathjax) ""))
1779 name val x)
1780 (mapc
1781 (lambda (e)
1782 (setq name (car e) val (nth 1 e))
1783 (if (string-match (concat "\\<" (symbol-name name) ":") in-buffer)
1784 (setq val (car (read-from-string
1785 (substring in-buffer (match-end 0))))))
1786 (if (not (stringp val)) (setq val (format "%s" val)))
1787 (while (string-match (concat "%" (upcase (symbol-name name))) template)
1788 (setq template (replace-match val t t template))))
1789 options)
1790 ;; Return the modified template.
1791 (org-element-normalize-string template))))
1793 (defun org-html-format-spec (info)
1794 "Return format specification for elements that can be
1795 used in the preamble or postamble."
1796 `((?t . ,(org-export-data (plist-get info :title) info))
1797 (?s . ,(org-export-data (plist-get info :subtitle) info))
1798 (?d . ,(org-export-data (org-export-get-date info) info))
1799 (?T . ,(format-time-string
1800 (plist-get info :html-metadata-timestamp-format)))
1801 (?a . ,(org-export-data (plist-get info :author) info))
1802 (?e . ,(mapconcat
1803 (lambda (e)
1804 (format "<a href=\"mailto:%s\">%s</a>" e e))
1805 (split-string (plist-get info :email) ",+ *")
1806 ", "))
1807 (?c . ,(plist-get info :creator))
1808 (?C . ,(let ((file (plist-get info :input-file)))
1809 (format-time-string
1810 (plist-get info :html-metadata-timestamp-format)
1811 (if file (nth 5 (file-attributes file)) (current-time)))))
1812 (?v . ,(or (plist-get info :html-validation-link) ""))))
1814 (defun org-html--build-pre/postamble (type info)
1815 "Return document preamble or postamble as a string, or nil.
1816 TYPE is either 'preamble or 'postamble, INFO is a plist used as a
1817 communication channel."
1818 (let ((section (plist-get info (intern (format ":html-%s" type))))
1819 (spec (org-html-format-spec info)))
1820 (when section
1821 (let ((section-contents
1822 (if (functionp section) (funcall section info)
1823 (cond
1824 ((stringp section) (format-spec section spec))
1825 ((eq section 'auto)
1826 (let ((date (cdr (assq ?d spec)))
1827 (author (cdr (assq ?a spec)))
1828 (email (cdr (assq ?e spec)))
1829 (creator (cdr (assq ?c spec)))
1830 (timestamp (cdr (assq ?T spec)))
1831 (validation-link (cdr (assq ?v spec))))
1832 (concat
1833 (when (and (plist-get info :with-date)
1834 (org-string-nw-p date))
1835 (format "<p class=\"date\">%s: %s</p>\n"
1836 (org-html--translate "Date" info)
1837 date))
1838 (when (and (plist-get info :with-author)
1839 (org-string-nw-p author))
1840 (format "<p class=\"author\">%s: %s</p>\n"
1841 (org-html--translate "Author" info)
1842 author))
1843 (when (and (plist-get info :with-email)
1844 (org-string-nw-p email))
1845 (format "<p class=\"email\">%s: %s</p>\n"
1846 (org-html--translate "Email" info)
1847 email))
1848 (when (plist-get info :time-stamp-file)
1849 (format
1850 "<p class=\"date\">%s: %s</p>\n"
1851 (org-html--translate "Created" info)
1852 (format-time-string
1853 (plist-get info :html-metadata-timestamp-format))))
1854 (when (plist-get info :with-creator)
1855 (format "<p class=\"creator\">%s</p>\n" creator))
1856 (format "<p class=\"validation\">%s</p>\n"
1857 validation-link))))
1858 (t (format-spec
1859 (or (cadr (assoc
1860 (plist-get info :language)
1861 (eval (intern
1862 (format "org-html-%s-format" type)))))
1863 (cadr
1864 (assoc
1865 "en"
1866 (eval
1867 (intern (format "org-html-%s-format" type))))))
1868 spec))))))
1869 (let ((div (assq type (plist-get info :html-divs))))
1870 (when (org-string-nw-p section-contents)
1871 (concat
1872 (format "<%s id=\"%s\" class=\"%s\">\n"
1873 (nth 1 div)
1874 (nth 2 div)
1875 org-html--pre/postamble-class)
1876 (org-element-normalize-string section-contents)
1877 (format "</%s>\n" (nth 1 div)))))))))
1879 (defun org-html-inner-template (contents info)
1880 "Return body of document string after HTML conversion.
1881 CONTENTS is the transcoded contents string. INFO is a plist
1882 holding export options."
1883 (concat
1884 ;; Table of contents.
1885 (let ((depth (plist-get info :with-toc)))
1886 (when depth (org-html-toc depth info)))
1887 ;; Document contents.
1888 contents
1889 ;; Footnotes section.
1890 (org-html-footnote-section info)))
1892 (defun org-html-template (contents info)
1893 "Return complete document string after HTML conversion.
1894 CONTENTS is the transcoded contents string. INFO is a plist
1895 holding export options."
1896 (concat
1897 (when (and (not (org-html-html5-p info)) (org-html-xhtml-p info))
1898 (let* ((xml-declaration (plist-get info :html-xml-declaration))
1899 (decl (or (and (stringp xml-declaration) xml-declaration)
1900 (cdr (assoc (plist-get info :html-extension)
1901 xml-declaration))
1902 (cdr (assoc "html" xml-declaration))
1903 "")))
1904 (when (not (or (not decl) (string= "" decl)))
1905 (format "%s\n"
1906 (format decl
1907 (or (and org-html-coding-system
1908 (fboundp 'coding-system-get)
1909 (coding-system-get org-html-coding-system 'mime-charset))
1910 "iso-8859-1"))))))
1911 (org-html-doctype info)
1912 "\n"
1913 (concat "<html"
1914 (when (org-html-xhtml-p info)
1915 (format
1916 " xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"%s\" xml:lang=\"%s\""
1917 (plist-get info :language) (plist-get info :language)))
1918 ">\n")
1919 "<head>\n"
1920 (org-html--build-meta-info info)
1921 (org-html--build-head info)
1922 (org-html--build-mathjax-config info)
1923 "</head>\n"
1924 "<body>\n"
1925 (let ((link-up (org-trim (plist-get info :html-link-up)))
1926 (link-home (org-trim (plist-get info :html-link-home))))
1927 (unless (and (string= link-up "") (string= link-home ""))
1928 (format (plist-get info :html-home/up-format)
1929 (or link-up link-home)
1930 (or link-home link-up))))
1931 ;; Preamble.
1932 (org-html--build-pre/postamble 'preamble info)
1933 ;; Document contents.
1934 (let ((div (assq 'content (plist-get info :html-divs))))
1935 (format "<%s id=\"%s\">\n" (nth 1 div) (nth 2 div)))
1936 ;; Document title.
1937 (when (plist-get info :with-title)
1938 (let ((title (plist-get info :title))
1939 (subtitle (plist-get info :subtitle)))
1940 (when title
1941 (format
1942 (if (plist-get info :html-html5-fancy)
1943 "<header>\n<h1 class=\"title\">%s</h1>\n%s</header>"
1944 "<h1 class=\"title\">%s%s</h1>\n")
1945 (org-export-data title info)
1946 (if subtitle
1947 (format
1948 (if (plist-get info :html-html5-fancy)
1949 "<p class=\"subtitle\">%s</p>\n"
1950 "\n<br>\n<span class=\"subtitle\">%s</span>\n")
1951 (org-export-data subtitle info))
1952 "")))))
1953 contents
1954 (format "</%s>\n" (nth 1 (assq 'content (plist-get info :html-divs))))
1955 ;; Postamble.
1956 (org-html--build-pre/postamble 'postamble info)
1957 ;; Closing document.
1958 "</body>\n</html>"))
1960 (defun org-html--translate (s info)
1961 "Translate string S according to specified language.
1962 INFO is a plist used as a communication channel."
1963 (org-export-translate s :html info))
1965 ;;;; Anchor
1967 (defun org-html--anchor (id desc attributes info)
1968 "Format a HTML anchor."
1969 (let* ((name (and (plist-get info :html-allow-name-attribute-in-anchors) id))
1970 (attributes (concat (and id (format " id=\"%s\"" id))
1971 (and name (format " name=\"%s\"" name))
1972 attributes)))
1973 (format "<a%s>%s</a>" attributes (or desc ""))))
1975 ;;;; Todo
1977 (defun org-html--todo (todo info)
1978 "Format TODO keywords into HTML."
1979 (when todo
1980 (format "<span class=\"%s %s%s\">%s</span>"
1981 (if (member todo org-done-keywords) "done" "todo")
1982 (plist-get info :html-todo-kwd-class-prefix)
1983 (org-html-fix-class-name todo)
1984 todo)))
1986 ;;;; Priority
1988 (defun org-html--priority (priority info)
1989 "Format a priority into HTML.
1990 PRIORITY is the character code of the priority or nil. INFO is
1991 a plist containing export options."
1992 (and priority (format "<span class=\"priority\">[%c]</span>" priority)))
1994 ;;;; Tags
1996 (defun org-html--tags (tags info)
1997 "Format TAGS into HTML.
1998 INFO is a plist containing export options."
1999 (when tags
2000 (format "<span class=\"tag\">%s</span>"
2001 (mapconcat
2002 (lambda (tag)
2003 (format "<span class=\"%s\">%s</span>"
2004 (concat (plist-get info :html-tag-class-prefix)
2005 (org-html-fix-class-name tag))
2006 tag))
2007 tags "&#xa0;"))))
2009 ;;;; Src Code
2011 (defun org-html-fontify-code (code lang)
2012 "Color CODE with htmlize library.
2013 CODE is a string representing the source code to colorize. LANG
2014 is the language used for CODE, as a string, or nil."
2015 (when code
2016 (cond
2017 ;; Case 1: No lang. Possibly an example block.
2018 ((not lang)
2019 ;; Simple transcoding.
2020 (org-html-encode-plain-text code))
2021 ;; Case 2: No htmlize or an inferior version of htmlize
2022 ((not (and (require 'htmlize nil t) (fboundp 'htmlize-region-for-paste)))
2023 ;; Emit a warning.
2024 (message "Cannot fontify src block (htmlize.el >= 1.34 required)")
2025 ;; Simple transcoding.
2026 (org-html-encode-plain-text code))
2027 ;; Case 3: plain text explicitly set
2028 ((not org-html-htmlize-output-type)
2029 ;; Simple transcoding.
2030 (org-html-encode-plain-text code))
2032 ;; Map language
2033 (setq lang (or (assoc-default lang org-src-lang-modes) lang))
2034 (let* ((lang-mode (and lang (intern (format "%s-mode" lang)))))
2035 (cond
2036 ;; Case 1: Language is not associated with any Emacs mode
2037 ((not (functionp lang-mode))
2038 ;; Simple transcoding.
2039 (org-html-encode-plain-text code))
2040 ;; Case 2: Default. Fontify code.
2042 ;; htmlize
2043 (setq code (with-temp-buffer
2044 ;; Switch to language-specific mode.
2045 (funcall lang-mode)
2046 (insert code)
2047 ;; Fontify buffer.
2048 (font-lock-ensure)
2049 ;; Remove formatting on newline characters.
2050 (save-excursion
2051 (let ((beg (point-min))
2052 (end (point-max)))
2053 (goto-char beg)
2054 (while (progn (end-of-line) (< (point) end))
2055 (put-text-property (point) (1+ (point)) 'face nil)
2056 (forward-char 1))))
2057 (org-src-mode)
2058 (set-buffer-modified-p nil)
2059 ;; Htmlize region.
2060 (org-html-htmlize-region-for-paste
2061 (point-min) (point-max))))
2062 ;; Strip any enclosing <pre></pre> tags.
2063 (let* ((beg (and (string-match "\\`<pre[^>]*>\n*" code) (match-end 0)))
2064 (end (and beg (string-match "</pre>\\'" code))))
2065 (if (and beg end) (substring code beg end) code)))))))))
2067 (defun org-html-do-format-code
2068 (code &optional lang refs retain-labels num-start)
2069 "Format CODE string as source code.
2070 Optional arguments LANG, REFS, RETAIN-LABELS and NUM-START are,
2071 respectively, the language of the source code, as a string, an
2072 alist between line numbers and references (as returned by
2073 `org-export-unravel-code'), a boolean specifying if labels should
2074 appear in the source code, and the number associated to the first
2075 line of code."
2076 (let* ((code-lines (org-split-string code "\n"))
2077 (code-length (length code-lines))
2078 (num-fmt
2079 (and num-start
2080 (format "%%%ds: "
2081 (length (number-to-string (+ code-length num-start))))))
2082 (code (org-html-fontify-code code lang)))
2083 (org-export-format-code
2084 code
2085 (lambda (loc line-num ref)
2086 (setq loc
2087 (concat
2088 ;; Add line number, if needed.
2089 (when num-start
2090 (format "<span class=\"linenr\">%s</span>"
2091 (format num-fmt line-num)))
2092 ;; Transcoded src line.
2094 ;; Add label, if needed.
2095 (when (and ref retain-labels) (format " (%s)" ref))))
2096 ;; Mark transcoded line as an anchor, if needed.
2097 (if (not ref) loc
2098 (format "<span id=\"coderef-%s\" class=\"coderef-off\">%s</span>"
2099 ref loc)))
2100 num-start refs)))
2102 (defun org-html-format-code (element info)
2103 "Format contents of ELEMENT as source code.
2104 ELEMENT is either an example block or a src block. INFO is
2105 a plist used as a communication channel."
2106 (let* ((lang (org-element-property :language element))
2107 ;; Extract code and references.
2108 (code-info (org-export-unravel-code element))
2109 (code (car code-info))
2110 (refs (cdr code-info))
2111 ;; Does the src block contain labels?
2112 (retain-labels (org-element-property :retain-labels element))
2113 ;; Does it have line numbers?
2114 (num-start (case (org-element-property :number-lines element)
2115 (continued (org-export-get-loc element info))
2116 (new 0))))
2117 (org-html-do-format-code code lang refs retain-labels num-start)))
2120 ;;; Tables of Contents
2122 (defun org-html-toc (depth info &optional scope)
2123 "Build a table of contents.
2124 DEPTH is an integer specifying the depth of the table. INFO is
2125 a plist used as a communication channel. Optional argument SCOPE
2126 is an element defining the scope of the table. Return the table
2127 of contents as a string, or nil if it is empty."
2128 (let ((toc-entries
2129 (mapcar (lambda (headline)
2130 (cons (org-html--format-toc-headline headline info)
2131 (org-export-get-relative-level headline info)))
2132 (org-export-collect-headlines info depth scope))))
2133 (when toc-entries
2134 (let ((toc (concat "<div id=\"text-table-of-contents\">"
2135 (org-html--toc-text toc-entries)
2136 "</div>\n")))
2137 (if scope toc
2138 (let ((outer-tag (if (and (org-html-html5-p info)
2139 (plist-get info :html-html5-fancy))
2140 "nav"
2141 "div")))
2142 (concat (format "<%s id=\"table-of-contents\">\n" outer-tag)
2143 (let ((top-level (plist-get info :html-toplevel-hlevel)))
2144 (format "<h%d>%s</h%d>\n"
2145 top-level
2146 (org-html--translate "Table of Contents" info)
2147 top-level))
2149 (format "</%s>\n" outer-tag))))))))
2151 (defun org-html--toc-text (toc-entries)
2152 "Return innards of a table of contents, as a string.
2153 TOC-ENTRIES is an alist where key is an entry title, as a string,
2154 and value is its relative level, as an integer."
2155 (let* ((prev-level (1- (cdar toc-entries)))
2156 (start-level prev-level))
2157 (concat
2158 (mapconcat
2159 (lambda (entry)
2160 (let ((headline (car entry))
2161 (level (cdr entry)))
2162 (concat
2163 (let* ((cnt (- level prev-level))
2164 (times (if (> cnt 0) (1- cnt) (- cnt)))
2165 rtn)
2166 (setq prev-level level)
2167 (concat
2168 (org-html--make-string
2169 times (cond ((> cnt 0) "\n<ul>\n<li>")
2170 ((< cnt 0) "</li>\n</ul>\n")))
2171 (if (> cnt 0) "\n<ul>\n<li>" "</li>\n<li>")))
2172 headline)))
2173 toc-entries "")
2174 (org-html--make-string (- prev-level start-level) "</li>\n</ul>\n"))))
2176 (defun org-html--format-toc-headline (headline info)
2177 "Return an appropriate table of contents entry for HEADLINE.
2178 INFO is a plist used as a communication channel."
2179 (let* ((headline-number (org-export-get-headline-number headline info))
2180 (todo (and (plist-get info :with-todo-keywords)
2181 (let ((todo (org-element-property :todo-keyword headline)))
2182 (and todo (org-export-data todo info)))))
2183 (todo-type (and todo (org-element-property :todo-type headline)))
2184 (priority (and (plist-get info :with-priority)
2185 (org-element-property :priority headline)))
2186 (text (org-export-data-with-backend
2187 (org-export-get-alt-title headline info)
2188 ;; Create an anonymous back-end that will ignore any
2189 ;; footnote-reference, link, radio-target and target
2190 ;; in table of contents.
2191 (org-export-create-backend
2192 :parent 'html
2193 :transcoders '((footnote-reference . ignore)
2194 (link . (lambda (object c i) c))
2195 (radio-target . (lambda (object c i) c))
2196 (target . ignore)))
2197 info))
2198 (tags (and (eq (plist-get info :with-tags) t)
2199 (org-export-get-tags headline info))))
2200 (format "<a href=\"#%s\">%s</a>"
2201 ;; Label.
2202 (or (org-element-property :CUSTOM_ID headline)
2203 (org-export-get-reference headline info))
2204 ;; Body.
2205 (concat
2206 (and (not (org-export-low-level-p headline info))
2207 (org-export-numbered-headline-p headline info)
2208 (concat (mapconcat #'number-to-string headline-number ".")
2209 ". "))
2210 (apply (plist-get info :html-format-headline-function)
2211 todo todo-type priority text tags :section-number nil)))))
2213 (defun org-html-list-of-listings (info)
2214 "Build a list of listings.
2215 INFO is a plist used as a communication channel. Return the list
2216 of listings as a string, or nil if it is empty."
2217 (let ((lol-entries (org-export-collect-listings info)))
2218 (when lol-entries
2219 (concat "<div id=\"list-of-listings\">\n"
2220 (let ((top-level (plist-get info :html-toplevel-hlevel)))
2221 (format "<h%d>%s</h%d>\n"
2222 top-level
2223 (org-html--translate "List of Listings" info)
2224 top-level))
2225 "<div id=\"text-list-of-listings\">\n<ul>\n"
2226 (let ((count 0)
2227 (initial-fmt (format "<span class=\"listing-number\">%s</span>"
2228 (org-html--translate "Listing %d:" info))))
2229 (mapconcat
2230 (lambda (entry)
2231 (let ((label (and (org-element-property :name entry)
2232 (org-export-get-reference entry info)))
2233 (title (org-trim
2234 (org-export-data
2235 (or (org-export-get-caption entry t)
2236 (org-export-get-caption entry))
2237 info))))
2238 (concat
2239 "<li>"
2240 (if (not label)
2241 (concat (format initial-fmt (incf count)) " " title)
2242 (format "<a href=\"#%s\">%s %s</a>"
2243 label
2244 (format initial-fmt (incf count))
2245 title))
2246 "</li>")))
2247 lol-entries "\n"))
2248 "\n</ul>\n</div>\n</div>"))))
2250 (defun org-html-list-of-tables (info)
2251 "Build a list of tables.
2252 INFO is a plist used as a communication channel. Return the list
2253 of tables as a string, or nil if it is empty."
2254 (let ((lol-entries (org-export-collect-tables info)))
2255 (when lol-entries
2256 (concat "<div id=\"list-of-tables\">\n"
2257 (let ((top-level (plist-get info :html-toplevel-hlevel)))
2258 (format "<h%d>%s</h%d>\n"
2259 top-level
2260 (org-html--translate "List of Tables" info)
2261 top-level))
2262 "<div id=\"text-list-of-tables\">\n<ul>\n"
2263 (let ((count 0)
2264 (initial-fmt (format "<span class=\"table-number\">%s</span>"
2265 (org-html--translate "Table %d:" info))))
2266 (mapconcat
2267 (lambda (entry)
2268 (let ((label (and (org-element-property :name entry)
2269 (org-export-get-reference entry info)))
2270 (title (org-trim
2271 (org-export-data
2272 (or (org-export-get-caption entry t)
2273 (org-export-get-caption entry))
2274 info))))
2275 (concat
2276 "<li>"
2277 (if (not label)
2278 (concat (format initial-fmt (incf count)) " " title)
2279 (format "<a href=\"#%s\">%s %s</a>"
2280 label
2281 (format initial-fmt (incf count))
2282 title))
2283 "</li>")))
2284 lol-entries "\n"))
2285 "\n</ul>\n</div>\n</div>"))))
2288 ;;; Transcode Functions
2290 ;;;; Bold
2292 (defun org-html-bold (bold contents info)
2293 "Transcode BOLD from Org to HTML.
2294 CONTENTS is the text with bold markup. INFO is a plist holding
2295 contextual information."
2296 (format (or (cdr (assq 'bold (plist-get info :html-text-markup-alist))) "%s")
2297 contents))
2299 ;;;; Center Block
2301 (defun org-html-center-block (center-block contents info)
2302 "Transcode a CENTER-BLOCK element from Org to HTML.
2303 CONTENTS holds the contents of the block. INFO is a plist
2304 holding contextual information."
2305 (format "<div class=\"center\">\n%s</div>" contents))
2307 ;;;; Clock
2309 (defun org-html-clock (clock contents info)
2310 "Transcode a CLOCK element from Org to HTML.
2311 CONTENTS is nil. INFO is a plist used as a communication
2312 channel."
2313 (format "<p>
2314 <span class=\"timestamp-wrapper\">
2315 <span class=\"timestamp-kwd\">%s</span> <span class=\"timestamp\">%s</span>%s
2316 </span>
2317 </p>"
2318 org-clock-string
2319 (org-timestamp-translate (org-element-property :value clock))
2320 (let ((time (org-element-property :duration clock)))
2321 (and time (format " <span class=\"timestamp\">(%s)</span>" time)))))
2323 ;;;; Code
2325 (defun org-html-code (code contents info)
2326 "Transcode CODE from Org to HTML.
2327 CONTENTS is nil. INFO is a plist holding contextual
2328 information."
2329 (format (or (cdr (assq 'code (plist-get info :html-text-markup-alist))) "%s")
2330 (org-html-encode-plain-text (org-element-property :value code))))
2332 ;;;; Drawer
2334 (defun org-html-drawer (drawer contents info)
2335 "Transcode a DRAWER element from Org to HTML.
2336 CONTENTS holds the contents of the block. INFO is a plist
2337 holding contextual information."
2338 (funcall (plist-get info :html-format-drawer-function)
2339 (org-element-property :drawer-name drawer)
2340 contents))
2342 ;;;; Dynamic Block
2344 (defun org-html-dynamic-block (dynamic-block contents info)
2345 "Transcode a DYNAMIC-BLOCK element from Org to HTML.
2346 CONTENTS holds the contents of the block. INFO is a plist
2347 holding contextual information. See `org-export-data'."
2348 contents)
2350 ;;;; Entity
2352 (defun org-html-entity (entity contents info)
2353 "Transcode an ENTITY object from Org to HTML.
2354 CONTENTS are the definition itself. INFO is a plist holding
2355 contextual information."
2356 (org-element-property :html entity))
2358 ;;;; Example Block
2360 (defun org-html-example-block (example-block contents info)
2361 "Transcode a EXAMPLE-BLOCK element from Org to HTML.
2362 CONTENTS is nil. INFO is a plist holding contextual
2363 information."
2364 (if (org-export-read-attribute :attr_html example-block :textarea)
2365 (org-html--textarea-block example-block)
2366 (format "<pre class=\"example\">\n%s</pre>"
2367 (org-html-format-code example-block info))))
2369 ;;;; Export Snippet
2371 (defun org-html-export-snippet (export-snippet contents info)
2372 "Transcode a EXPORT-SNIPPET object from Org to HTML.
2373 CONTENTS is nil. INFO is a plist holding contextual
2374 information."
2375 (when (eq (org-export-snippet-backend export-snippet) 'html)
2376 (org-element-property :value export-snippet)))
2378 ;;;; Export Block
2380 (defun org-html-export-block (export-block contents info)
2381 "Transcode a EXPORT-BLOCK element from Org to HTML.
2382 CONTENTS is nil. INFO is a plist holding contextual information."
2383 (when (string= (org-element-property :type export-block) "HTML")
2384 (org-remove-indentation (org-element-property :value export-block))))
2386 ;;;; Fixed Width
2388 (defun org-html-fixed-width (fixed-width contents info)
2389 "Transcode a FIXED-WIDTH element from Org to HTML.
2390 CONTENTS is nil. INFO is a plist holding contextual information."
2391 (format "<pre class=\"example\">\n%s</pre>"
2392 (org-html-do-format-code
2393 (org-remove-indentation
2394 (org-element-property :value fixed-width)))))
2396 ;;;; Footnote Reference
2398 (defun org-html-footnote-reference (footnote-reference contents info)
2399 "Transcode a FOOTNOTE-REFERENCE element from Org to HTML.
2400 CONTENTS is nil. INFO is a plist holding contextual information."
2401 (concat
2402 ;; Insert separator between two footnotes in a row.
2403 (let ((prev (org-export-get-previous-element footnote-reference info)))
2404 (when (eq (org-element-type prev) 'footnote-reference)
2405 (plist-get info :html-footnote-separator)))
2406 (let* ((n (org-export-get-footnote-number footnote-reference info))
2407 (id (format "fnr.%d%s"
2409 (if (org-export-footnote-first-reference-p
2410 footnote-reference info)
2412 ".100"))))
2413 (format
2414 (plist-get info :html-footnote-format)
2415 (org-html--anchor
2416 id n (format " class=\"footref\" href=\"#fn.%d\"" n) info)))))
2418 ;;;; Headline
2420 (defun org-html-headline (headline contents info)
2421 "Transcode a HEADLINE element from Org to HTML.
2422 CONTENTS holds the contents of the headline. INFO is a plist
2423 holding contextual information."
2424 (unless (org-element-property :footnote-section-p headline)
2425 (let* ((numberedp (org-export-numbered-headline-p headline info))
2426 (numbers (org-export-get-headline-number headline info))
2427 (section-number (and numbers
2428 (mapconcat #'number-to-string numbers "-")))
2429 (level (+ (org-export-get-relative-level headline info)
2430 (1- (plist-get info :html-toplevel-hlevel))))
2431 (todo (and (plist-get info :with-todo-keywords)
2432 (let ((todo (org-element-property :todo-keyword headline)))
2433 (and todo (org-export-data todo info)))))
2434 (todo-type (and todo (org-element-property :todo-type headline)))
2435 (priority (and (plist-get info :with-priority)
2436 (org-element-property :priority headline)))
2437 (text (org-export-data (org-element-property :title headline) info))
2438 (tags (and (plist-get info :with-tags)
2439 (org-export-get-tags headline info)))
2440 (full-text (funcall (plist-get info :html-format-headline-function)
2441 todo todo-type priority text tags info))
2442 (contents (or contents ""))
2443 (ids (delq nil
2444 (list (org-element-property :CUSTOM_ID headline)
2445 (org-export-get-reference headline info)
2446 (org-element-property :ID headline))))
2447 (preferred-id (car ids))
2448 (extra-ids
2449 (mapconcat
2450 (lambda (id)
2451 (org-html--anchor
2452 (if (org-uuidgen-p id) (concat "ID-" id) id)
2453 nil nil info))
2454 (cdr ids) "")))
2455 (if (org-export-low-level-p headline info)
2456 ;; This is a deep sub-tree: export it as a list item.
2457 (let* ((type (if numberedp 'ordered 'unordered))
2458 (itemized-body
2459 (org-html-format-list-item
2460 contents type nil info nil
2461 (concat (org-html--anchor preferred-id nil nil info)
2462 extra-ids
2463 full-text))))
2464 (concat (and (org-export-first-sibling-p headline info)
2465 (org-html-begin-plain-list type))
2466 itemized-body
2467 (and (org-export-last-sibling-p headline info)
2468 (org-html-end-plain-list type))))
2469 (let ((extra-class (org-element-property :HTML_CONTAINER_CLASS headline))
2470 (first-content (car (org-element-contents headline))))
2471 ;; Standard headline. Export it as a section.
2472 (format "<%s id=\"%s\" class=\"%s\">%s%s</%s>\n"
2473 (org-html--container headline info)
2474 (concat "outline-container-"
2475 (org-export-get-reference headline info))
2476 (concat (format "outline-%d" level)
2477 (and extra-class " ")
2478 extra-class)
2479 (format "\n<h%d id=\"%s\">%s%s</h%d>\n"
2480 level
2481 preferred-id
2482 extra-ids
2483 (concat
2484 (and numberedp
2485 (format
2486 "<span class=\"section-number-%d\">%s</span> "
2487 level
2488 (mapconcat #'number-to-string numbers ".")))
2489 full-text)
2490 level)
2491 ;; When there is no section, pretend there is an
2492 ;; empty one to get the correct <div
2493 ;; class="outline-...> which is needed by
2494 ;; `org-info.js'.
2495 (if (eq (org-element-type first-content) 'section) contents
2496 (concat (org-html-section first-content "" info) contents))
2497 (org-html--container headline info)))))))
2499 (defun org-html-format-headline-default-function
2500 (todo todo-type priority text tags info)
2501 "Default format function for a headline.
2502 See `org-html-format-headline-function' for details."
2503 (let ((todo (org-html--todo todo info))
2504 (priority (org-html--priority priority info))
2505 (tags (org-html--tags tags info)))
2506 (concat todo (and todo " ")
2507 priority (and priority " ")
2508 text
2509 (and tags "&#xa0;&#xa0;&#xa0;") tags)))
2511 (defun org-html--container (headline info)
2512 (or (org-element-property :HTML_CONTAINER headline)
2513 (if (= 1 (org-export-get-relative-level headline info))
2514 (plist-get info :html-container)
2515 "div")))
2517 ;;;; Horizontal Rule
2519 (defun org-html-horizontal-rule (horizontal-rule contents info)
2520 "Transcode an HORIZONTAL-RULE object from Org to HTML.
2521 CONTENTS is nil. INFO is a plist holding contextual information."
2522 (org-html-close-tag "hr" nil info))
2524 ;;;; Inline Src Block
2526 (defun org-html-inline-src-block (inline-src-block contents info)
2527 "Transcode an INLINE-SRC-BLOCK element from Org to HTML.
2528 CONTENTS holds the contents of the item. INFO is a plist holding
2529 contextual information."
2530 (let ((lang (org-element-property :language inline-src-block))
2531 (code (org-html-format-code inline-src-block info))
2532 (label
2533 (let ((lbl (and (org-element-property :name inline-src-block)
2534 (org-export-get-reference inline-src-block info))))
2535 (if (not lbl) "" (format " id=\"%s\"" lbl)))))
2536 (format "<code class=\"src src-%s\"%s>%s</code>" lang label code)))
2538 ;;;; Inlinetask
2540 (defun org-html-inlinetask (inlinetask contents info)
2541 "Transcode an INLINETASK element from Org to HTML.
2542 CONTENTS holds the contents of the block. INFO is a plist
2543 holding contextual information."
2544 (let* ((todo (and (plist-get info :with-todo-keywords)
2545 (let ((todo (org-element-property :todo-keyword inlinetask)))
2546 (and todo (org-export-data todo info)))))
2547 (todo-type (and todo (org-element-property :todo-type inlinetask)))
2548 (priority (and (plist-get info :with-priority)
2549 (org-element-property :priority inlinetask)))
2550 (text (org-export-data (org-element-property :title inlinetask) info))
2551 (tags (and (plist-get info :with-tags)
2552 (org-export-get-tags inlinetask info))))
2553 (funcall (plist-get info :html-format-inlinetask-function)
2554 todo todo-type priority text tags contents info)))
2556 (defun org-html-format-inlinetask-default-function
2557 (todo todo-type priority text tags contents info)
2558 "Default format function for a inlinetasks.
2559 See `org-html-format-inlinetask-function' for details."
2560 (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
2561 (org-html-format-headline-default-function
2562 todo todo-type priority text tags info)
2563 (org-html-close-tag "br" nil info)
2564 contents))
2566 ;;;; Italic
2568 (defun org-html-italic (italic contents info)
2569 "Transcode ITALIC from Org to HTML.
2570 CONTENTS is the text with italic markup. INFO is a plist holding
2571 contextual information."
2572 (format
2573 (or (cdr (assq 'italic (plist-get info :html-text-markup-alist))) "%s")
2574 contents))
2576 ;;;; Item
2578 (defun org-html-checkbox (checkbox info)
2579 "Format CHECKBOX into HTML.
2580 INFO is a plist holding contextual information. See
2581 `org-html-checkbox-type' for customization options."
2582 (cdr (assq checkbox
2583 (cdr (assq (plist-get info :html-checkbox-type)
2584 org-html-checkbox-types)))))
2586 (defun org-html-format-list-item (contents type checkbox info
2587 &optional term-counter-id
2588 headline)
2589 "Format a list item into HTML."
2590 (let ((class (if checkbox
2591 (format " class=\"%s\""
2592 (symbol-name checkbox)) ""))
2593 (checkbox (concat (org-html-checkbox checkbox info)
2594 (and checkbox " ")))
2595 (br (org-html-close-tag "br" nil info)))
2596 (concat
2597 (case type
2598 (ordered
2599 (let* ((counter term-counter-id)
2600 (extra (if counter (format " value=\"%s\"" counter) "")))
2601 (concat
2602 (format "<li%s%s>" class extra)
2603 (when headline (concat headline br)))))
2604 (unordered
2605 (let* ((id term-counter-id)
2606 (extra (if id (format " id=\"%s\"" id) "")))
2607 (concat
2608 (format "<li%s%s>" class extra)
2609 (when headline (concat headline br)))))
2610 (descriptive
2611 (let* ((term term-counter-id))
2612 (setq term (or term "(no term)"))
2613 ;; Check-boxes in descriptive lists are associated to tag.
2614 (concat (format "<dt%s>%s</dt>"
2615 class (concat checkbox term))
2616 "<dd>"))))
2617 (unless (eq type 'descriptive) checkbox)
2618 (and contents (org-trim contents))
2619 (case type
2620 (ordered "</li>")
2621 (unordered "</li>")
2622 (descriptive "</dd>")))))
2624 (defun org-html-item (item contents info)
2625 "Transcode an ITEM element from Org to HTML.
2626 CONTENTS holds the contents of the item. INFO is a plist holding
2627 contextual information."
2628 (let* ((plain-list (org-export-get-parent item))
2629 (type (org-element-property :type plain-list))
2630 (counter (org-element-property :counter item))
2631 (checkbox (org-element-property :checkbox item))
2632 (tag (let ((tag (org-element-property :tag item)))
2633 (and tag (org-export-data tag info)))))
2634 (org-html-format-list-item
2635 contents type checkbox info (or tag counter))))
2637 ;;;; Keyword
2639 (defun org-html-keyword (keyword contents info)
2640 "Transcode a KEYWORD element from Org to HTML.
2641 CONTENTS is nil. INFO is a plist holding contextual information."
2642 (let ((key (org-element-property :key keyword))
2643 (value (org-element-property :value keyword)))
2644 (cond
2645 ((string= key "HTML") value)
2646 ((string= key "TOC")
2647 (let ((case-fold-search t))
2648 (cond
2649 ((string-match "\\<headlines\\>" value)
2650 (let ((depth (and (string-match "\\<[0-9]+\\>" value)
2651 (string-to-number (match-string 0 value))))
2652 (localp (org-string-match-p "\\<local\\>" value)))
2653 (org-html-toc depth info (and localp keyword))))
2654 ((string= "listings" value) (org-html-list-of-listings info))
2655 ((string= "tables" value) (org-html-list-of-tables info))))))))
2657 ;;;; Latex Environment
2659 (defun org-html-format-latex (latex-frag processing-type info)
2660 "Format a LaTeX fragment LATEX-FRAG into HTML.
2661 PROCESSING-TYPE designates the tool used for conversion. It is
2662 a symbol among `mathjax', `dvipng', `imagemagick', `verbatim' nil
2663 and t. See `org-html-with-latex' for more information. INFO is
2664 a plist containing export properties."
2665 (let ((cache-relpath "") (cache-dir ""))
2666 (unless (eq processing-type 'mathjax)
2667 (let ((bfn (or (buffer-file-name)
2668 (make-temp-name
2669 (expand-file-name "latex" temporary-file-directory))))
2670 (latex-header
2671 (let ((header (plist-get info :latex-header)))
2672 (and header
2673 (concat (mapconcat
2674 (lambda (line) (concat "#+LATEX_HEADER: " line))
2675 (org-split-string header "\n")
2676 "\n")
2677 "\n")))))
2678 (setq cache-relpath
2679 (concat "ltxpng/"
2680 (file-name-sans-extension
2681 (file-name-nondirectory bfn)))
2682 cache-dir (file-name-directory bfn))
2683 ;; Re-create LaTeX environment from original buffer in
2684 ;; temporary buffer so that dvipng/imagemagick can properly
2685 ;; turn the fragment into an image.
2686 (setq latex-frag (concat latex-header latex-frag))))
2687 (with-temp-buffer
2688 (insert latex-frag)
2689 (org-format-latex cache-relpath cache-dir nil "Creating LaTeX Image..."
2690 nil processing-type)
2691 (buffer-string))))
2693 (defun org-html-latex-environment (latex-environment contents info)
2694 "Transcode a LATEX-ENVIRONMENT element from Org to HTML.
2695 CONTENTS is nil. INFO is a plist holding contextual information."
2696 (let ((processing-type (plist-get info :with-latex))
2697 (latex-frag (org-remove-indentation
2698 (org-element-property :value latex-environment)))
2699 (attributes (org-export-read-attribute :attr_html latex-environment)))
2700 (case processing-type
2701 ((t mathjax)
2702 (org-html-format-latex latex-frag 'mathjax info))
2703 ((dvipng imagemagick)
2704 (let ((formula-link
2705 (org-html-format-latex latex-frag processing-type info)))
2706 (when (and formula-link (string-match "file:\\([^]]*\\)" formula-link))
2707 ;; Do not provide a caption or a name to be consistent with
2708 ;; `mathjax' handling.
2709 (org-html--wrap-image
2710 (org-html--format-image
2711 (match-string 1 formula-link) attributes info) info))))
2712 (t latex-frag))))
2714 ;;;; Latex Fragment
2716 (defun org-html-latex-fragment (latex-fragment contents info)
2717 "Transcode a LATEX-FRAGMENT object from Org to HTML.
2718 CONTENTS is nil. INFO is a plist holding contextual information."
2719 (let ((latex-frag (org-element-property :value latex-fragment))
2720 (processing-type (plist-get info :with-latex)))
2721 (case processing-type
2722 ((t mathjax)
2723 (org-html-format-latex latex-frag 'mathjax info))
2724 ((dvipng imagemagick)
2725 (let ((formula-link
2726 (org-html-format-latex latex-frag processing-type info)))
2727 (when (and formula-link (string-match "file:\\([^]]*\\)" formula-link))
2728 (org-html--format-image (match-string 1 formula-link) nil info))))
2729 (t latex-frag))))
2731 ;;;; Line Break
2733 (defun org-html-line-break (line-break contents info)
2734 "Transcode a LINE-BREAK object from Org to HTML.
2735 CONTENTS is nil. INFO is a plist holding contextual information."
2736 (concat (org-html-close-tag "br" nil info) "\n"))
2738 ;;;; Link
2740 (defun org-html-inline-image-p (link info)
2741 "Non-nil when LINK is meant to appear as an image.
2742 INFO is a plist used as a communication channel. LINK is an
2743 inline image when it has no description and targets an image
2744 file (see `org-html-inline-image-rules' for more information), or
2745 if its description is a single link targeting an image file."
2746 (if (not (org-element-contents link))
2747 (org-export-inline-image-p
2748 link (plist-get info :html-inline-image-rules))
2749 (not
2750 (let ((link-count 0))
2751 (org-element-map (org-element-contents link)
2752 (cons 'plain-text org-element-all-objects)
2753 (lambda (obj)
2754 (case (org-element-type obj)
2755 (plain-text (org-string-nw-p obj))
2756 (link (if (= link-count 1) t
2757 (incf link-count)
2758 (not (org-export-inline-image-p
2759 obj (plist-get info :html-inline-image-rules)))))
2760 (otherwise t)))
2761 info t)))))
2763 (defvar org-html-standalone-image-predicate)
2764 (defun org-html-standalone-image-p (element info)
2765 "Non-nil if ELEMENT is a standalone image.
2767 INFO is a plist holding contextual information.
2769 An element or object is a standalone image when
2771 - its type is `paragraph' and its sole content, save for white
2772 spaces, is a link that qualifies as an inline image;
2774 - its type is `link' and its containing paragraph has no other
2775 content save white spaces.
2777 Bind `org-html-standalone-image-predicate' to constrain paragraph
2778 further. For example, to check for only captioned standalone
2779 images, set it to:
2781 \(lambda (paragraph) (org-element-property :caption paragraph))"
2782 (let ((paragraph (case (org-element-type element)
2783 (paragraph element)
2784 (link (org-export-get-parent element)))))
2785 (and (eq (org-element-type paragraph) 'paragraph)
2786 (or (not (fboundp 'org-html-standalone-image-predicate))
2787 (funcall org-html-standalone-image-predicate paragraph))
2788 (catch 'exit
2789 (let ((link-count 0))
2790 (org-element-map (org-element-contents paragraph)
2791 (cons 'plain-text org-element-all-objects)
2792 #'(lambda (obj)
2793 (when (case (org-element-type obj)
2794 (plain-text (org-string-nw-p obj))
2795 (link (or (> (incf link-count) 1)
2796 (not (org-html-inline-image-p obj info))))
2797 (otherwise t))
2798 (throw 'exit nil)))
2799 info nil 'link)
2800 (= link-count 1))))))
2802 (defun org-html-link (link desc info)
2803 "Transcode a LINK object from Org to HTML.
2804 DESC is the description part of the link, or the empty string.
2805 INFO is a plist holding contextual information. See
2806 `org-export-data'."
2807 (let* ((home (when (plist-get info :html-link-home)
2808 (org-trim (plist-get info :html-link-home))))
2809 (use-abs-url (plist-get info :html-link-use-abs-url))
2810 (link-org-files-as-html-maybe
2811 (function
2812 (lambda (raw-path info)
2813 "Treat links to `file.org' as links to `file.html', if needed.
2814 See `org-html-link-org-files-as-html'."
2815 (cond
2816 ((and (plist-get info :html-link-org-files-as-html)
2817 (string= ".org"
2818 (downcase (file-name-extension raw-path "."))))
2819 (concat (file-name-sans-extension raw-path) "."
2820 (plist-get info :html-extension)))
2821 (t raw-path)))))
2822 (type (org-element-property :type link))
2823 (raw-path (org-element-property :path link))
2824 ;; Ensure DESC really exists, or set it to nil.
2825 (desc (org-string-nw-p desc))
2826 (path
2827 (cond
2828 ((member type '("http" "https" "ftp" "mailto"))
2829 (org-html-encode-plain-text
2830 (org-link-escape-browser
2831 (org-link-unescape (concat type ":" raw-path)))))
2832 ((string= type "file")
2833 ;; Treat links to ".org" files as ".html", if needed.
2834 (setq raw-path
2835 (funcall link-org-files-as-html-maybe raw-path info))
2836 ;; If file path is absolute, prepend it with protocol
2837 ;; component - "file://".
2838 (cond
2839 ((file-name-absolute-p raw-path)
2840 (setq raw-path (org-export-file-uri raw-path)))
2841 ((and home use-abs-url)
2842 (setq raw-path (concat (file-name-as-directory home) raw-path))))
2843 ;; Add search option, if any. A search option can be
2844 ;; relative to a custom-id, a headline title a name,
2845 ;; a target or a radio-target.
2846 (let ((option (org-element-property :search-option link)))
2847 (if (not option) raw-path
2848 (concat raw-path
2850 (org-publish-resolve-external-link
2851 option
2852 (org-element-property :path link))))))
2853 (t raw-path)))
2854 ;; Extract attributes from parent's paragraph. HACK: Only do
2855 ;; this for the first link in parent (inner image link for
2856 ;; inline images). This is needed as long as attributes
2857 ;; cannot be set on a per link basis.
2858 (attributes-plist
2859 (let* ((parent (org-export-get-parent-element link))
2860 (link (let ((container (org-export-get-parent link)))
2861 (if (and (eq (org-element-type container) 'link)
2862 (org-html-inline-image-p link info))
2863 container
2864 link))))
2865 (and (eq (org-element-map parent 'link 'identity info t) link)
2866 (org-export-read-attribute :attr_html parent))))
2867 (attributes
2868 (let ((attr (org-html--make-attribute-string attributes-plist)))
2869 (if (org-string-nw-p attr) (concat " " attr) ""))))
2870 (cond
2871 ;; Link type is handled by a special function.
2872 ((org-export-custom-protocol-maybe link desc 'html))
2873 ;; Image file.
2874 ((and (plist-get info :html-inline-images)
2875 (org-export-inline-image-p
2876 link (plist-get info :html-inline-image-rules)))
2877 (org-html--format-image path attributes-plist info))
2878 ;; Radio target: Transcode target's contents and use them as
2879 ;; link's description.
2880 ((string= type "radio")
2881 (let ((destination (org-export-resolve-radio-link link info)))
2882 (if (not destination) desc
2883 (format "<a href=\"#%s\"%s>%s</a>"
2884 (org-export-get-reference destination info)
2885 attributes
2886 desc))))
2887 ;; Links pointing to a headline: Find destination and build
2888 ;; appropriate referencing command.
2889 ((member type '("custom-id" "fuzzy" "id"))
2890 (let ((destination (if (string= type "fuzzy")
2891 (org-export-resolve-fuzzy-link link info)
2892 (org-export-resolve-id-link link info))))
2893 (case (org-element-type destination)
2894 ;; ID link points to an external file.
2895 (plain-text
2896 (let ((fragment (concat "ID-" path))
2897 ;; Treat links to ".org" files as ".html", if needed.
2898 (path (funcall link-org-files-as-html-maybe
2899 destination info)))
2900 (format "<a href=\"%s#%s\"%s>%s</a>"
2901 path fragment attributes (or desc destination))))
2902 ;; Fuzzy link points nowhere.
2903 ((nil)
2904 (format "<i>%s</i>"
2905 (or desc
2906 (org-export-data
2907 (org-element-property :raw-link link) info))))
2908 ;; Link points to a headline.
2909 (headline
2910 (let ((href (or (org-element-property :CUSTOM_ID destination)
2911 (org-export-get-reference destination info)))
2912 ;; What description to use?
2913 (desc
2914 ;; Case 1: Headline is numbered and LINK has no
2915 ;; description. Display section number.
2916 (if (and (org-export-numbered-headline-p destination info)
2917 (not desc))
2918 (mapconcat #'number-to-string
2919 (org-export-get-headline-number
2920 destination info) ".")
2921 ;; Case 2: Either the headline is un-numbered or
2922 ;; LINK has a custom description. Display LINK's
2923 ;; description or headline's title.
2924 (or desc
2925 (org-export-data
2926 (org-element-property :title destination) info)))))
2927 (format "<a href=\"#%s\"%s>%s</a>" href attributes desc)))
2928 ;; Fuzzy link points to a target or an element.
2930 (let* ((ref (org-export-get-reference destination info))
2931 (org-html-standalone-image-predicate
2932 #'org-html--has-caption-p)
2933 (number (cond
2934 (desc nil)
2935 ((org-html-standalone-image-p destination info)
2936 (org-export-get-ordinal
2937 (org-element-map destination 'link
2938 #'identity info t)
2939 info 'link 'org-html-standalone-image-p))
2940 (t (org-export-get-ordinal
2941 destination info nil 'org-html--has-caption-p))))
2942 (desc (cond (desc)
2943 ((not number) "No description for this link")
2944 ((numberp number) (number-to-string number))
2945 (t (mapconcat #'number-to-string number ".")))))
2946 (format "<a href=\"#%s\"%s>%s</a>" ref attributes desc))))))
2947 ;; Coderef: replace link with the reference name or the
2948 ;; equivalent line number.
2949 ((string= type "coderef")
2950 (let ((fragment (concat "coderef-" path)))
2951 (format "<a href=\"#%s\"%s%s>%s</a>"
2952 fragment
2953 (org-trim
2954 (format (concat "class=\"coderef\""
2955 " onmouseover=\"CodeHighlightOn(this, '%s');\""
2956 " onmouseout=\"CodeHighlightOff(this, '%s');\"")
2957 fragment fragment))
2958 attributes
2959 (format (org-export-get-coderef-format path desc)
2960 (org-export-resolve-coderef path info)))))
2961 ;; External link with a description part.
2962 ((and path desc) (format "<a href=\"%s\"%s>%s</a>" path attributes desc))
2963 ;; External link without a description part.
2964 (path (format "<a href=\"%s\"%s>%s</a>" path attributes path))
2965 ;; No path, only description. Try to do something useful.
2966 (t (format "<i>%s</i>" desc)))))
2968 ;;;; Node Property
2970 (defun org-html-node-property (node-property contents info)
2971 "Transcode a NODE-PROPERTY element from Org to HTML.
2972 CONTENTS is nil. INFO is a plist holding contextual
2973 information."
2974 (format "%s:%s"
2975 (org-element-property :key node-property)
2976 (let ((value (org-element-property :value node-property)))
2977 (if value (concat " " value) ""))))
2979 ;;;; Paragraph
2981 (defun org-html-paragraph (paragraph contents info)
2982 "Transcode a PARAGRAPH element from Org to HTML.
2983 CONTENTS is the contents of the paragraph, as a string. INFO is
2984 the plist used as a communication channel."
2985 (let* ((parent (org-export-get-parent paragraph))
2986 (parent-type (org-element-type parent))
2987 (style '((footnote-definition " class=\"footpara\"")
2988 (org-data " class=\"footpara\"")))
2989 (attributes (org-html--make-attribute-string
2990 (org-export-read-attribute :attr_html paragraph)))
2991 (extra (or (cadr (assq parent-type style)) "")))
2992 (cond
2993 ((and (eq parent-type 'item)
2994 (not (org-export-get-previous-element paragraph info))
2995 (let ((followers (org-export-get-next-element paragraph info 2)))
2996 (and (not (cdr followers))
2997 (memq (org-element-type (car followers)) '(nil plain-list)))))
2998 ;; First paragraph in an item has no tag if it is alone or
2999 ;; followed, at most, by a sub-list.
3000 contents)
3001 ((org-html-standalone-image-p paragraph info)
3002 ;; Standalone image.
3003 (let ((caption
3004 (let ((raw (org-export-data
3005 (org-export-get-caption paragraph) info))
3006 (org-html-standalone-image-predicate
3007 'org-html--has-caption-p))
3008 (if (not (org-string-nw-p raw)) raw
3009 (concat
3010 "<span class=\"figure-number\">"
3011 (format (org-html--translate "Figure %d:" info)
3012 (org-export-get-ordinal
3013 (org-element-map paragraph 'link
3014 'identity info t)
3015 info nil 'org-html-standalone-image-p))
3016 "</span> " raw))))
3017 (label (and (org-element-property :name paragraph)
3018 (org-export-get-reference paragraph info))))
3019 (org-html--wrap-image contents info caption label)))
3020 ;; Regular paragraph.
3021 (t (format "<p%s%s>\n%s</p>"
3022 (if (org-string-nw-p attributes)
3023 (concat " " attributes) "")
3024 extra contents)))))
3026 ;;;; Plain List
3028 ;; FIXME Maybe arg1 is not needed because <li value="20"> already sets
3029 ;; the correct value for the item counter
3030 (defun org-html-begin-plain-list (type &optional arg1)
3031 "Insert the beginning of the HTML list depending on TYPE.
3032 When ARG1 is a string, use it as the start parameter for ordered
3033 lists."
3034 (case type
3035 (ordered
3036 (format "<ol class=\"org-ol\"%s>"
3037 (if arg1 (format " start=\"%d\"" arg1) "")))
3038 (unordered "<ul class=\"org-ul\">")
3039 (descriptive "<dl class=\"org-dl\">")))
3041 (defun org-html-end-plain-list (type)
3042 "Insert the end of the HTML list depending on TYPE."
3043 (case type
3044 (ordered "</ol>")
3045 (unordered "</ul>")
3046 (descriptive "</dl>")))
3048 (defun org-html-plain-list (plain-list contents info)
3049 "Transcode a PLAIN-LIST element from Org to HTML.
3050 CONTENTS is the contents of the list. INFO is a plist holding
3051 contextual information."
3052 (let* (arg1 ;; (assoc :counter (org-element-map plain-list 'item
3053 (type (org-element-property :type plain-list)))
3054 (format "%s\n%s%s"
3055 (org-html-begin-plain-list type)
3056 contents (org-html-end-plain-list type))))
3058 ;;;; Plain Text
3060 (defun org-html-convert-special-strings (string)
3061 "Convert special characters in STRING to HTML."
3062 (let ((all org-html-special-string-regexps)
3063 e a re rpl start)
3064 (while (setq a (pop all))
3065 (setq re (car a) rpl (cdr a) start 0)
3066 (while (string-match re string start)
3067 (setq string (replace-match rpl t nil string))))
3068 string))
3070 (defun org-html-encode-plain-text (text)
3071 "Convert plain text characters from TEXT to HTML equivalent.
3072 Possible conversions are set in `org-html-protect-char-alist'."
3073 (dolist (pair org-html-protect-char-alist text)
3074 (setq text (replace-regexp-in-string (car pair) (cdr pair) text t t))))
3076 (defun org-html-plain-text (text info)
3077 "Transcode a TEXT string from Org to HTML.
3078 TEXT is the string to transcode. INFO is a plist holding
3079 contextual information."
3080 (let ((output text))
3081 ;; Protect following characters: <, >, &.
3082 (setq output (org-html-encode-plain-text output))
3083 ;; Handle smart quotes. Be sure to provide original string since
3084 ;; OUTPUT may have been modified.
3085 (when (plist-get info :with-smart-quotes)
3086 (setq output (org-export-activate-smart-quotes output :html info text)))
3087 ;; Handle special strings.
3088 (when (plist-get info :with-special-strings)
3089 (setq output (org-html-convert-special-strings output)))
3090 ;; Handle break preservation if required.
3091 (when (plist-get info :preserve-breaks)
3092 (setq output
3093 (replace-regexp-in-string
3094 "\\(\\\\\\\\\\)?[ \t]*\n"
3095 (concat (org-html-close-tag "br" nil info) "\n") output)))
3096 ;; Return value.
3097 output))
3100 ;; Planning
3102 (defun org-html-planning (planning contents info)
3103 "Transcode a PLANNING element from Org to HTML.
3104 CONTENTS is nil. INFO is a plist used as a communication
3105 channel."
3106 (let ((span-fmt "<span class=\"timestamp-kwd\">%s</span> <span class=\"timestamp\">%s</span>"))
3107 (format
3108 "<p><span class=\"timestamp-wrapper\">%s</span></p>"
3109 (mapconcat
3110 'identity
3111 (delq nil
3112 (list
3113 (let ((closed (org-element-property :closed planning)))
3114 (when closed
3115 (format span-fmt org-closed-string
3116 (org-timestamp-translate closed))))
3117 (let ((deadline (org-element-property :deadline planning)))
3118 (when deadline
3119 (format span-fmt org-deadline-string
3120 (org-timestamp-translate deadline))))
3121 (let ((scheduled (org-element-property :scheduled planning)))
3122 (when scheduled
3123 (format span-fmt org-scheduled-string
3124 (org-timestamp-translate scheduled))))))
3125 " "))))
3127 ;;;; Property Drawer
3129 (defun org-html-property-drawer (property-drawer contents info)
3130 "Transcode a PROPERTY-DRAWER element from Org to HTML.
3131 CONTENTS holds the contents of the drawer. INFO is a plist
3132 holding contextual information."
3133 (and (org-string-nw-p contents)
3134 (format "<pre class=\"example\">\n%s</pre>" contents)))
3136 ;;;; Quote Block
3138 (defun org-html-quote-block (quote-block contents info)
3139 "Transcode a QUOTE-BLOCK element from Org to HTML.
3140 CONTENTS holds the contents of the block. INFO is a plist
3141 holding contextual information."
3142 (format "<blockquote>\n%s</blockquote>" contents))
3144 ;;;; Section
3146 (defun org-html-section (section contents info)
3147 "Transcode a SECTION element from Org to HTML.
3148 CONTENTS holds the contents of the section. INFO is a plist
3149 holding contextual information."
3150 (let ((parent (org-export-get-parent-headline section)))
3151 ;; Before first headline: no container, just return CONTENTS.
3152 (if (not parent) contents
3153 ;; Get div's class and id references.
3154 (let* ((class-num (+ (org-export-get-relative-level parent info)
3155 (1- (plist-get info :html-toplevel-hlevel))))
3156 (section-number
3157 (and (org-export-numbered-headline-p parent info)
3158 (mapconcat
3159 #'number-to-string
3160 (org-export-get-headline-number parent info) "-"))))
3161 ;; Build return value.
3162 (format "<div class=\"outline-text-%d\" id=\"text-%s\">\n%s</div>"
3163 class-num
3164 (or (org-element-property :CUSTOM_ID parent)
3165 section-number
3166 (org-export-get-reference parent info))
3167 (or contents ""))))))
3169 ;;;; Radio Target
3171 (defun org-html-radio-target (radio-target text info)
3172 "Transcode a RADIO-TARGET object from Org to HTML.
3173 TEXT is the text of the target. INFO is a plist holding
3174 contextual information."
3175 (let ((ref (org-export-get-reference radio-target info)))
3176 (org-html--anchor ref text nil info)))
3178 ;;;; Special Block
3180 (defun org-html-special-block (special-block contents info)
3181 "Transcode a SPECIAL-BLOCK element from Org to HTML.
3182 CONTENTS holds the contents of the block. INFO is a plist
3183 holding contextual information."
3184 (let* ((block-type (org-element-property :type special-block))
3185 (contents (or contents ""))
3186 (html5-fancy (and (org-html-html5-p info)
3187 (plist-get info :html-html5-fancy)
3188 (member block-type org-html-html5-elements)))
3189 (attributes (org-export-read-attribute :attr_html special-block)))
3190 (unless html5-fancy
3191 (let ((class (plist-get attributes :class)))
3192 (setq attributes (plist-put attributes :class
3193 (if class (concat class " " block-type)
3194 block-type)))))
3195 (setq attributes (org-html--make-attribute-string attributes))
3196 (when (not (equal attributes ""))
3197 (setq attributes (concat " " attributes)))
3198 (if html5-fancy
3199 (format "<%s%s>\n%s</%s>" block-type attributes
3200 contents block-type)
3201 (format "<div%s>\n%s\n</div>" attributes contents))))
3203 ;;;; Src Block
3205 (defun org-html-src-block (src-block contents info)
3206 "Transcode a SRC-BLOCK element from Org to HTML.
3207 CONTENTS holds the contents of the item. INFO is a plist holding
3208 contextual information."
3209 (if (org-export-read-attribute :attr_html src-block :textarea)
3210 (org-html--textarea-block src-block)
3211 (let ((lang (org-element-property :language src-block))
3212 (caption (org-export-get-caption src-block))
3213 (code (org-html-format-code src-block info))
3214 (label (let ((lbl (and (org-element-property :name src-block)
3215 (org-export-get-reference src-block info))))
3216 (if lbl (format " id=\"%s\"" lbl) ""))))
3217 (if (not lang) (format "<pre class=\"example\"%s>\n%s</pre>" label code)
3218 (format
3219 "<div class=\"org-src-container\">\n%s%s\n</div>"
3220 (if (not caption) ""
3221 (format "<label class=\"org-src-name\">%s</label>"
3222 (org-export-data caption info)))
3223 (format "\n<pre class=\"src src-%s\"%s>%s</pre>" lang label code))))))
3225 ;;;; Statistics Cookie
3227 (defun org-html-statistics-cookie (statistics-cookie contents info)
3228 "Transcode a STATISTICS-COOKIE object from Org to HTML.
3229 CONTENTS is nil. INFO is a plist holding contextual information."
3230 (let ((cookie-value (org-element-property :value statistics-cookie)))
3231 (format "<code>%s</code>" cookie-value)))
3233 ;;;; Strike-Through
3235 (defun org-html-strike-through (strike-through contents info)
3236 "Transcode STRIKE-THROUGH from Org to HTML.
3237 CONTENTS is the text with strike-through markup. INFO is a plist
3238 holding contextual information."
3239 (format
3240 (or (cdr (assq 'strike-through (plist-get info :html-text-markup-alist)))
3241 "%s")
3242 contents))
3244 ;;;; Subscript
3246 (defun org-html-subscript (subscript contents info)
3247 "Transcode a SUBSCRIPT object from Org to HTML.
3248 CONTENTS is the contents of the object. INFO is a plist holding
3249 contextual information."
3250 (format "<sub>%s</sub>" contents))
3252 ;;;; Superscript
3254 (defun org-html-superscript (superscript contents info)
3255 "Transcode a SUPERSCRIPT object from Org to HTML.
3256 CONTENTS is the contents of the object. INFO is a plist holding
3257 contextual information."
3258 (format "<sup>%s</sup>" contents))
3260 ;;;; Table Cell
3262 (defun org-html-table-cell (table-cell contents info)
3263 "Transcode a TABLE-CELL element from Org to HTML.
3264 CONTENTS is nil. INFO is a plist used as a communication
3265 channel."
3266 (let* ((table-row (org-export-get-parent table-cell))
3267 (table (org-export-get-parent-table table-cell))
3268 (cell-attrs
3269 (if (not (plist-get info :html-table-align-individual-fields)) ""
3270 (format (if (and (boundp 'org-html-format-table-no-css)
3271 org-html-format-table-no-css)
3272 " align=\"%s\"" " class=\"org-%s\"")
3273 (org-export-table-cell-alignment table-cell info)))))
3274 (when (or (not contents) (string= "" (org-trim contents)))
3275 (setq contents "&#xa0;"))
3276 (cond
3277 ((and (org-export-table-has-header-p table info)
3278 (= 1 (org-export-table-row-group table-row info)))
3279 (let ((header-tags (plist-get info :html-table-header-tags)))
3280 (concat "\n" (format (car header-tags) "col" cell-attrs)
3281 contents
3282 (cdr header-tags))))
3283 ((and (plist-get info :html-table-use-header-tags-for-first-column)
3284 (zerop (cdr (org-export-table-cell-address table-cell info))))
3285 (let ((header-tags (plist-get info :html-table-header-tags)))
3286 (concat "\n" (format (car header-tags) "row" cell-attrs)
3287 contents
3288 (cdr header-tags))))
3289 (t (let ((data-tags (plist-get info :html-table-data-tags)))
3290 (concat "\n" (format (car data-tags) cell-attrs)
3291 contents
3292 (cdr data-tags)))))))
3294 ;;;; Table Row
3296 (defun org-html-table-row (table-row contents info)
3297 "Transcode a TABLE-ROW element from Org to HTML.
3298 CONTENTS is the contents of the row. INFO is a plist used as a
3299 communication channel."
3300 ;; Rules are ignored since table separators are deduced from
3301 ;; borders of the current row.
3302 (when (eq (org-element-property :type table-row) 'standard)
3303 (let* ((rowgroup-number (org-export-table-row-group table-row info))
3304 (row-number (org-export-table-row-number table-row info))
3305 (start-rowgroup-p
3306 (org-export-table-row-starts-rowgroup-p table-row info))
3307 (end-rowgroup-p
3308 (org-export-table-row-ends-rowgroup-p table-row info))
3309 ;; `top-row-p' and `end-rowgroup-p' are not used directly
3310 ;; but should be set so that `org-html-table-row-tags' can
3311 ;; use them (see the docstring of this variable.)
3312 (top-row-p (and (equal start-rowgroup-p '(top))
3313 (equal end-rowgroup-p '(below top))))
3314 (bottom-row-p (and (equal start-rowgroup-p '(above))
3315 (equal end-rowgroup-p '(bottom above))))
3316 (rowgroup-tags
3317 (cond
3318 ;; Case 1: Row belongs to second or subsequent rowgroups.
3319 ((not (= 1 rowgroup-number))
3320 '("<tbody>" . "\n</tbody>"))
3321 ;; Case 2: Row is from first rowgroup. Table has >=1 rowgroups.
3322 ((org-export-table-has-header-p
3323 (org-export-get-parent-table table-row) info)
3324 '("<thead>" . "\n</thead>"))
3325 ;; Case 2: Row is from first and only row group.
3326 (t '("<tbody>" . "\n</tbody>")))))
3327 (concat
3328 ;; Begin a rowgroup?
3329 (when start-rowgroup-p (car rowgroup-tags))
3330 ;; Actual table row
3331 (concat "\n" (eval (car (plist-get info :html-table-row-tags)))
3332 contents
3333 "\n"
3334 (eval (cdr (plist-get info :html-table-row-tags))))
3335 ;; End a rowgroup?
3336 (when end-rowgroup-p (cdr rowgroup-tags))))))
3338 ;;;; Table
3340 (defun org-html-table-first-row-data-cells (table info)
3341 "Transcode the first row of TABLE.
3342 INFO is a plist used as a communication channel."
3343 (let ((table-row
3344 (org-element-map table 'table-row
3345 (lambda (row)
3346 (unless (eq (org-element-property :type row) 'rule) row))
3347 info 'first-match))
3348 (special-column-p (org-export-table-has-special-column-p table)))
3349 (if (not special-column-p) (org-element-contents table-row)
3350 (cdr (org-element-contents table-row)))))
3352 (defun org-html-table--table.el-table (table info)
3353 "Format table.el tables into HTML.
3354 INFO is a plist used as a communication channel."
3355 (when (eq (org-element-property :type table) 'table.el)
3356 (require 'table)
3357 (let ((outbuf (with-current-buffer
3358 (get-buffer-create "*org-export-table*")
3359 (erase-buffer) (current-buffer))))
3360 (with-temp-buffer
3361 (insert (org-element-property :value table))
3362 (goto-char 1)
3363 (re-search-forward "^[ \t]*|[^|]" nil t)
3364 (table-generate-source 'html outbuf))
3365 (with-current-buffer outbuf
3366 (prog1 (org-trim (buffer-string))
3367 (kill-buffer) )))))
3369 (defun org-html-table (table contents info)
3370 "Transcode a TABLE element from Org to HTML.
3371 CONTENTS is the contents of the table. INFO is a plist holding
3372 contextual information."
3373 (case (org-element-property :type table)
3374 ;; Case 1: table.el table. Convert it using appropriate tools.
3375 (table.el (org-html-table--table.el-table table info))
3376 ;; Case 2: Standard table.
3378 (let* ((caption (org-export-get-caption table))
3379 (number (org-export-get-ordinal
3380 table info nil #'org-html--has-caption-p))
3381 (attributes
3382 (org-html--make-attribute-string
3383 (org-combine-plists
3384 (and (org-element-property :name table)
3385 (list :id (org-export-get-reference table info)))
3386 (and (not (org-html-html5-p info))
3387 (plist-get info :html-table-attributes))
3388 (org-export-read-attribute :attr_html table))))
3389 (alignspec
3390 (if (and (boundp 'org-html-format-table-no-css)
3391 org-html-format-table-no-css)
3392 "align=\"%s\"" "class=\"org-%s\""))
3393 (table-column-specs
3394 (function
3395 (lambda (table info)
3396 (mapconcat
3397 (lambda (table-cell)
3398 (let ((alignment (org-export-table-cell-alignment
3399 table-cell info)))
3400 (concat
3401 ;; Begin a colgroup?
3402 (when (org-export-table-cell-starts-colgroup-p
3403 table-cell info)
3404 "\n<colgroup>")
3405 ;; Add a column. Also specify it's alignment.
3406 (format "\n%s"
3407 (org-html-close-tag
3408 "col" (concat " " (format alignspec alignment)) info))
3409 ;; End a colgroup?
3410 (when (org-export-table-cell-ends-colgroup-p
3411 table-cell info)
3412 "\n</colgroup>"))))
3413 (org-html-table-first-row-data-cells table info) "\n")))))
3414 (format "<table%s>\n%s\n%s\n%s</table>"
3415 (if (equal attributes "") "" (concat " " attributes))
3416 (if (not caption) ""
3417 (format (if (plist-get info :html-table-caption-above)
3418 "<caption class=\"t-above\">%s</caption>"
3419 "<caption class=\"t-bottom\">%s</caption>")
3420 (concat
3421 "<span class=\"table-number\">"
3422 (format (org-html--translate "Table %d:" info) number)
3423 "</span> " (org-export-data caption info))))
3424 (funcall table-column-specs table info)
3425 contents)))))
3427 ;;;; Target
3429 (defun org-html-target (target contents info)
3430 "Transcode a TARGET object from Org to HTML.
3431 CONTENTS is nil. INFO is a plist holding contextual
3432 information."
3433 (let ((ref (org-export-get-reference target info)))
3434 (org-html--anchor ref nil nil info)))
3436 ;;;; Timestamp
3438 (defun org-html-timestamp (timestamp contents info)
3439 "Transcode a TIMESTAMP object from Org to HTML.
3440 CONTENTS is nil. INFO is a plist holding contextual
3441 information."
3442 (let ((value (org-html-plain-text (org-timestamp-translate timestamp) info)))
3443 (format "<span class=\"timestamp-wrapper\"><span class=\"timestamp\">%s</span></span>"
3444 (replace-regexp-in-string "--" "&#x2013;" value))))
3446 ;;;; Underline
3448 (defun org-html-underline (underline contents info)
3449 "Transcode UNDERLINE from Org to HTML.
3450 CONTENTS is the text with underline markup. INFO is a plist
3451 holding contextual information."
3452 (format (or (cdr (assq 'underline (plist-get info :html-text-markup-alist)))
3453 "%s")
3454 contents))
3456 ;;;; Verbatim
3458 (defun org-html-verbatim (verbatim contents info)
3459 "Transcode VERBATIM from Org to HTML.
3460 CONTENTS is nil. INFO is a plist holding contextual
3461 information."
3462 (format (or (cdr (assq 'verbatim (plist-get info :html-text-markup-alist))) "%s")
3463 (org-html-encode-plain-text (org-element-property :value verbatim))))
3465 ;;;; Verse Block
3467 (defun org-html-verse-block (verse-block contents info)
3468 "Transcode a VERSE-BLOCK element from Org to HTML.
3469 CONTENTS is verse block contents. INFO is a plist holding
3470 contextual information."
3471 ;; Replace each newline character with line break. Also replace
3472 ;; each blank line with a line break.
3473 (setq contents (replace-regexp-in-string
3474 "^ *\\\\\\\\$" (format "%s\n" (org-html-close-tag "br" nil info))
3475 (replace-regexp-in-string
3476 "\\(\\\\\\\\\\)?[ \t]*\n"
3477 (format "%s\n" (org-html-close-tag "br" nil info)) contents)))
3478 ;; Replace each white space at beginning of a line with a
3479 ;; non-breaking space.
3480 (while (string-match "^[ \t]+" contents)
3481 (let* ((num-ws (length (match-string 0 contents)))
3482 (ws (let (out) (dotimes (i num-ws out)
3483 (setq out (concat out "&#xa0;"))))))
3484 (setq contents (replace-match ws nil t contents))))
3485 (format "<p class=\"verse\">\n%s</p>" contents))
3488 ;;; Filter Functions
3490 (defun org-html-final-function (contents backend info)
3491 "Filter to indent the HTML and convert HTML entities."
3492 (with-temp-buffer
3493 (insert contents)
3494 (set-auto-mode t)
3495 (if (plist-get info :html-indent)
3496 (indent-region (point-min) (point-max)))
3497 (when (plist-get info :html-use-unicode-chars)
3498 (require 'mm-url)
3499 (mm-url-decode-entities))
3500 (buffer-substring-no-properties (point-min) (point-max))))
3503 ;;; End-user functions
3505 ;;;###autoload
3506 (defun org-html-export-as-html
3507 (&optional async subtreep visible-only body-only ext-plist)
3508 "Export current buffer to an HTML buffer.
3510 If narrowing is active in the current buffer, only export its
3511 narrowed part.
3513 If a region is active, export that region.
3515 A non-nil optional argument ASYNC means the process should happen
3516 asynchronously. The resulting buffer should be accessible
3517 through the `org-export-stack' interface.
3519 When optional argument SUBTREEP is non-nil, export the sub-tree
3520 at point, extracting information from the headline properties
3521 first.
3523 When optional argument VISIBLE-ONLY is non-nil, don't export
3524 contents of hidden elements.
3526 When optional argument BODY-ONLY is non-nil, only write code
3527 between \"<body>\" and \"</body>\" tags.
3529 EXT-PLIST, when provided, is a property list with external
3530 parameters overriding Org default settings, but still inferior to
3531 file-local settings.
3533 Export is done in a buffer named \"*Org HTML Export*\", which
3534 will be displayed when `org-export-show-temporary-export-buffer'
3535 is non-nil."
3536 (interactive)
3537 (org-export-to-buffer 'html "*Org HTML Export*"
3538 async subtreep visible-only body-only ext-plist
3539 (lambda () (set-auto-mode t))))
3541 ;;;###autoload
3542 (defun org-html-convert-region-to-html ()
3543 "Assume the current region has org-mode syntax, and convert it to HTML.
3544 This can be used in any buffer. For example, you can write an
3545 itemized list in org-mode syntax in an HTML buffer and use this
3546 command to convert it."
3547 (interactive)
3548 (org-export-replace-region-by 'html))
3550 ;;;###autoload
3551 (defun org-html-export-to-html
3552 (&optional async subtreep visible-only body-only ext-plist)
3553 "Export current buffer to a HTML file.
3555 If narrowing is active in the current buffer, only export its
3556 narrowed part.
3558 If a region is active, export that region.
3560 A non-nil optional argument ASYNC means the process should happen
3561 asynchronously. The resulting file should be accessible through
3562 the `org-export-stack' interface.
3564 When optional argument SUBTREEP is non-nil, export the sub-tree
3565 at point, extracting information from the headline properties
3566 first.
3568 When optional argument VISIBLE-ONLY is non-nil, don't export
3569 contents of hidden elements.
3571 When optional argument BODY-ONLY is non-nil, only write code
3572 between \"<body>\" and \"</body>\" tags.
3574 EXT-PLIST, when provided, is a property list with external
3575 parameters overriding Org default settings, but still inferior to
3576 file-local settings.
3578 Return output file's name."
3579 (interactive)
3580 (let* ((extension (concat "." (or (plist-get ext-plist :html-extension)
3581 org-html-extension
3582 "html")))
3583 (file (org-export-output-file-name extension subtreep))
3584 (org-export-coding-system org-html-coding-system))
3585 (org-export-to-file 'html file
3586 async subtreep visible-only body-only ext-plist)))
3588 ;;;###autoload
3589 (defun org-html-publish-to-html (plist filename pub-dir)
3590 "Publish an org file to HTML.
3592 FILENAME is the filename of the Org file to be published. PLIST
3593 is the property list for the given project. PUB-DIR is the
3594 publishing directory.
3596 Return output file name."
3597 (org-publish-org-to 'html filename
3598 (concat "." (or (plist-get plist :html-extension)
3599 org-html-extension
3600 "html"))
3601 plist pub-dir))
3604 (provide 'ox-html)
3606 ;; Local variables:
3607 ;; generated-autoload-file: "org-loaddefs.el"
3608 ;; End:
3610 ;;; ox-html.el ends here