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