ox: Resurrect :input-buffer property
[org-mode/org-tableheadings.git] / lisp / ox.el
blob90c623e21532758cf50be8557f5cdc9d31d92e48
1 ;;; ox.el --- Generic Export Engine for Org Mode
3 ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; This library implements a generic export engine for Org, built on
26 ;; its syntactical parser: Org Elements.
28 ;; Besides that parser, the generic exporter is made of three distinct
29 ;; parts:
31 ;; - The communication channel consists in a property list, which is
32 ;; created and updated during the process. Its use is to offer
33 ;; every piece of information, would it be about initial environment
34 ;; or contextual data, all in a single place. The exhaustive list
35 ;; of properties is given in "The Communication Channel" section of
36 ;; this file.
38 ;; - The transcoder walks the parse tree, ignores or treat as plain
39 ;; text elements and objects according to export options, and
40 ;; eventually calls back-end specific functions to do the real
41 ;; transcoding, concatenating their return value along the way.
43 ;; - The filter system is activated at the very beginning and the very
44 ;; end of the export process, and each time an element or an object
45 ;; has been converted. It is the entry point to fine-tune standard
46 ;; output from back-end transcoders. See "The Filter System"
47 ;; section for more information.
49 ;; The core function is `org-export-as'. It returns the transcoded
50 ;; buffer as a string.
52 ;; An export back-end is defined with `org-export-define-backend'.
53 ;; This function can also support specific buffer keywords, OPTION
54 ;; keyword's items and filters. Refer to function's documentation for
55 ;; more information.
57 ;; If the new back-end shares most properties with another one,
58 ;; `org-export-define-derived-backend' can be used to simplify the
59 ;; process.
61 ;; Any back-end can define its own variables. Among them, those
62 ;; customizable should belong to the `org-export-BACKEND' group.
64 ;; Tools for common tasks across back-ends are implemented in the
65 ;; following part of the file.
67 ;; Then, a wrapper macro for asynchronous export,
68 ;; `org-export-async-start', along with tools to display results. are
69 ;; given in the penultimate part.
71 ;; Eventually, a dispatcher (`org-export-dispatch') for standard
72 ;; back-ends is provided in the last one.
74 ;;; Code:
76 (eval-when-compile (require 'cl))
77 (require 'org-element)
78 (require 'org-macro)
79 (require 'ob-exp)
81 (declare-function org-publish "ox-publish" (project &optional force async))
82 (declare-function org-publish-all "ox-publish" (&optional force async))
83 (declare-function
84 org-publish-current-file "ox-publish" (&optional force async))
85 (declare-function org-publish-current-project "ox-publish"
86 (&optional force async))
88 (defvar org-publish-project-alist)
89 (defvar org-table-number-fraction)
90 (defvar org-table-number-regexp)
93 ;;; Internal Variables
95 ;; Among internal variables, the most important is
96 ;; `org-export-options-alist'. This variable define the global export
97 ;; options, shared between every exporter, and how they are acquired.
99 (defconst org-export-max-depth 19
100 "Maximum nesting depth for headlines, counting from 0.")
102 (defconst org-export-options-alist
103 '((:title "TITLE" nil nil space)
104 (:date "DATE" nil nil t)
105 (:author "AUTHOR" nil user-full-name t)
106 (:email "EMAIL" nil user-mail-address t)
107 (:description "DESCRIPTION" nil nil newline)
108 (:keywords "KEYWORDS" nil nil space)
109 (:language "LANGUAGE" nil org-export-default-language t)
110 (:select-tags "SELECT_TAGS" nil org-export-select-tags split)
111 (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split)
112 (:creator "CREATOR" nil org-export-creator-string)
113 (:headline-levels nil "H" org-export-headline-levels)
114 (:preserve-breaks nil "\\n" org-export-preserve-breaks)
115 (:section-numbers nil "num" org-export-with-section-numbers)
116 (:time-stamp-file nil "timestamp" org-export-time-stamp-file)
117 (:with-archived-trees nil "arch" org-export-with-archived-trees)
118 (:with-author nil "author" org-export-with-author)
119 (:with-clocks nil "c" org-export-with-clocks)
120 (:with-creator nil "creator" org-export-with-creator)
121 (:with-date nil "date" org-export-with-date)
122 (:with-drawers nil "d" org-export-with-drawers)
123 (:with-email nil "email" org-export-with-email)
124 (:with-emphasize nil "*" org-export-with-emphasize)
125 (:with-entities nil "e" org-export-with-entities)
126 (:with-fixed-width nil ":" org-export-with-fixed-width)
127 (:with-footnotes nil "f" org-export-with-footnotes)
128 (:with-inlinetasks nil "inline" org-export-with-inlinetasks)
129 (:with-latex nil "tex" org-export-with-latex)
130 (:with-planning nil "p" org-export-with-planning)
131 (:with-priority nil "pri" org-export-with-priority)
132 (:with-properties nil "prop" org-export-with-properties)
133 (:with-smart-quotes nil "'" org-export-with-smart-quotes)
134 (:with-special-strings nil "-" org-export-with-special-strings)
135 (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies)
136 (:with-sub-superscript nil "^" org-export-with-sub-superscripts)
137 (:with-toc nil "toc" org-export-with-toc)
138 (:with-tables nil "|" org-export-with-tables)
139 (:with-tags nil "tags" org-export-with-tags)
140 (:with-tasks nil "tasks" org-export-with-tasks)
141 (:with-timestamps nil "<" org-export-with-timestamps)
142 (:with-todo-keywords nil "todo" org-export-with-todo-keywords))
143 "Alist between export properties and ways to set them.
145 The CAR of the alist is the property name, and the CDR is a list
146 like (KEYWORD OPTION DEFAULT BEHAVIOR) where:
148 KEYWORD is a string representing a buffer keyword, or nil. Each
149 property defined this way can also be set, during subtree
150 export, through a headline property named after the keyword
151 with the \"EXPORT_\" prefix (i.e. DATE keyword and EXPORT_DATE
152 property).
153 OPTION is a string that could be found in an #+OPTIONS: line.
154 DEFAULT is the default value for the property.
155 BEHAVIOR determines how Org should handle multiple keywords for
156 the same property. It is a symbol among:
157 nil Keep old value and discard the new one.
158 t Replace old value with the new one.
159 `space' Concatenate the values, separating them with a space.
160 `newline' Concatenate the values, separating them with
161 a newline.
162 `split' Split values at white spaces, and cons them to the
163 previous list.
165 Values set through KEYWORD and OPTION have precedence over
166 DEFAULT.
168 All these properties should be back-end agnostic. Back-end
169 specific properties are set through `org-export-define-backend'.
170 Properties redefined there have precedence over these.")
172 (defconst org-export-special-keywords '("FILETAGS" "SETUPFILE" "OPTIONS")
173 "List of in-buffer keywords that require special treatment.
174 These keywords are not directly associated to a property. The
175 way they are handled must be hard-coded into
176 `org-export--get-inbuffer-options' function.")
178 (defconst org-export-filters-alist
179 '((:filter-body . org-export-filter-body-functions)
180 (:filter-bold . org-export-filter-bold-functions)
181 (:filter-babel-call . org-export-filter-babel-call-functions)
182 (:filter-center-block . org-export-filter-center-block-functions)
183 (:filter-clock . org-export-filter-clock-functions)
184 (:filter-code . org-export-filter-code-functions)
185 (:filter-comment . org-export-filter-comment-functions)
186 (:filter-comment-block . org-export-filter-comment-block-functions)
187 (:filter-diary-sexp . org-export-filter-diary-sexp-functions)
188 (:filter-drawer . org-export-filter-drawer-functions)
189 (:filter-dynamic-block . org-export-filter-dynamic-block-functions)
190 (:filter-entity . org-export-filter-entity-functions)
191 (:filter-example-block . org-export-filter-example-block-functions)
192 (:filter-export-block . org-export-filter-export-block-functions)
193 (:filter-export-snippet . org-export-filter-export-snippet-functions)
194 (:filter-final-output . org-export-filter-final-output-functions)
195 (:filter-fixed-width . org-export-filter-fixed-width-functions)
196 (:filter-footnote-definition . org-export-filter-footnote-definition-functions)
197 (:filter-footnote-reference . org-export-filter-footnote-reference-functions)
198 (:filter-headline . org-export-filter-headline-functions)
199 (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions)
200 (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions)
201 (:filter-inline-src-block . org-export-filter-inline-src-block-functions)
202 (:filter-inlinetask . org-export-filter-inlinetask-functions)
203 (:filter-italic . org-export-filter-italic-functions)
204 (:filter-item . org-export-filter-item-functions)
205 (:filter-keyword . org-export-filter-keyword-functions)
206 (:filter-latex-environment . org-export-filter-latex-environment-functions)
207 (:filter-latex-fragment . org-export-filter-latex-fragment-functions)
208 (:filter-line-break . org-export-filter-line-break-functions)
209 (:filter-link . org-export-filter-link-functions)
210 (:filter-node-property . org-export-filter-node-property-functions)
211 (:filter-options . org-export-filter-options-functions)
212 (:filter-paragraph . org-export-filter-paragraph-functions)
213 (:filter-parse-tree . org-export-filter-parse-tree-functions)
214 (:filter-plain-list . org-export-filter-plain-list-functions)
215 (:filter-plain-text . org-export-filter-plain-text-functions)
216 (:filter-planning . org-export-filter-planning-functions)
217 (:filter-property-drawer . org-export-filter-property-drawer-functions)
218 (:filter-quote-block . org-export-filter-quote-block-functions)
219 (:filter-radio-target . org-export-filter-radio-target-functions)
220 (:filter-section . org-export-filter-section-functions)
221 (:filter-special-block . org-export-filter-special-block-functions)
222 (:filter-src-block . org-export-filter-src-block-functions)
223 (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions)
224 (:filter-strike-through . org-export-filter-strike-through-functions)
225 (:filter-subscript . org-export-filter-subscript-functions)
226 (:filter-superscript . org-export-filter-superscript-functions)
227 (:filter-table . org-export-filter-table-functions)
228 (:filter-table-cell . org-export-filter-table-cell-functions)
229 (:filter-table-row . org-export-filter-table-row-functions)
230 (:filter-target . org-export-filter-target-functions)
231 (:filter-timestamp . org-export-filter-timestamp-functions)
232 (:filter-underline . org-export-filter-underline-functions)
233 (:filter-verbatim . org-export-filter-verbatim-functions)
234 (:filter-verse-block . org-export-filter-verse-block-functions))
235 "Alist between filters properties and initial values.
237 The key of each association is a property name accessible through
238 the communication channel. Its value is a configurable global
239 variable defining initial filters.
241 This list is meant to install user specified filters. Back-end
242 developers may install their own filters using
243 `org-export-define-backend'. Filters defined there will always
244 be prepended to the current list, so they always get applied
245 first.")
247 (defconst org-export-default-inline-image-rule
248 `(("file" .
249 ,(format "\\.%s\\'"
250 (regexp-opt
251 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm"
252 "xpm" "pbm" "pgm" "ppm") t))))
253 "Default rule for link matching an inline image.
254 This rule applies to links with no description. By default, it
255 will be considered as an inline image if it targets a local file
256 whose extension is either \"png\", \"jpeg\", \"jpg\", \"gif\",
257 \"tiff\", \"tif\", \"xbm\", \"xpm\", \"pbm\", \"pgm\" or \"ppm\".
258 See `org-export-inline-image-p' for more information about
259 rules.")
261 (defconst org-export-ignored-local-variables
262 '(org-font-lock-keywords
263 org-element--cache org-element--cache-objects org-element--cache-sync-keys
264 org-element--cache-sync-requests org-element--cache-sync-timer)
265 "List of variables not copied through upon buffer duplication.
266 Export process takes place on a copy of the original buffer.
267 When this copy is created, all Org related local variables not in
268 this list are copied to the new buffer. Variables with an
269 unreadable value are also ignored.")
271 (defvar org-export-async-debug nil
272 "Non-nil means asynchronous export process should leave data behind.
274 This data is found in the appropriate \"*Org Export Process*\"
275 buffer, and in files prefixed with \"org-export-process\" and
276 located in `temporary-file-directory'.
278 When non-nil, it will also set `debug-on-error' to a non-nil
279 value in the external process.")
281 (defvar org-export-stack-contents nil
282 "Record asynchronously generated export results and processes.
283 This is an alist: its CAR is the source of the
284 result (destination file or buffer for a finished process,
285 original buffer for a running one) and its CDR is a list
286 containing the back-end used, as a symbol, and either a process
287 or the time at which it finished. It is used to build the menu
288 from `org-export-stack'.")
290 (defvar org-export--registered-backends nil
291 "List of backends currently available in the exporter.
292 This variable is set with `org-export-define-backend' and
293 `org-export-define-derived-backend' functions.")
295 (defvar org-export-dispatch-last-action nil
296 "Last command called from the dispatcher.
297 The value should be a list. Its CAR is the action, as a symbol,
298 and its CDR is a list of export options.")
300 (defvar org-export-dispatch-last-position (make-marker)
301 "The position where the last export command was created using the dispatcher.
302 This marker will be used with `C-u C-c C-e' to make sure export repetition
303 uses the same subtree if the previous command was restricted to a subtree.")
305 ;; For compatibility with Org < 8
306 (defvar org-export-current-backend nil
307 "Name, if any, of the back-end used during an export process.
309 Its value is a symbol such as `html', `latex', `ascii', or nil if
310 the back-end is anonymous (see `org-export-create-backend') or if
311 there is no export process in progress.
313 It can be used to teach Babel blocks how to act differently
314 according to the back-end used.")
318 ;;; User-configurable Variables
320 ;; Configuration for the masses.
322 ;; They should never be accessed directly, as their value is to be
323 ;; stored in a property list (cf. `org-export-options-alist').
324 ;; Back-ends will read their value from there instead.
326 (defgroup org-export nil
327 "Options for exporting Org mode files."
328 :tag "Org Export"
329 :group 'org)
331 (defgroup org-export-general nil
332 "General options for export engine."
333 :tag "Org Export General"
334 :group 'org-export)
336 (defcustom org-export-with-archived-trees 'headline
337 "Whether sub-trees with the ARCHIVE tag should be exported.
339 This can have three different values:
340 nil Do not export, pretend this tree is not present.
341 t Do export the entire tree.
342 `headline' Only export the headline, but skip the tree below it.
344 This option can also be set with the OPTIONS keyword,
345 e.g. \"arch:nil\"."
346 :group 'org-export-general
347 :type '(choice
348 (const :tag "Not at all" nil)
349 (const :tag "Headline only" headline)
350 (const :tag "Entirely" t)))
352 (defcustom org-export-with-author t
353 "Non-nil means insert author name into the exported file.
354 This option can also be set with the OPTIONS keyword,
355 e.g. \"author:nil\"."
356 :group 'org-export-general
357 :type 'boolean)
359 (defcustom org-export-with-clocks nil
360 "Non-nil means export CLOCK keywords.
361 This option can also be set with the OPTIONS keyword,
362 e.g. \"c:t\"."
363 :group 'org-export-general
364 :type 'boolean)
366 (defcustom org-export-with-creator 'comment
367 "Non-nil means the postamble should contain a creator sentence.
369 The sentence can be set in `org-export-creator-string' and
370 defaults to \"Generated by Org mode XX in Emacs XXX.\".
372 If the value is `comment' insert it as a comment."
373 :group 'org-export-general
374 :type '(choice
375 (const :tag "No creator sentence" nil)
376 (const :tag "Sentence as a comment" comment)
377 (const :tag "Insert the sentence" t)))
379 (defcustom org-export-with-date t
380 "Non-nil means insert date in the exported document.
381 This option can also be set with the OPTIONS keyword,
382 e.g. \"date:nil\"."
383 :group 'org-export-general
384 :type 'boolean)
386 (defcustom org-export-date-timestamp-format nil
387 "Time-stamp format string to use for DATE keyword.
389 The format string, when specified, only applies if date consists
390 in a single time-stamp. Otherwise its value will be ignored.
392 See `format-time-string' for details on how to build this
393 string."
394 :group 'org-export-general
395 :type '(choice
396 (string :tag "Time-stamp format string")
397 (const :tag "No format string" nil)))
399 (defcustom org-export-creator-string
400 (format "Emacs %s (Org mode %s)"
401 emacs-version
402 (if (fboundp 'org-version) (org-version) "unknown version"))
403 "Information about the creator of the document.
404 This option can also be set on with the CREATOR keyword."
405 :group 'org-export-general
406 :type '(string :tag "Creator string"))
408 (defcustom org-export-with-drawers '(not "LOGBOOK")
409 "Non-nil means export contents of standard drawers.
411 When t, all drawers are exported. This may also be a list of
412 drawer names to export, as strings. If that list starts with
413 `not', only drawers with such names will be ignored.
415 This variable doesn't apply to properties drawers. See
416 `org-export-with-properties' instead.
418 This option can also be set with the OPTIONS keyword,
419 e.g. \"d:nil\"."
420 :group 'org-export-general
421 :version "24.4"
422 :package-version '(Org . "8.0")
423 :type '(choice
424 (const :tag "All drawers" t)
425 (const :tag "None" nil)
426 (repeat :tag "Selected drawers"
427 (string :tag "Drawer name"))
428 (list :tag "Ignored drawers"
429 (const :format "" not)
430 (repeat :tag "Specify names of drawers to ignore during export"
431 :inline t
432 (string :tag "Drawer name")))))
434 (defcustom org-export-with-email nil
435 "Non-nil means insert author email into the exported file.
436 This option can also be set with the OPTIONS keyword,
437 e.g. \"email:t\"."
438 :group 'org-export-general
439 :type 'boolean)
441 (defcustom org-export-with-emphasize t
442 "Non-nil means interpret *word*, /word/, _word_ and +word+.
444 If the export target supports emphasizing text, the word will be
445 typeset in bold, italic, with an underline or strike-through,
446 respectively.
448 This option can also be set with the OPTIONS keyword,
449 e.g. \"*:nil\"."
450 :group 'org-export-general
451 :type 'boolean)
453 (defcustom org-export-exclude-tags '("noexport")
454 "Tags that exclude a tree from export.
456 All trees carrying any of these tags will be excluded from
457 export. This is without condition, so even subtrees inside that
458 carry one of the `org-export-select-tags' will be removed.
460 This option can also be set with the EXCLUDE_TAGS keyword."
461 :group 'org-export-general
462 :type '(repeat (string :tag "Tag")))
464 (defcustom org-export-with-fixed-width t
465 "Non-nil means export lines starting with \":\".
466 This option can also be set with the OPTIONS keyword,
467 e.g. \"::nil\"."
468 :group 'org-export-general
469 :version "24.4"
470 :package-version '(Org . "8.0")
471 :type 'boolean)
473 (defcustom org-export-with-footnotes t
474 "Non-nil means Org footnotes should be exported.
475 This option can also be set with the OPTIONS keyword,
476 e.g. \"f:nil\"."
477 :group 'org-export-general
478 :type 'boolean)
480 (defcustom org-export-with-latex t
481 "Non-nil means process LaTeX environments and fragments.
483 This option can also be set with the OPTIONS line,
484 e.g. \"tex:verbatim\". Allowed values are:
486 nil Ignore math snippets.
487 `verbatim' Keep everything in verbatim.
488 t Allow export of math snippets."
489 :group 'org-export-general
490 :version "24.4"
491 :package-version '(Org . "8.0")
492 :type '(choice
493 (const :tag "Do not process math in any way" nil)
494 (const :tag "Interpret math snippets" t)
495 (const :tag "Leave math verbatim" verbatim)))
497 (defcustom org-export-headline-levels 3
498 "The last level which is still exported as a headline.
500 Inferior levels will usually produce itemize or enumerate lists
501 when exported, but back-end behaviour may differ.
503 This option can also be set with the OPTIONS keyword,
504 e.g. \"H:2\"."
505 :group 'org-export-general
506 :type 'integer)
508 (defcustom org-export-default-language "en"
509 "The default language for export and clocktable translations, as a string.
510 This may have an association in
511 `org-clock-clocktable-language-setup',
512 `org-export-smart-quotes-alist' and `org-export-dictionary'.
513 This option can also be set with the LANGUAGE keyword."
514 :group 'org-export-general
515 :type '(string :tag "Language"))
517 (defcustom org-export-preserve-breaks nil
518 "Non-nil means preserve all line breaks when exporting.
519 This option can also be set with the OPTIONS keyword,
520 e.g. \"\\n:t\"."
521 :group 'org-export-general
522 :type 'boolean)
524 (defcustom org-export-with-entities t
525 "Non-nil means interpret entities when exporting.
527 For example, HTML export converts \\alpha to &alpha; and \\AA to
528 &Aring;.
530 For a list of supported names, see the constant `org-entities'
531 and the user option `org-entities-user'.
533 This option can also be set with the OPTIONS keyword,
534 e.g. \"e:nil\"."
535 :group 'org-export-general
536 :type 'boolean)
538 (defcustom org-export-with-inlinetasks t
539 "Non-nil means inlinetasks should be exported.
540 This option can also be set with the OPTIONS keyword,
541 e.g. \"inline:nil\"."
542 :group 'org-export-general
543 :version "24.4"
544 :package-version '(Org . "8.0")
545 :type 'boolean)
547 (defcustom org-export-with-planning nil
548 "Non-nil means include planning info in export.
550 Planning info is the line containing either SCHEDULED:,
551 DEADLINE:, CLOSED: time-stamps, or a combination of them.
553 This option can also be set with the OPTIONS keyword,
554 e.g. \"p:t\"."
555 :group 'org-export-general
556 :version "24.4"
557 :package-version '(Org . "8.0")
558 :type 'boolean)
560 (defcustom org-export-with-priority nil
561 "Non-nil means include priority cookies in export.
562 This option can also be set with the OPTIONS keyword,
563 e.g. \"pri:t\"."
564 :group 'org-export-general
565 :type 'boolean)
567 (defcustom org-export-with-properties nil
568 "Non-nil means export contents of properties drawers.
570 When t, all properties are exported. This may also be a list of
571 properties to export, as strings.
573 This option can also be set with the OPTIONS keyword,
574 e.g. \"prop:t\"."
575 :group 'org-export-general
576 :version "24.4"
577 :package-version '(Org . "8.3")
578 :type '(choice
579 (const :tag "All properties" t)
580 (const :tag "None" nil)
581 (repeat :tag "Selected properties"
582 (string :tag "Property name"))))
584 (defcustom org-export-with-section-numbers t
585 "Non-nil means add section numbers to headlines when exporting.
587 When set to an integer n, numbering will only happen for
588 headlines whose relative level is higher or equal to n.
590 This option can also be set with the OPTIONS keyword,
591 e.g. \"num:t\"."
592 :group 'org-export-general
593 :type 'boolean)
595 (defcustom org-export-select-tags '("export")
596 "Tags that select a tree for export.
598 If any such tag is found in a buffer, all trees that do not carry
599 one of these tags will be ignored during export. Inside trees
600 that are selected like this, you can still deselect a subtree by
601 tagging it with one of the `org-export-exclude-tags'.
603 This option can also be set with the SELECT_TAGS keyword."
604 :group 'org-export-general
605 :type '(repeat (string :tag "Tag")))
607 (defcustom org-export-with-smart-quotes nil
608 "Non-nil means activate smart quotes during export.
609 This option can also be set with the OPTIONS keyword,
610 e.g., \"':t\".
612 When setting this to non-nil, you need to take care of
613 using the correct Babel package when exporting to LaTeX.
614 E.g., you can load Babel for french like this:
616 #+LATEX_HEADER: \\usepackage[french]{babel}"
617 :group 'org-export-general
618 :version "24.4"
619 :package-version '(Org . "8.0")
620 :type 'boolean)
622 (defcustom org-export-with-special-strings t
623 "Non-nil means interpret \"\\-\", \"--\" and \"---\" for export.
625 When this option is turned on, these strings will be exported as:
627 Org HTML LaTeX UTF-8
628 -----+----------+--------+-------
629 \\- &shy; \\-
630 -- &ndash; -- –
631 --- &mdash; --- —
632 ... &hellip; \\ldots …
634 This option can also be set with the OPTIONS keyword,
635 e.g. \"-:nil\"."
636 :group 'org-export-general
637 :type 'boolean)
639 (defcustom org-export-with-statistics-cookies t
640 "Non-nil means include statistics cookies in export.
641 This option can also be set with the OPTIONS keyword,
642 e.g. \"stat:nil\""
643 :group 'org-export-general
644 :version "24.4"
645 :package-version '(Org . "8.0")
646 :type 'boolean)
648 (defcustom org-export-with-sub-superscripts t
649 "Non-nil means interpret \"_\" and \"^\" for export.
651 If you want to control how Org displays those characters, see
652 `org-use-sub-superscripts'. `org-export-with-sub-superscripts'
653 used to be an alias for `org-use-sub-superscripts' in Org <8.0,
654 it is not anymore.
656 When this option is turned on, you can use TeX-like syntax for
657 sub- and superscripts and see them exported correctly.
659 You can also set the option with #+OPTIONS: ^:t
661 Several characters after \"_\" or \"^\" will be considered as a
662 single item - so grouping with {} is normally not needed. For
663 example, the following things will be parsed as single sub- or
664 superscripts:
666 10^24 or 10^tau several digits will be considered 1 item.
667 10^-12 or 10^-tau a leading sign with digits or a word
668 x^2-y^3 will be read as x^2 - y^3, because items are
669 terminated by almost any nonword/nondigit char.
670 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
672 Still, ambiguity is possible. So when in doubt, use {} to enclose
673 the sub/superscript. If you set this variable to the symbol `{}',
674 the braces are *required* in order to trigger interpretations as
675 sub/superscript. This can be helpful in documents that need \"_\"
676 frequently in plain text."
677 :group 'org-export-general
678 :version "24.4"
679 :package-version '(Org . "8.0")
680 :type '(choice
681 (const :tag "Interpret them" t)
682 (const :tag "Curly brackets only" {})
683 (const :tag "Do not interpret them" nil)))
685 (defcustom org-export-with-toc t
686 "Non-nil means create a table of contents in exported files.
688 The TOC contains headlines with levels up
689 to`org-export-headline-levels'. When an integer, include levels
690 up to N in the toc, this may then be different from
691 `org-export-headline-levels', but it will not be allowed to be
692 larger than the number of headline levels. When nil, no table of
693 contents is made.
695 This option can also be set with the OPTIONS keyword,
696 e.g. \"toc:nil\" or \"toc:3\"."
697 :group 'org-export-general
698 :type '(choice
699 (const :tag "No Table of Contents" nil)
700 (const :tag "Full Table of Contents" t)
701 (integer :tag "TOC to level")))
703 (defcustom org-export-with-tables t
704 "Non-nil means export tables.
705 This option can also be set with the OPTIONS keyword,
706 e.g. \"|:nil\"."
707 :group 'org-export-general
708 :version "24.4"
709 :package-version '(Org . "8.0")
710 :type 'boolean)
712 (defcustom org-export-with-tags t
713 "If nil, do not export tags, just remove them from headlines.
715 If this is the symbol `not-in-toc', tags will be removed from
716 table of contents entries, but still be shown in the headlines of
717 the document.
719 This option can also be set with the OPTIONS keyword,
720 e.g. \"tags:nil\"."
721 :group 'org-export-general
722 :type '(choice
723 (const :tag "Off" nil)
724 (const :tag "Not in TOC" not-in-toc)
725 (const :tag "On" t)))
727 (defcustom org-export-with-tasks t
728 "Non-nil means include TODO items for export.
730 This may have the following values:
731 t include tasks independent of state.
732 `todo' include only tasks that are not yet done.
733 `done' include only tasks that are already done.
734 nil ignore all tasks.
735 list of keywords include tasks with these keywords.
737 This option can also be set with the OPTIONS keyword,
738 e.g. \"tasks:nil\"."
739 :group 'org-export-general
740 :type '(choice
741 (const :tag "All tasks" t)
742 (const :tag "No tasks" nil)
743 (const :tag "Not-done tasks" todo)
744 (const :tag "Only done tasks" done)
745 (repeat :tag "Specific TODO keywords"
746 (string :tag "Keyword"))))
748 (defcustom org-export-time-stamp-file t
749 "Non-nil means insert a time stamp into the exported file.
750 The time stamp shows when the file was created. This option can
751 also be set with the OPTIONS keyword, e.g. \"timestamp:nil\"."
752 :group 'org-export-general
753 :type 'boolean)
755 (defcustom org-export-with-timestamps t
756 "Non nil means allow timestamps in export.
758 It can be set to any of the following values:
759 t export all timestamps.
760 `active' export active timestamps only.
761 `inactive' export inactive timestamps only.
762 nil do not export timestamps
764 This only applies to timestamps isolated in a paragraph
765 containing only timestamps. Other timestamps are always
766 exported.
768 This option can also be set with the OPTIONS keyword, e.g.
769 \"<:nil\"."
770 :group 'org-export-general
771 :type '(choice
772 (const :tag "All timestamps" t)
773 (const :tag "Only active timestamps" active)
774 (const :tag "Only inactive timestamps" inactive)
775 (const :tag "No timestamp" nil)))
777 (defcustom org-export-with-todo-keywords t
778 "Non-nil means include TODO keywords in export.
779 When nil, remove all these keywords from the export. This option
780 can also be set with the OPTIONS keyword, e.g. \"todo:nil\"."
781 :group 'org-export-general
782 :type 'boolean)
784 (defcustom org-export-allow-bind-keywords nil
785 "Non-nil means BIND keywords can define local variable values.
786 This is a potential security risk, which is why the default value
787 is nil. You can also allow them through local buffer variables."
788 :group 'org-export-general
789 :version "24.4"
790 :package-version '(Org . "8.0")
791 :type 'boolean)
793 (defcustom org-export-snippet-translation-alist nil
794 "Alist between export snippets back-ends and exporter back-ends.
796 This variable allows to provide shortcuts for export snippets.
798 For example, with a value of '\(\(\"h\" . \"html\"\)\), the
799 HTML back-end will recognize the contents of \"@@h:<b>@@\" as
800 HTML code while every other back-end will ignore it."
801 :group 'org-export-general
802 :version "24.4"
803 :package-version '(Org . "8.0")
804 :type '(repeat
805 (cons (string :tag "Shortcut")
806 (string :tag "Back-end"))))
808 (defcustom org-export-coding-system nil
809 "Coding system for the exported file."
810 :group 'org-export-general
811 :version "24.4"
812 :package-version '(Org . "8.0")
813 :type 'coding-system)
815 (defcustom org-export-copy-to-kill-ring nil
816 "Non-nil means pushing export output to the kill ring.
817 This variable is ignored during asynchronous export."
818 :group 'org-export-general
819 :version "25.1"
820 :package-version '(Org . "8.3")
821 :type '(choice
822 (const :tag "Always" t)
823 (const :tag "When export is done interactively" if-interactive)
824 (const :tag "Never" nil)))
826 (defcustom org-export-initial-scope 'buffer
827 "The initial scope when exporting with `org-export-dispatch'.
828 This variable can be either set to `buffer' or `subtree'."
829 :group 'org-export-general
830 :type '(choice
831 (const :tag "Export current buffer" buffer)
832 (const :tag "Export current subtree" subtree)))
834 (defcustom org-export-show-temporary-export-buffer t
835 "Non-nil means show buffer after exporting to temp buffer.
836 When Org exports to a file, the buffer visiting that file is never
837 shown, but remains buried. However, when exporting to
838 a temporary buffer, that buffer is popped up in a second window.
839 When this variable is nil, the buffer remains buried also in
840 these cases."
841 :group 'org-export-general
842 :type 'boolean)
844 (defcustom org-export-in-background nil
845 "Non-nil means export and publishing commands will run in background.
846 Results from an asynchronous export are never displayed
847 automatically. But you can retrieve them with \\[org-export-stack]."
848 :group 'org-export-general
849 :version "24.4"
850 :package-version '(Org . "8.0")
851 :type 'boolean)
853 (defcustom org-export-async-init-file nil
854 "File used to initialize external export process.
856 Value must be either nil or an absolute file name. When nil, the
857 external process is launched like a regular Emacs session,
858 loading user's initialization file and any site specific
859 configuration. If a file is provided, it, and only it, is loaded
860 at start-up.
862 Therefore, using a specific configuration makes the process to
863 load faster and the export more portable."
864 :group 'org-export-general
865 :version "24.4"
866 :package-version '(Org . "8.0")
867 :type '(choice
868 (const :tag "Regular startup" nil)
869 (file :tag "Specific start-up file" :must-match t)))
871 (defcustom org-export-dispatch-use-expert-ui nil
872 "Non-nil means using a non-intrusive `org-export-dispatch'.
873 In that case, no help buffer is displayed. Though, an indicator
874 for current export scope is added to the prompt (\"b\" when
875 output is restricted to body only, \"s\" when it is restricted to
876 the current subtree, \"v\" when only visible elements are
877 considered for export, \"f\" when publishing functions should be
878 passed the FORCE argument and \"a\" when the export should be
879 asynchronous). Also, \[?] allows to switch back to standard
880 mode."
881 :group 'org-export-general
882 :version "24.4"
883 :package-version '(Org . "8.0")
884 :type 'boolean)
888 ;;; Defining Back-ends
890 ;; An export back-end is a structure with `org-export-backend' type
891 ;; and `name', `parent', `transcoders', `options', `filters', `blocks'
892 ;; and `menu' slots.
894 ;; At the lowest level, a back-end is created with
895 ;; `org-export-create-backend' function.
897 ;; A named back-end can be registered with
898 ;; `org-export-register-backend' function. A registered back-end can
899 ;; later be referred to by its name, with `org-export-get-backend'
900 ;; function. Also, such a back-end can become the parent of a derived
901 ;; back-end from which slot values will be inherited by default.
902 ;; `org-export-derived-backend-p' can check if a given back-end is
903 ;; derived from a list of back-end names.
905 ;; `org-export-get-all-transcoders', `org-export-get-all-options' and
906 ;; `org-export-get-all-filters' return the full alist of transcoders,
907 ;; options and filters, including those inherited from ancestors.
909 ;; At a higher level, `org-export-define-backend' is the standard way
910 ;; to define an export back-end. If the new back-end is similar to
911 ;; a registered back-end, `org-export-define-derived-backend' may be
912 ;; used instead.
914 ;; Eventually `org-export-barf-if-invalid-backend' returns an error
915 ;; when a given back-end hasn't been registered yet.
917 (defstruct (org-export-backend (:constructor org-export-create-backend)
918 (:copier nil))
919 name parent transcoders options filters blocks menu)
921 (defun org-export-get-backend (name)
922 "Return export back-end named after NAME.
923 NAME is a symbol. Return nil if no such back-end is found."
924 (catch 'found
925 (dolist (b org-export--registered-backends)
926 (when (eq (org-export-backend-name b) name)
927 (throw 'found b)))))
929 (defun org-export-register-backend (backend)
930 "Register BACKEND as a known export back-end.
931 BACKEND is a structure with `org-export-backend' type."
932 ;; Refuse to register an unnamed back-end.
933 (unless (org-export-backend-name backend)
934 (error "Cannot register a unnamed export back-end"))
935 ;; Refuse to register a back-end with an unknown parent.
936 (let ((parent (org-export-backend-parent backend)))
937 (when (and parent (not (org-export-get-backend parent)))
938 (error "Cannot use unknown \"%s\" back-end as a parent" parent)))
939 ;; Register dedicated export blocks in the parser.
940 (dolist (name (org-export-backend-blocks backend))
941 (add-to-list 'org-element-block-name-alist
942 (cons name 'org-element-export-block-parser)))
943 ;; If a back-end with the same name as BACKEND is already
944 ;; registered, replace it with BACKEND. Otherwise, simply add
945 ;; BACKEND to the list of registered back-ends.
946 (let ((old (org-export-get-backend (org-export-backend-name backend))))
947 (if old (setcar (memq old org-export--registered-backends) backend)
948 (push backend org-export--registered-backends))))
950 (defun org-export-barf-if-invalid-backend (backend)
951 "Signal an error if BACKEND isn't defined."
952 (unless (org-export-backend-p backend)
953 (error "Unknown \"%s\" back-end: Aborting export" backend)))
955 (defun org-export-derived-backend-p (backend &rest backends)
956 "Non-nil if BACKEND is derived from one of BACKENDS.
957 BACKEND is an export back-end, as returned by, e.g.,
958 `org-export-create-backend', or a symbol referring to
959 a registered back-end. BACKENDS is constituted of symbols."
960 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
961 (when backend
962 (catch 'exit
963 (while (org-export-backend-parent backend)
964 (when (memq (org-export-backend-name backend) backends)
965 (throw 'exit t))
966 (setq backend
967 (org-export-get-backend (org-export-backend-parent backend))))
968 (memq (org-export-backend-name backend) backends))))
970 (defun org-export-get-all-transcoders (backend)
971 "Return full translation table for BACKEND.
973 BACKEND is an export back-end, as return by, e.g,,
974 `org-export-create-backend'. Return value is an alist where
975 keys are element or object types, as symbols, and values are
976 transcoders.
978 Unlike to `org-export-backend-transcoders', this function
979 also returns transcoders inherited from parent back-ends,
980 if any."
981 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
982 (when backend
983 (let ((transcoders (org-export-backend-transcoders backend))
984 parent)
985 (while (setq parent (org-export-backend-parent backend))
986 (setq backend (org-export-get-backend parent))
987 (setq transcoders
988 (append transcoders (org-export-backend-transcoders backend))))
989 transcoders)))
991 (defun org-export-get-all-options (backend)
992 "Return export options for BACKEND.
994 BACKEND is an export back-end, as return by, e.g,,
995 `org-export-create-backend'. See `org-export-options-alist'
996 for the shape of the return value.
998 Unlike to `org-export-backend-options', this function also
999 returns options inherited from parent back-ends, if any."
1000 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
1001 (when backend
1002 (let ((options (org-export-backend-options backend))
1003 parent)
1004 (while (setq parent (org-export-backend-parent backend))
1005 (setq backend (org-export-get-backend parent))
1006 (setq options (append options (org-export-backend-options backend))))
1007 options)))
1009 (defun org-export-get-all-filters (backend)
1010 "Return complete list of filters for BACKEND.
1012 BACKEND is an export back-end, as return by, e.g,,
1013 `org-export-create-backend'. Return value is an alist where
1014 keys are symbols and values lists of functions.
1016 Unlike to `org-export-backend-filters', this function also
1017 returns filters inherited from parent back-ends, if any."
1018 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
1019 (when backend
1020 (let ((filters (org-export-backend-filters backend))
1021 parent)
1022 (while (setq parent (org-export-backend-parent backend))
1023 (setq backend (org-export-get-backend parent))
1024 (setq filters (append filters (org-export-backend-filters backend))))
1025 filters)))
1027 (defun org-export-define-backend (backend transcoders &rest body)
1028 "Define a new back-end BACKEND.
1030 TRANSCODERS is an alist between object or element types and
1031 functions handling them.
1033 These functions should return a string without any trailing
1034 space, or nil. They must accept three arguments: the object or
1035 element itself, its contents or nil when it isn't recursive and
1036 the property list used as a communication channel.
1038 Contents, when not nil, are stripped from any global indentation
1039 \(although the relative one is preserved). They also always end
1040 with a single newline character.
1042 If, for a given type, no function is found, that element or
1043 object type will simply be ignored, along with any blank line or
1044 white space at its end. The same will happen if the function
1045 returns the nil value. If that function returns the empty
1046 string, the type will be ignored, but the blank lines or white
1047 spaces will be kept.
1049 In addition to element and object types, one function can be
1050 associated to the `template' (or `inner-template') symbol and
1051 another one to the `plain-text' symbol.
1053 The former returns the final transcoded string, and can be used
1054 to add a preamble and a postamble to document's body. It must
1055 accept two arguments: the transcoded string and the property list
1056 containing export options. A function associated to `template'
1057 will not be applied if export has option \"body-only\".
1058 A function associated to `inner-template' is always applied.
1060 The latter, when defined, is to be called on every text not
1061 recognized as an element or an object. It must accept two
1062 arguments: the text string and the information channel. It is an
1063 appropriate place to protect special chars relative to the
1064 back-end.
1066 BODY can start with pre-defined keyword arguments. The following
1067 keywords are understood:
1069 :export-block
1071 String, or list of strings, representing block names that
1072 will not be parsed. This is used to specify blocks that will
1073 contain raw code specific to the back-end. These blocks
1074 still have to be handled by the relative `export-block' type
1075 translator.
1077 :filters-alist
1079 Alist between filters and function, or list of functions,
1080 specific to the back-end. See `org-export-filters-alist' for
1081 a list of all allowed filters. Filters defined here
1082 shouldn't make a back-end test, as it may prevent back-ends
1083 derived from this one to behave properly.
1085 :menu-entry
1087 Menu entry for the export dispatcher. It should be a list
1088 like:
1090 '(KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
1092 where :
1094 KEY is a free character selecting the back-end.
1096 DESCRIPTION-OR-ORDINAL is either a string or a number.
1098 If it is a string, is will be used to name the back-end in
1099 its menu entry. If it is a number, the following menu will
1100 be displayed as a sub-menu of the back-end with the same
1101 KEY. Also, the number will be used to determine in which
1102 order such sub-menus will appear (lowest first).
1104 ACTION-OR-MENU is either a function or an alist.
1106 If it is an action, it will be called with four
1107 arguments (booleans): ASYNC, SUBTREEP, VISIBLE-ONLY and
1108 BODY-ONLY. See `org-export-as' for further explanations on
1109 some of them.
1111 If it is an alist, associations should follow the
1112 pattern:
1114 '(KEY DESCRIPTION ACTION)
1116 where KEY, DESCRIPTION and ACTION are described above.
1118 Valid values include:
1120 '(?m \"My Special Back-end\" my-special-export-function)
1124 '(?l \"Export to LaTeX\"
1125 \(?p \"As PDF file\" org-latex-export-to-pdf)
1126 \(?o \"As PDF file and open\"
1127 \(lambda (a s v b)
1128 \(if a (org-latex-export-to-pdf t s v b)
1129 \(org-open-file
1130 \(org-latex-export-to-pdf nil s v b)))))))
1132 or the following, which will be added to the previous
1133 sub-menu,
1135 '(?l 1
1136 \((?B \"As TEX buffer (Beamer)\" org-beamer-export-as-latex)
1137 \(?P \"As PDF file (Beamer)\" org-beamer-export-to-pdf)))
1139 :options-alist
1141 Alist between back-end specific properties introduced in
1142 communication channel and how their value are acquired. See
1143 `org-export-options-alist' for more information about
1144 structure of the values."
1145 (declare (indent 1))
1146 (let (blocks filters menu-entry options contents)
1147 (while (keywordp (car body))
1148 (let ((keyword (pop body)))
1149 (case keyword
1150 (:export-block (let ((names (pop body)))
1151 (setq blocks (if (consp names) (mapcar 'upcase names)
1152 (list (upcase names))))))
1153 (:filters-alist (setq filters (pop body)))
1154 (:menu-entry (setq menu-entry (pop body)))
1155 (:options-alist (setq options (pop body)))
1156 (t (error "Unknown keyword: %s" keyword)))))
1157 (org-export-register-backend
1158 (org-export-create-backend :name backend
1159 :transcoders transcoders
1160 :options options
1161 :filters filters
1162 :blocks blocks
1163 :menu menu-entry))))
1165 (defun org-export-define-derived-backend (child parent &rest body)
1166 "Create a new back-end as a variant of an existing one.
1168 CHILD is the name of the derived back-end. PARENT is the name of
1169 the parent back-end.
1171 BODY can start with pre-defined keyword arguments. The following
1172 keywords are understood:
1174 :export-block
1176 String, or list of strings, representing block names that
1177 will not be parsed. This is used to specify blocks that will
1178 contain raw code specific to the back-end. These blocks
1179 still have to be handled by the relative `export-block' type
1180 translator.
1182 :filters-alist
1184 Alist of filters that will overwrite or complete filters
1185 defined in PARENT back-end. See `org-export-filters-alist'
1186 for a list of allowed filters.
1188 :menu-entry
1190 Menu entry for the export dispatcher. See
1191 `org-export-define-backend' for more information about the
1192 expected value.
1194 :options-alist
1196 Alist of back-end specific properties that will overwrite or
1197 complete those defined in PARENT back-end. Refer to
1198 `org-export-options-alist' for more information about
1199 structure of the values.
1201 :translate-alist
1203 Alist of element and object types and transcoders that will
1204 overwrite or complete transcode table from PARENT back-end.
1205 Refer to `org-export-define-backend' for detailed information
1206 about transcoders.
1208 As an example, here is how one could define \"my-latex\" back-end
1209 as a variant of `latex' back-end with a custom template function:
1211 \(org-export-define-derived-backend 'my-latex 'latex
1212 :translate-alist '((template . my-latex-template-fun)))
1214 The back-end could then be called with, for example:
1216 \(org-export-to-buffer 'my-latex \"*Test my-latex*\")"
1217 (declare (indent 2))
1218 (let (blocks filters menu-entry options transcoders contents)
1219 (while (keywordp (car body))
1220 (let ((keyword (pop body)))
1221 (case keyword
1222 (:export-block (let ((names (pop body)))
1223 (setq blocks (if (consp names) (mapcar 'upcase names)
1224 (list (upcase names))))))
1225 (:filters-alist (setq filters (pop body)))
1226 (:menu-entry (setq menu-entry (pop body)))
1227 (:options-alist (setq options (pop body)))
1228 (:translate-alist (setq transcoders (pop body)))
1229 (t (error "Unknown keyword: %s" keyword)))))
1230 (org-export-register-backend
1231 (org-export-create-backend :name child
1232 :parent parent
1233 :transcoders transcoders
1234 :options options
1235 :filters filters
1236 :blocks blocks
1237 :menu menu-entry))))
1241 ;;; The Communication Channel
1243 ;; During export process, every function has access to a number of
1244 ;; properties. They are of two types:
1246 ;; 1. Environment options are collected once at the very beginning of
1247 ;; the process, out of the original buffer and configuration.
1248 ;; Collecting them is handled by `org-export-get-environment'
1249 ;; function.
1251 ;; Most environment options are defined through the
1252 ;; `org-export-options-alist' variable.
1254 ;; 2. Tree properties are extracted directly from the parsed tree,
1255 ;; just before export, by `org-export-collect-tree-properties'.
1257 ;; Here is the full list of properties available during transcode
1258 ;; process, with their category and their value type.
1260 ;; + `:author' :: Author's name.
1261 ;; - category :: option
1262 ;; - type :: string
1264 ;; + `:back-end' :: Current back-end used for transcoding.
1265 ;; - category :: tree
1266 ;; - type :: structure
1268 ;; + `:creator' :: String to write as creation information.
1269 ;; - category :: option
1270 ;; - type :: string
1272 ;; + `:date' :: String to use as date.
1273 ;; - category :: option
1274 ;; - type :: string
1276 ;; + `:description' :: Description text for the current data.
1277 ;; - category :: option
1278 ;; - type :: string
1280 ;; + `:email' :: Author's email.
1281 ;; - category :: option
1282 ;; - type :: string
1284 ;; + `:exclude-tags' :: Tags for exclusion of subtrees from export
1285 ;; process.
1286 ;; - category :: option
1287 ;; - type :: list of strings
1289 ;; + `:export-options' :: List of export options available for current
1290 ;; process.
1291 ;; - category :: none
1292 ;; - type :: list of symbols, among `subtree', `body-only' and
1293 ;; `visible-only'.
1295 ;; + `:exported-data' :: Hash table used for memoizing
1296 ;; `org-export-data'.
1297 ;; - category :: tree
1298 ;; - type :: hash table
1300 ;; + `:filetags' :: List of global tags for buffer. Used by
1301 ;; `org-export-get-tags' to get tags with inheritance.
1302 ;; - category :: option
1303 ;; - type :: list of strings
1305 ;; + `:footnote-definition-alist' :: Alist between footnote labels and
1306 ;; their definition, as parsed data. Only non-inlined footnotes
1307 ;; are represented in this alist. Also, every definition isn't
1308 ;; guaranteed to be referenced in the parse tree. The purpose of
1309 ;; this property is to preserve definitions from oblivion
1310 ;; (i.e. when the parse tree comes from a part of the original
1311 ;; buffer), it isn't meant for direct use in a back-end. To
1312 ;; retrieve a definition relative to a reference, use
1313 ;; `org-export-get-footnote-definition' instead.
1314 ;; - category :: option
1315 ;; - type :: alist (STRING . LIST)
1317 ;; + `:headline-levels' :: Maximum level being exported as an
1318 ;; headline. Comparison is done with the relative level of
1319 ;; headlines in the parse tree, not necessarily with their
1320 ;; actual level.
1321 ;; - category :: option
1322 ;; - type :: integer
1324 ;; + `:headline-offset' :: Difference between relative and real level
1325 ;; of headlines in the parse tree. For example, a value of -1
1326 ;; means a level 2 headline should be considered as level
1327 ;; 1 (cf. `org-export-get-relative-level').
1328 ;; - category :: tree
1329 ;; - type :: integer
1331 ;; + `:headline-numbering' :: Alist between headlines and their
1332 ;; numbering, as a list of numbers
1333 ;; (cf. `org-export-get-headline-number').
1334 ;; - category :: tree
1335 ;; - type :: alist (INTEGER . LIST)
1337 ;; + `:id-alist' :: Alist between ID strings and destination file's
1338 ;; path, relative to current directory. It is used by
1339 ;; `org-export-resolve-id-link' to resolve ID links targeting an
1340 ;; external file.
1341 ;; - category :: option
1342 ;; - type :: alist (STRING . STRING)
1344 ;; + `:ignore-list' :: List of elements and objects that should be
1345 ;; ignored during export.
1346 ;; - category :: tree
1347 ;; - type :: list of elements and objects
1349 ;; + `:input-buffer' :: Original buffer name.
1350 ;; - category :: option
1351 ;; - type :: string
1353 ;; + `:input-file' :: Full path to input file, if any.
1354 ;; - category :: option
1355 ;; - type :: string or nil
1357 ;; + `:keywords' :: List of keywords attached to data.
1358 ;; - category :: option
1359 ;; - type :: string
1361 ;; + `:language' :: Default language used for translations.
1362 ;; - category :: option
1363 ;; - type :: string
1365 ;; + `:output-file' :: Full path to output file, if any.
1366 ;; - category :: option
1367 ;; - type :: string or nil
1369 ;; + `:parse-tree' :: Whole parse tree, available at any time during
1370 ;; transcoding.
1371 ;; - category :: option
1372 ;; - type :: list (as returned by `org-element-parse-buffer')
1374 ;; + `:preserve-breaks' :: Non-nil means transcoding should preserve
1375 ;; all line breaks.
1376 ;; - category :: option
1377 ;; - type :: symbol (nil, t)
1379 ;; + `:section-numbers' :: Non-nil means transcoding should add
1380 ;; section numbers to headlines.
1381 ;; - category :: option
1382 ;; - type :: symbol (nil, t)
1384 ;; + `:select-tags' :: List of tags enforcing inclusion of sub-trees
1385 ;; in transcoding. When such a tag is present, subtrees without
1386 ;; it are de facto excluded from the process. See
1387 ;; `use-select-tags'.
1388 ;; - category :: option
1389 ;; - type :: list of strings
1391 ;; + `:time-stamp-file' :: Non-nil means transcoding should insert
1392 ;; a time stamp in the output.
1393 ;; - category :: option
1394 ;; - type :: symbol (nil, t)
1396 ;; + `:translate-alist' :: Alist between element and object types and
1397 ;; transcoding functions relative to the current back-end.
1398 ;; Special keys `inner-template', `template' and `plain-text' are
1399 ;; also possible.
1400 ;; - category :: option
1401 ;; - type :: alist (SYMBOL . FUNCTION)
1403 ;; + `:with-archived-trees' :: Non-nil when archived subtrees should
1404 ;; also be transcoded. If it is set to the `headline' symbol,
1405 ;; only the archived headline's name is retained.
1406 ;; - category :: option
1407 ;; - type :: symbol (nil, t, `headline')
1409 ;; + `:with-author' :: Non-nil means author's name should be included
1410 ;; in the output.
1411 ;; - category :: option
1412 ;; - type :: symbol (nil, t)
1414 ;; + `:with-clocks' :: Non-nil means clock keywords should be exported.
1415 ;; - category :: option
1416 ;; - type :: symbol (nil, t)
1418 ;; + `:with-creator' :: Non-nil means a creation sentence should be
1419 ;; inserted at the end of the transcoded string. If the value
1420 ;; is `comment', it should be commented.
1421 ;; - category :: option
1422 ;; - type :: symbol (`comment', nil, t)
1424 ;; + `:with-date' :: Non-nil means output should contain a date.
1425 ;; - category :: option
1426 ;; - type :. symbol (nil, t)
1428 ;; + `:with-drawers' :: Non-nil means drawers should be exported. If
1429 ;; its value is a list of names, only drawers with such names
1430 ;; will be transcoded. If that list starts with `not', drawer
1431 ;; with these names will be skipped.
1432 ;; - category :: option
1433 ;; - type :: symbol (nil, t) or list of strings
1435 ;; + `:with-email' :: Non-nil means output should contain author's
1436 ;; email.
1437 ;; - category :: option
1438 ;; - type :: symbol (nil, t)
1440 ;; + `:with-emphasize' :: Non-nil means emphasized text should be
1441 ;; interpreted.
1442 ;; - category :: option
1443 ;; - type :: symbol (nil, t)
1445 ;; + `:with-fixed-width' :: Non-nil if transcoder should export
1446 ;; strings starting with a colon as a fixed-with (verbatim) area.
1447 ;; - category :: option
1448 ;; - type :: symbol (nil, t)
1450 ;; + `:with-footnotes' :: Non-nil if transcoder should interpret
1451 ;; footnotes.
1452 ;; - category :: option
1453 ;; - type :: symbol (nil, t)
1455 ;; + `:with-latex' :: Non-nil means `latex-environment' elements and
1456 ;; `latex-fragment' objects should appear in export output. When
1457 ;; this property is set to `verbatim', they will be left as-is.
1458 ;; - category :: option
1459 ;; - type :: symbol (`verbatim', nil, t)
1461 ;; + `:with-planning' :: Non-nil means transcoding should include
1462 ;; planning info.
1463 ;; - category :: option
1464 ;; - type :: symbol (nil, t)
1466 ;; + `:with-priority' :: Non-nil means transcoding should include
1467 ;; priority cookies.
1468 ;; - category :: option
1469 ;; - type :: symbol (nil, t)
1471 ;; + `:with-smart-quotes' :: Non-nil means activate smart quotes in
1472 ;; plain text.
1473 ;; - category :: option
1474 ;; - type :: symbol (nil, t)
1476 ;; + `:with-special-strings' :: Non-nil means transcoding should
1477 ;; interpret special strings in plain text.
1478 ;; - category :: option
1479 ;; - type :: symbol (nil, t)
1481 ;; + `:with-sub-superscript' :: Non-nil means transcoding should
1482 ;; interpret subscript and superscript. With a value of "{}",
1483 ;; only interpret those using curly brackets.
1484 ;; - category :: option
1485 ;; - type :: symbol (nil, {}, t)
1487 ;; + `:with-tables' :: Non-nil means transcoding should export tables.
1488 ;; - category :: option
1489 ;; - type :: symbol (nil, t)
1491 ;; + `:with-tags' :: Non-nil means transcoding should keep tags in
1492 ;; headlines. A `not-in-toc' value will remove them from the
1493 ;; table of contents, if any, nonetheless.
1494 ;; - category :: option
1495 ;; - type :: symbol (nil, t, `not-in-toc')
1497 ;; + `:with-tasks' :: Non-nil means transcoding should include
1498 ;; headlines with a TODO keyword. A `todo' value will only
1499 ;; include headlines with a todo type keyword while a `done'
1500 ;; value will do the contrary. If a list of strings is provided,
1501 ;; only tasks with keywords belonging to that list will be kept.
1502 ;; - category :: option
1503 ;; - type :: symbol (t, todo, done, nil) or list of strings
1505 ;; + `:with-timestamps' :: Non-nil means transcoding should include
1506 ;; time stamps. Special value `active' (resp. `inactive') ask to
1507 ;; export only active (resp. inactive) timestamps. Otherwise,
1508 ;; completely remove them.
1509 ;; - category :: option
1510 ;; - type :: symbol: (`active', `inactive', t, nil)
1512 ;; + `:with-toc' :: Non-nil means that a table of contents has to be
1513 ;; added to the output. An integer value limits its depth.
1514 ;; - category :: option
1515 ;; - type :: symbol (nil, t or integer)
1517 ;; + `:with-todo-keywords' :: Non-nil means transcoding should
1518 ;; include TODO keywords.
1519 ;; - category :: option
1520 ;; - type :: symbol (nil, t)
1523 ;;;; Environment Options
1525 ;; Environment options encompass all parameters defined outside the
1526 ;; scope of the parsed data. They come from five sources, in
1527 ;; increasing precedence order:
1529 ;; - Global variables,
1530 ;; - Buffer's attributes,
1531 ;; - Options keyword symbols,
1532 ;; - Buffer keywords,
1533 ;; - Subtree properties.
1535 ;; The central internal function with regards to environment options
1536 ;; is `org-export-get-environment'. It updates global variables with
1537 ;; "#+BIND:" keywords, then retrieve and prioritize properties from
1538 ;; the different sources.
1540 ;; The internal functions doing the retrieval are:
1541 ;; `org-export--get-global-options',
1542 ;; `org-export--get-buffer-attributes',
1543 ;; `org-export--parse-option-keyword',
1544 ;; `org-export--get-subtree-options' and
1545 ;; `org-export--get-inbuffer-options'
1547 ;; Also, `org-export--list-bound-variables' collects bound variables
1548 ;; along with their value in order to set them as buffer local
1549 ;; variables later in the process.
1551 (defun org-export-get-environment (&optional backend subtreep ext-plist)
1552 "Collect export options from the current buffer.
1554 Optional argument BACKEND is an export back-end, as returned by
1555 `org-export-create-backend'.
1557 When optional argument SUBTREEP is non-nil, assume the export is
1558 done against the current sub-tree.
1560 Third optional argument EXT-PLIST is a property list with
1561 external parameters overriding Org default settings, but still
1562 inferior to file-local settings."
1563 ;; First install #+BIND variables since these must be set before
1564 ;; global options are read.
1565 (dolist (pair (org-export--list-bound-variables))
1566 (org-set-local (car pair) (nth 1 pair)))
1567 ;; Get and prioritize export options...
1568 (org-combine-plists
1569 ;; ... from global variables...
1570 (org-export--get-global-options backend)
1571 ;; ... from an external property list...
1572 ext-plist
1573 ;; ... from in-buffer settings...
1574 (org-export--get-inbuffer-options backend)
1575 ;; ... and from subtree, when appropriate.
1576 (and subtreep (org-export--get-subtree-options backend))
1577 ;; Eventually add misc. properties.
1578 (list
1579 :back-end
1580 backend
1581 :translate-alist (org-export-get-all-transcoders backend)
1582 :footnote-definition-alist
1583 ;; Footnotes definitions must be collected in the original
1584 ;; buffer, as there's no insurance that they will still be in
1585 ;; the parse tree, due to possible narrowing.
1586 (let (alist)
1587 (org-with-wide-buffer
1588 (goto-char (point-min))
1589 (while (re-search-forward org-footnote-re nil t)
1590 (backward-char)
1591 (let ((fn (save-match-data (org-element-context))))
1592 (case (org-element-type fn)
1593 (footnote-definition
1594 (push
1595 (cons (org-element-property :label fn)
1596 (let ((cbeg (org-element-property :contents-begin fn)))
1597 (when cbeg
1598 (org-element--parse-elements
1599 cbeg (org-element-property :contents-end fn)
1600 nil nil nil nil (list 'org-data nil)))))
1601 alist))
1602 (footnote-reference
1603 (let ((label (org-element-property :label fn))
1604 (cbeg (org-element-property :contents-begin fn)))
1605 (when (and label cbeg
1606 (eq (org-element-property :type fn) 'inline))
1607 (push
1608 (cons label
1609 (org-element-parse-secondary-string
1610 (buffer-substring
1611 cbeg (org-element-property :contents-end fn))
1612 (org-element-restriction 'footnote-reference)))
1613 alist)))))))
1614 alist))
1615 :id-alist
1616 ;; Collect id references.
1617 (let (alist)
1618 (org-with-wide-buffer
1619 (goto-char (point-min))
1620 (while (re-search-forward "\\[\\[id:\\S-+?\\]" nil t)
1621 (let ((link (org-element-context)))
1622 (when (eq (org-element-type link) 'link)
1623 (let* ((id (org-element-property :path link))
1624 (file (org-id-find-id-file id)))
1625 (when file
1626 (push (cons id (file-relative-name file)) alist)))))))
1627 alist))))
1629 (defun org-export--parse-option-keyword (options &optional backend)
1630 "Parse an OPTIONS line and return values as a plist.
1631 Optional argument BACKEND is an export back-end, as returned by,
1632 e.g., `org-export-create-backend'. It specifies which back-end
1633 specific items to read, if any."
1634 (let* ((all
1635 ;; Priority is given to back-end specific options.
1636 (append (and backend (org-export-get-all-options backend))
1637 org-export-options-alist))
1638 plist)
1639 (dolist (option all)
1640 (let ((property (car option))
1641 (item (nth 2 option)))
1642 (when (and item
1643 (not (plist-member plist property))
1644 (string-match (concat "\\(\\`\\|[ \t]\\)"
1645 (regexp-quote item)
1646 ":\\(([^)\n]+)\\|[^ \t\n\r;,.]*\\)")
1647 options))
1648 (setq plist (plist-put plist
1649 property
1650 (car (read-from-string
1651 (match-string 2 options))))))))
1652 plist))
1654 (defun org-export--get-subtree-options (&optional backend)
1655 "Get export options in subtree at point.
1656 Optional argument BACKEND is an export back-end, as returned by,
1657 e.g., `org-export-create-backend'. It specifies back-end used
1658 for export. Return options as a plist."
1659 ;; For each buffer keyword, create a headline property setting the
1660 ;; same property in communication channel. The name for the property
1661 ;; is the keyword with "EXPORT_" appended to it.
1662 (org-with-wide-buffer
1663 (let (prop plist)
1664 ;; Make sure point is at a heading.
1665 (if (org-at-heading-p) (org-up-heading-safe) (org-back-to-heading t))
1666 ;; Take care of EXPORT_TITLE. If it isn't defined, use headline's
1667 ;; title (with no todo keyword, priority cookie or tag) as its
1668 ;; fallback value.
1669 (when (setq prop (or (org-entry-get (point) "EXPORT_TITLE")
1670 (progn (looking-at org-complex-heading-regexp)
1671 (org-match-string-no-properties 4))))
1672 (setq plist
1673 (plist-put
1674 plist :title
1675 (org-element-parse-secondary-string
1676 prop (org-element-restriction 'keyword)))))
1677 ;; EXPORT_OPTIONS are parsed in a non-standard way.
1678 (when (setq prop (org-entry-get (point) "EXPORT_OPTIONS"))
1679 (setq plist
1680 (nconc plist (org-export--parse-option-keyword prop backend))))
1681 ;; Handle other keywords. TITLE keyword is excluded as it has
1682 ;; been handled already.
1683 (let ((seen '("TITLE")))
1684 (mapc
1685 (lambda (option)
1686 (let ((property (car option))
1687 (keyword (nth 1 option)))
1688 (when (and keyword (not (member keyword seen)))
1689 (let* ((subtree-prop (concat "EXPORT_" keyword))
1690 ;; Export properties are not case-sensitive.
1691 (value (let ((case-fold-search t))
1692 (org-entry-get (point) subtree-prop))))
1693 (push keyword seen)
1694 (when (and value (not (plist-member plist property)))
1695 (setq plist
1696 (plist-put
1697 plist
1698 property
1699 (cond
1700 ;; Parse VALUE if required.
1701 ((member keyword org-element-document-properties)
1702 (org-element-parse-secondary-string
1703 value (org-element-restriction 'keyword)))
1704 ;; If BEHAVIOR is `split' expected value is
1705 ;; a list of strings, not a string.
1706 ((eq (nth 4 option) 'split) (org-split-string value))
1707 (t value)))))))))
1708 ;; Look for both general keywords and back-end specific
1709 ;; options, with priority given to the latter.
1710 (append (and backend (org-export-get-all-options backend))
1711 org-export-options-alist)))
1712 ;; Return value.
1713 plist)))
1715 (defun org-export--get-inbuffer-options (&optional backend)
1716 "Return current buffer export options, as a plist.
1718 Optional argument BACKEND, when non-nil, is an export back-end,
1719 as returned by, e.g., `org-export-create-backend'. It specifies
1720 which back-end specific options should also be read in the
1721 process.
1723 Assume buffer is in Org mode. Narrowing, if any, is ignored."
1724 (let* (plist
1725 get-options ; For byte-compiler.
1726 (case-fold-search t)
1727 (options (append
1728 ;; Priority is given to back-end specific options.
1729 (and backend (org-export-get-all-options backend))
1730 org-export-options-alist))
1731 (regexp (format "^[ \t]*#\\+%s:"
1732 (regexp-opt (nconc (delq nil (mapcar 'cadr options))
1733 org-export-special-keywords))))
1734 (find-properties
1735 (lambda (keyword)
1736 ;; Return all properties associated to KEYWORD.
1737 (let (properties)
1738 (dolist (option options properties)
1739 (when (equal (nth 1 option) keyword)
1740 (pushnew (car option) properties))))))
1741 (get-options
1742 (lambda (&optional files plist)
1743 ;; Recursively read keywords in buffer. FILES is a list
1744 ;; of files read so far. PLIST is the current property
1745 ;; list obtained.
1746 (org-with-wide-buffer
1747 (goto-char (point-min))
1748 (while (re-search-forward regexp nil t)
1749 (let ((element (org-element-at-point)))
1750 (when (eq (org-element-type element) 'keyword)
1751 (let ((key (org-element-property :key element))
1752 (val (org-element-property :value element)))
1753 (cond
1754 ;; Options in `org-export-special-keywords'.
1755 ((equal key "SETUPFILE")
1756 (let ((file (expand-file-name
1757 (org-remove-double-quotes (org-trim val)))))
1758 ;; Avoid circular dependencies.
1759 (unless (member file files)
1760 (with-temp-buffer
1761 (insert (org-file-contents file 'noerror))
1762 (let ((org-inhibit-startup t)) (org-mode))
1763 (setq plist (funcall get-options
1764 (cons file files) plist))))))
1765 ((equal key "OPTIONS")
1766 (setq plist
1767 (org-combine-plists
1768 plist
1769 (org-export--parse-option-keyword val backend))))
1770 ((equal key "FILETAGS")
1771 (setq plist
1772 (org-combine-plists
1773 plist
1774 (list :filetags
1775 (org-uniquify
1776 (append (org-split-string val ":")
1777 (plist-get plist :filetags)))))))
1779 ;; Options in `org-export-options-alist'.
1780 (dolist (property (funcall find-properties key))
1781 (let ((behaviour (nth 4 (assq property options))))
1782 (setq plist
1783 (plist-put
1784 plist property
1785 ;; Handle value depending on specified
1786 ;; BEHAVIOR.
1787 (case behaviour
1788 (space
1789 (if (not (plist-get plist property))
1790 (org-trim val)
1791 (concat (plist-get plist property)
1793 (org-trim val))))
1794 (newline
1795 (org-trim
1796 (concat (plist-get plist property)
1797 "\n"
1798 (org-trim val))))
1799 (split `(,@(plist-get plist property)
1800 ,@(org-split-string val)))
1801 ('t val)
1802 (otherwise
1803 (if (not (plist-member plist property)) val
1804 (plist-get plist property))))))))))))))
1805 ;; Return final value.
1806 plist))))
1807 ;; Read options in the current buffer.
1808 (setq plist (funcall get-options
1809 (and buffer-file-name (list buffer-file-name)) nil))
1810 ;; Parse keywords specified in `org-element-document-properties'
1811 ;; and return PLIST.
1812 (dolist (keyword org-element-document-properties plist)
1813 (dolist (property (funcall find-properties keyword))
1814 (let ((value (plist-get plist property)))
1815 (when (stringp value)
1816 (setq plist
1817 (plist-put plist property
1818 (org-element-parse-secondary-string
1819 value (org-element-restriction 'keyword))))))))))
1821 (defun org-export--get-buffer-attributes ()
1822 "Return properties related to buffer attributes, as a plist."
1823 (list :input-buffer (buffer-name (buffer-base-buffer))
1824 :input-file (buffer-file-name (buffer-base-buffer))))
1826 (defun org-export--get-global-options (&optional backend)
1827 "Return global export options as a plist.
1828 Optional argument BACKEND, if non-nil, is an export back-end, as
1829 returned by, e.g., `org-export-create-backend'. It specifies
1830 which back-end specific export options should also be read in the
1831 process."
1832 (let (plist
1833 ;; Priority is given to back-end specific options.
1834 (all (append (and backend (org-export-get-all-options backend))
1835 org-export-options-alist)))
1836 (dolist (cell all plist)
1837 (let ((prop (car cell)))
1838 (unless (plist-member plist prop)
1839 (setq plist
1840 (plist-put
1841 plist
1842 prop
1843 ;; Evaluate default value provided. If keyword is
1844 ;; a member of `org-element-document-properties',
1845 ;; parse it as a secondary string before storing it.
1846 (let ((value (eval (nth 3 cell))))
1847 (if (and (stringp value)
1848 (member (nth 1 cell)
1849 org-element-document-properties))
1850 (org-element-parse-secondary-string
1851 value (org-element-restriction 'keyword))
1852 value)))))))))
1854 (defun org-export--list-bound-variables ()
1855 "Return variables bound from BIND keywords in current buffer.
1856 Also look for BIND keywords in setup files. The return value is
1857 an alist where associations are (VARIABLE-NAME VALUE)."
1858 (when org-export-allow-bind-keywords
1859 (let* (collect-bind ; For byte-compiler.
1860 (collect-bind
1861 (lambda (files alist)
1862 ;; Return an alist between variable names and their
1863 ;; value. FILES is a list of setup files names read so
1864 ;; far, used to avoid circular dependencies. ALIST is
1865 ;; the alist collected so far.
1866 (let ((case-fold-search t))
1867 (org-with-wide-buffer
1868 (goto-char (point-min))
1869 (while (re-search-forward
1870 "^[ \t]*#\\+\\(BIND\\|SETUPFILE\\):" nil t)
1871 (let ((element (org-element-at-point)))
1872 (when (eq (org-element-type element) 'keyword)
1873 (let ((val (org-element-property :value element)))
1874 (if (equal (org-element-property :key element) "BIND")
1875 (push (read (format "(%s)" val)) alist)
1876 ;; Enter setup file.
1877 (let ((file (expand-file-name
1878 (org-remove-double-quotes val))))
1879 (unless (member file files)
1880 (with-temp-buffer
1881 (let ((org-inhibit-startup t)) (org-mode))
1882 (insert (org-file-contents file 'noerror))
1883 (setq alist
1884 (funcall collect-bind
1885 (cons file files)
1886 alist))))))))))
1887 alist)))))
1888 ;; Return value in appropriate order of appearance.
1889 (nreverse (funcall collect-bind nil nil)))))
1891 ;; defsubst org-export-get-parent must be defined before first use,
1892 ;; was originally defined in the topology section
1894 (defsubst org-export-get-parent (blob)
1895 "Return BLOB parent or nil.
1896 BLOB is the element or object considered."
1897 (org-element-property :parent blob))
1899 ;;;; Tree Properties
1901 ;; Tree properties are information extracted from parse tree. They
1902 ;; are initialized at the beginning of the transcoding process by
1903 ;; `org-export-collect-tree-properties'.
1905 ;; Dedicated functions focus on computing the value of specific tree
1906 ;; properties during initialization. Thus,
1907 ;; `org-export--populate-ignore-list' lists elements and objects that
1908 ;; should be skipped during export, `org-export--get-min-level' gets
1909 ;; the minimal exportable level, used as a basis to compute relative
1910 ;; level for headlines. Eventually
1911 ;; `org-export--collect-headline-numbering' builds an alist between
1912 ;; headlines and their numbering.
1914 (defun org-export-collect-tree-properties (data info)
1915 "Extract tree properties from parse tree.
1917 DATA is the parse tree from which information is retrieved. INFO
1918 is a list holding export options.
1920 Following tree properties are set or updated:
1922 `:exported-data' Hash table used to memoize results from
1923 `org-export-data'.
1925 `:footnote-definition-alist' List of footnotes definitions in
1926 original buffer and current parse tree.
1928 `:headline-offset' Offset between true level of headlines and
1929 local level. An offset of -1 means a headline
1930 of level 2 should be considered as a level
1931 1 headline in the context.
1933 `:headline-numbering' Alist of all headlines as key an the
1934 associated numbering as value.
1936 `:ignore-list' List of elements that should be ignored during
1937 export.
1939 Return updated plist."
1940 ;; Install the parse tree in the communication channel, in order to
1941 ;; use `org-export-get-genealogy' and al.
1942 (setq info (plist-put info :parse-tree data))
1943 ;; Get the list of elements and objects to ignore, and put it into
1944 ;; `:ignore-list'. Do not overwrite any user ignore that might have
1945 ;; been done during parse tree filtering.
1946 (setq info
1947 (plist-put info
1948 :ignore-list
1949 (append (org-export--populate-ignore-list data info)
1950 (plist-get info :ignore-list))))
1951 ;; Compute `:headline-offset' in order to be able to use
1952 ;; `org-export-get-relative-level'.
1953 (setq info
1954 (plist-put info
1955 :headline-offset
1956 (- 1 (org-export--get-min-level data info))))
1957 ;; Footnote definitions in parse tree override those stored in
1958 ;; `:footnote-definition-alist'. This way, any change to
1959 ;; a definition in the parse tree (e.g., through a parse tree
1960 ;; filter) propagates into the alist.
1961 (let ((defs (plist-get info :footnote-definition-alist)))
1962 (org-element-map data '(footnote-definition footnote-reference)
1963 (lambda (fn)
1964 (cond ((eq (org-element-type fn) 'footnote-definition)
1965 (push (cons (org-element-property :label fn)
1966 (append '(org-data nil) (org-element-contents fn)))
1967 defs))
1968 ((eq (org-element-property :type fn) 'inline)
1969 (push (cons (org-element-property :label fn)
1970 (org-element-contents fn))
1971 defs)))))
1972 (setq info (plist-put info :footnote-definition-alist defs)))
1973 ;; Properties order doesn't matter: get the rest of the tree
1974 ;; properties.
1975 (nconc
1976 `(:headline-numbering ,(org-export--collect-headline-numbering data info)
1977 :exported-data ,(make-hash-table :test 'eq :size 4001))
1978 info))
1980 (defun org-export--get-min-level (data options)
1981 "Return minimum exportable headline's level in DATA.
1982 DATA is parsed tree as returned by `org-element-parse-buffer'.
1983 OPTIONS is a plist holding export options."
1984 (catch 'exit
1985 (let ((min-level 10000))
1986 (mapc
1987 (lambda (blob)
1988 (when (and (eq (org-element-type blob) 'headline)
1989 (not (org-element-property :footnote-section-p blob))
1990 (not (memq blob (plist-get options :ignore-list))))
1991 (setq min-level (min (org-element-property :level blob) min-level)))
1992 (when (= min-level 1) (throw 'exit 1)))
1993 (org-element-contents data))
1994 ;; If no headline was found, for the sake of consistency, set
1995 ;; minimum level to 1 nonetheless.
1996 (if (= min-level 10000) 1 min-level))))
1998 (defun org-export--collect-headline-numbering (data options)
1999 "Return numbering of all exportable headlines in a parse tree.
2001 DATA is the parse tree. OPTIONS is the plist holding export
2002 options.
2004 Return an alist whose key is a headline and value is its
2005 associated numbering \(in the shape of a list of numbers\) or nil
2006 for a footnotes section."
2007 (let ((numbering (make-vector org-export-max-depth 0)))
2008 (org-element-map data 'headline
2009 (lambda (headline)
2010 (unless (org-element-property :footnote-section-p headline)
2011 (let ((relative-level
2012 (1- (org-export-get-relative-level headline options))))
2013 (cons
2014 headline
2015 (loop for n across numbering
2016 for idx from 0 to org-export-max-depth
2017 when (< idx relative-level) collect n
2018 when (= idx relative-level) collect (aset numbering idx (1+ n))
2019 when (> idx relative-level) do (aset numbering idx 0))))))
2020 options)))
2022 (defun org-export--populate-ignore-list (data options)
2023 "Return list of elements and objects to ignore during export.
2024 DATA is the parse tree to traverse. OPTIONS is the plist holding
2025 export options."
2026 (let* (walk-data
2027 ;; First find trees containing a select tag, if any.
2028 (selected (org-export--selected-trees data options))
2029 ;; If a select tag is active, also ignore the section before
2030 ;; the first headline, if any.
2031 (ignore (and selected
2032 (let ((first-element (car (org-element-contents data))))
2033 (and (eq (org-element-type first-element) 'section)
2034 first-element))))
2035 (walk-data
2036 (lambda (data)
2037 ;; Collect ignored elements or objects into IGNORE-LIST.
2038 (let ((type (org-element-type data)))
2039 (if (org-export--skip-p data options selected) (push data ignore)
2040 (if (and (eq type 'headline)
2041 (eq (plist-get options :with-archived-trees) 'headline)
2042 (org-element-property :archivedp data))
2043 ;; If headline is archived but tree below has
2044 ;; to be skipped, add it to ignore list.
2045 (dolist (element (org-element-contents data))
2046 (push element ignore))
2047 ;; Move into secondary string, if any.
2048 (let ((sec-prop
2049 (cdr (assq type org-element-secondary-value-alist))))
2050 (when sec-prop
2051 (mapc walk-data (org-element-property sec-prop data))))
2052 ;; Move into recursive objects/elements.
2053 (mapc walk-data (org-element-contents data))))))))
2054 ;; Main call.
2055 (funcall walk-data data)
2056 ;; Return value.
2057 ignore))
2059 (defun org-export--selected-trees (data info)
2060 "Return list of headlines and inlinetasks with a select tag in their tree.
2061 DATA is parsed data as returned by `org-element-parse-buffer'.
2062 INFO is a plist holding export options."
2063 (let* (selected-trees
2064 walk-data ; For byte-compiler.
2065 (walk-data
2066 (function
2067 (lambda (data genealogy)
2068 (let ((type (org-element-type data)))
2069 (cond
2070 ((memq type '(headline inlinetask))
2071 (let ((tags (org-element-property :tags data)))
2072 (if (loop for tag in (plist-get info :select-tags)
2073 thereis (member tag tags))
2074 ;; When a select tag is found, mark full
2075 ;; genealogy and every headline within the tree
2076 ;; as acceptable.
2077 (setq selected-trees
2078 (append
2079 genealogy
2080 (org-element-map data '(headline inlinetask)
2081 'identity)
2082 selected-trees))
2083 ;; If at a headline, continue searching in tree,
2084 ;; recursively.
2085 (when (eq type 'headline)
2086 (mapc (lambda (el)
2087 (funcall walk-data el (cons data genealogy)))
2088 (org-element-contents data))))))
2089 ((or (eq type 'org-data)
2090 (memq type org-element-greater-elements))
2091 (mapc (lambda (el) (funcall walk-data el genealogy))
2092 (org-element-contents data)))))))))
2093 (funcall walk-data data nil)
2094 selected-trees))
2096 (defun org-export--skip-p (blob options selected)
2097 "Non-nil when element or object BLOB should be skipped during export.
2098 OPTIONS is the plist holding export options. SELECTED, when
2099 non-nil, is a list of headlines or inlinetasks belonging to
2100 a tree with a select tag."
2101 (case (org-element-type blob)
2102 (clock (not (plist-get options :with-clocks)))
2103 (drawer
2104 (let ((with-drawers-p (plist-get options :with-drawers)))
2105 (or (not with-drawers-p)
2106 (and (consp with-drawers-p)
2107 ;; If `:with-drawers' value starts with `not', ignore
2108 ;; every drawer whose name belong to that list.
2109 ;; Otherwise, ignore drawers whose name isn't in that
2110 ;; list.
2111 (let ((name (org-element-property :drawer-name blob)))
2112 (if (eq (car with-drawers-p) 'not)
2113 (member-ignore-case name (cdr with-drawers-p))
2114 (not (member-ignore-case name with-drawers-p))))))))
2115 (fixed-width (not (plist-get options :with-fixed-width)))
2116 ((footnote-definition footnote-reference)
2117 (not (plist-get options :with-footnotes)))
2118 ((headline inlinetask)
2119 (let ((with-tasks (plist-get options :with-tasks))
2120 (todo (org-element-property :todo-keyword blob))
2121 (todo-type (org-element-property :todo-type blob))
2122 (archived (plist-get options :with-archived-trees))
2123 (tags (org-element-property :tags blob)))
2125 (and (eq (org-element-type blob) 'inlinetask)
2126 (not (plist-get options :with-inlinetasks)))
2127 ;; Ignore subtrees with an exclude tag.
2128 (loop for k in (plist-get options :exclude-tags)
2129 thereis (member k tags))
2130 ;; When a select tag is present in the buffer, ignore any tree
2131 ;; without it.
2132 (and selected (not (memq blob selected)))
2133 ;; Ignore commented sub-trees.
2134 (org-element-property :commentedp blob)
2135 ;; Ignore archived subtrees if `:with-archived-trees' is nil.
2136 (and (not archived) (org-element-property :archivedp blob))
2137 ;; Ignore tasks, if specified by `:with-tasks' property.
2138 (and todo
2139 (or (not with-tasks)
2140 (and (memq with-tasks '(todo done))
2141 (not (eq todo-type with-tasks)))
2142 (and (consp with-tasks) (not (member todo with-tasks))))))))
2143 ((latex-environment latex-fragment) (not (plist-get options :with-latex)))
2144 (node-property
2145 (let ((properties-set (plist-get options :with-properties)))
2146 (cond ((null properties-set) t)
2147 ((consp properties-set)
2148 (not (member-ignore-case (org-element-property :key blob)
2149 properties-set))))))
2150 (planning (not (plist-get options :with-planning)))
2151 (property-drawer (not (plist-get options :with-properties)))
2152 (statistics-cookie (not (plist-get options :with-statistics-cookies)))
2153 (table (not (plist-get options :with-tables)))
2154 (table-cell
2155 (and (org-export-table-has-special-column-p
2156 (org-export-get-parent-table blob))
2157 (not (org-export-get-previous-element blob options))))
2158 (table-row (org-export-table-row-is-special-p blob options))
2159 (timestamp
2160 ;; `:with-timestamps' only applies to isolated timestamps
2161 ;; objects, i.e. timestamp objects in a paragraph containing only
2162 ;; timestamps and whitespaces.
2163 (when (let ((parent (org-export-get-parent-element blob)))
2164 (and (memq (org-element-type parent) '(paragraph verse-block))
2165 (not (org-element-map parent
2166 (cons 'plain-text
2167 (remq 'timestamp org-element-all-objects))
2168 (lambda (obj)
2169 (or (not (stringp obj)) (org-string-nw-p obj)))
2170 options t))))
2171 (case (plist-get options :with-timestamps)
2172 ('nil t)
2173 (active
2174 (not (memq (org-element-property :type blob) '(active active-range))))
2175 (inactive
2176 (not (memq (org-element-property :type blob)
2177 '(inactive inactive-range)))))))))
2180 ;;; The Transcoder
2182 ;; `org-export-data' reads a parse tree (obtained with, i.e.
2183 ;; `org-element-parse-buffer') and transcodes it into a specified
2184 ;; back-end output. It takes care of filtering out elements or
2185 ;; objects according to export options and organizing the output blank
2186 ;; lines and white space are preserved. The function memoizes its
2187 ;; results, so it is cheap to call it within transcoders.
2189 ;; It is possible to modify locally the back-end used by
2190 ;; `org-export-data' or even use a temporary back-end by using
2191 ;; `org-export-data-with-backend'.
2193 ;; Internally, three functions handle the filtering of objects and
2194 ;; elements during the export. In particular,
2195 ;; `org-export-ignore-element' marks an element or object so future
2196 ;; parse tree traversals skip it and `org-export-expand' transforms
2197 ;; the others back into their original shape.
2199 ;; `org-export-transcoder' is an accessor returning appropriate
2200 ;; translator function for a given element or object.
2202 (defun org-export-transcoder (blob info)
2203 "Return appropriate transcoder for BLOB.
2204 INFO is a plist containing export directives."
2205 (let ((type (org-element-type blob)))
2206 ;; Return contents only for complete parse trees.
2207 (if (eq type 'org-data) (lambda (blob contents info) contents)
2208 (let ((transcoder (cdr (assq type (plist-get info :translate-alist)))))
2209 (and (functionp transcoder) transcoder)))))
2211 (defun org-export-data (data info)
2212 "Convert DATA into current back-end format.
2214 DATA is a parse tree, an element or an object or a secondary
2215 string. INFO is a plist holding export options.
2217 Return a string."
2218 (or (gethash data (plist-get info :exported-data))
2219 (let* ((type (org-element-type data))
2220 (results
2221 (cond
2222 ;; Ignored element/object.
2223 ((memq data (plist-get info :ignore-list)) nil)
2224 ;; Plain text.
2225 ((eq type 'plain-text)
2226 (org-export-filter-apply-functions
2227 (plist-get info :filter-plain-text)
2228 (let ((transcoder (org-export-transcoder data info)))
2229 (if transcoder (funcall transcoder data info) data))
2230 info))
2231 ;; Secondary string.
2232 ((not type)
2233 (mapconcat (lambda (obj) (org-export-data obj info)) data ""))
2234 ;; Element/Object without contents or, as a special
2235 ;; case, headline with archive tag and archived trees
2236 ;; restricted to title only.
2237 ((or (not (org-element-contents data))
2238 (and (eq type 'headline)
2239 (eq (plist-get info :with-archived-trees) 'headline)
2240 (org-element-property :archivedp data)))
2241 (let ((transcoder (org-export-transcoder data info)))
2242 (or (and (functionp transcoder)
2243 (funcall transcoder data nil info))
2244 ;; Export snippets never return a nil value so
2245 ;; that white spaces following them are never
2246 ;; ignored.
2247 (and (eq type 'export-snippet) ""))))
2248 ;; Element/Object with contents.
2250 (let ((transcoder (org-export-transcoder data info)))
2251 (when transcoder
2252 (let* ((greaterp (memq type org-element-greater-elements))
2253 (objectp
2254 (and (not greaterp)
2255 (memq type org-element-recursive-objects)))
2256 (contents
2257 (mapconcat
2258 (lambda (element) (org-export-data element info))
2259 (org-element-contents
2260 (if (or greaterp objectp) data
2261 ;; Elements directly containing
2262 ;; objects must have their indentation
2263 ;; normalized first.
2264 (org-element-normalize-contents
2265 data
2266 ;; When normalizing contents of the
2267 ;; first paragraph in an item or
2268 ;; a footnote definition, ignore
2269 ;; first line's indentation: there is
2270 ;; none and it might be misleading.
2271 (when (eq type 'paragraph)
2272 (let ((parent (org-export-get-parent data)))
2273 (and
2274 (eq (car (org-element-contents parent))
2275 data)
2276 (memq (org-element-type parent)
2277 '(footnote-definition item))))))))
2278 "")))
2279 (funcall transcoder data
2280 (if (not greaterp) contents
2281 (org-element-normalize-string contents))
2282 info))))))))
2283 ;; Final result will be memoized before being returned.
2284 (puthash
2285 data
2286 (cond
2287 ((not results) "")
2288 ((memq type '(org-data plain-text nil)) results)
2289 ;; Append the same white space between elements or objects
2290 ;; as in the original buffer, and call appropriate filters.
2292 (let ((results
2293 (org-export-filter-apply-functions
2294 (plist-get info (intern (format ":filter-%s" type)))
2295 (let ((post-blank (or (org-element-property :post-blank data)
2296 0)))
2297 (if (memq type org-element-all-elements)
2298 (concat (org-element-normalize-string results)
2299 (make-string post-blank ?\n))
2300 (concat results (make-string post-blank ?\s))))
2301 info)))
2302 results)))
2303 (plist-get info :exported-data)))))
2305 (defun org-export-data-with-backend (data backend info)
2306 "Convert DATA into BACKEND format.
2308 DATA is an element, an object, a secondary string or a string.
2309 BACKEND is a symbol. INFO is a plist used as a communication
2310 channel.
2312 Unlike to `org-export-with-backend', this function will
2313 recursively convert DATA using BACKEND translation table."
2314 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
2315 (org-export-data
2316 data
2317 ;; Set-up a new communication channel with translations defined in
2318 ;; BACKEND as the translate table and a new hash table for
2319 ;; memoization.
2320 (org-combine-plists
2321 info
2322 (list :back-end backend
2323 :translate-alist (org-export-get-all-transcoders backend)
2324 ;; Size of the hash table is reduced since this function
2325 ;; will probably be used on small trees.
2326 :exported-data (make-hash-table :test 'eq :size 401)))))
2328 (defun org-export-remove-uninterpreted-data (data info)
2329 "Change uninterpreted elements back into Org syntax.
2330 DATA is the parse tree. INFO is a plist containing export
2331 options. Each uninterpreted element or object is changed back
2332 into a string. Contents, if any, are not modified. The parse
2333 tree is modified by side effect and returned by the function."
2334 (org-export--remove-uninterpreted-data-1 data info)
2335 (dolist (prop '(:author :date :title))
2336 (plist-put info
2337 prop
2338 (org-export--remove-uninterpreted-data-1
2339 (plist-get info prop)
2340 info))))
2342 (defun org-export--remove-uninterpreted-data-1 (data info)
2343 "Change uninterpreted elements back into Org syntax.
2344 DATA is a parse tree or a secondary string. INFO is a plist
2345 containing export options. It is modified by side effect and
2346 returned by the function."
2347 (org-element-map data
2348 '(entity bold italic latex-environment latex-fragment strike-through
2349 subscript superscript underline)
2350 #'(lambda (blob)
2351 (let ((new
2352 (case (org-element-type blob)
2353 ;; ... entities...
2354 (entity
2355 (and (not (plist-get info :with-entities))
2356 (list (concat
2357 (org-export-expand blob nil)
2358 (make-string
2359 (or (org-element-property :post-blank blob) 0)
2360 ?\s)))))
2361 ;; ... emphasis...
2362 ((bold italic strike-through underline)
2363 (and (not (plist-get info :with-emphasize))
2364 (let ((marker (case (org-element-type blob)
2365 (bold "*")
2366 (italic "/")
2367 (strike-through "+")
2368 (underline "_"))))
2369 (append
2370 (list marker)
2371 (org-element-contents blob)
2372 (list (concat
2373 marker
2374 (make-string
2375 (or (org-element-property :post-blank blob)
2377 ?\s)))))))
2378 ;; ... LaTeX environments and fragments...
2379 ((latex-environment latex-fragment)
2380 (and (eq (plist-get info :with-latex) 'verbatim)
2381 (list (org-export-expand blob nil))))
2382 ;; ... sub/superscripts...
2383 ((subscript superscript)
2384 (let ((sub/super-p (plist-get info :with-sub-superscript))
2385 (bracketp (org-element-property :use-brackets-p blob)))
2386 (and (or (not sub/super-p)
2387 (and (eq sub/super-p '{}) (not bracketp)))
2388 (append
2389 (list (concat
2390 (if (eq (org-element-type blob) 'subscript)
2392 "^")
2393 (and bracketp "{")))
2394 (org-element-contents blob)
2395 (list (concat
2396 (and bracketp "}")
2397 (and (org-element-property :post-blank blob)
2398 (make-string
2399 (org-element-property :post-blank blob)
2400 ?\s)))))))))))
2401 (when new
2402 ;; Splice NEW at BLOB location in parse tree.
2403 (dolist (e new (org-element-extract-element blob))
2404 (unless (string= e "") (org-element-insert-before e blob))))))
2405 info)
2406 ;; Return modified parse tree.
2407 data)
2409 (defun org-export-expand (blob contents &optional with-affiliated)
2410 "Expand a parsed element or object to its original state.
2412 BLOB is either an element or an object. CONTENTS is its
2413 contents, as a string or nil.
2415 When optional argument WITH-AFFILIATED is non-nil, add affiliated
2416 keywords before output."
2417 (let ((type (org-element-type blob)))
2418 (concat (and with-affiliated (memq type org-element-all-elements)
2419 (org-element--interpret-affiliated-keywords blob))
2420 (funcall (intern (format "org-element-%s-interpreter" type))
2421 blob contents))))
2423 (defun org-export-ignore-element (element info)
2424 "Add ELEMENT to `:ignore-list' in INFO.
2426 Any element in `:ignore-list' will be skipped when using
2427 `org-element-map'. INFO is modified by side effects."
2428 (plist-put info :ignore-list (cons element (plist-get info :ignore-list))))
2432 ;;; The Filter System
2434 ;; Filters allow end-users to tweak easily the transcoded output.
2435 ;; They are the functional counterpart of hooks, as every filter in
2436 ;; a set is applied to the return value of the previous one.
2438 ;; Every set is back-end agnostic. Although, a filter is always
2439 ;; called, in addition to the string it applies to, with the back-end
2440 ;; used as argument, so it's easy for the end-user to add back-end
2441 ;; specific filters in the set. The communication channel, as
2442 ;; a plist, is required as the third argument.
2444 ;; From the developer side, filters sets can be installed in the
2445 ;; process with the help of `org-export-define-backend', which
2446 ;; internally stores filters as an alist. Each association has a key
2447 ;; among the following symbols and a function or a list of functions
2448 ;; as value.
2450 ;; - `:filter-options' applies to the property list containing export
2451 ;; options. Unlike to other filters, functions in this list accept
2452 ;; two arguments instead of three: the property list containing
2453 ;; export options and the back-end. Users can set its value through
2454 ;; `org-export-filter-options-functions' variable.
2456 ;; - `:filter-parse-tree' applies directly to the complete parsed
2457 ;; tree. Users can set it through
2458 ;; `org-export-filter-parse-tree-functions' variable.
2460 ;; - `:filter-body' applies to the body of the output, before template
2461 ;; translator chimes in. Users can set it through
2462 ;; `org-export-filter-body-functions' variable.
2464 ;; - `:filter-final-output' applies to the final transcoded string.
2465 ;; Users can set it with `org-export-filter-final-output-functions'
2466 ;; variable.
2468 ;; - `:filter-plain-text' applies to any string not recognized as Org
2469 ;; syntax. `org-export-filter-plain-text-functions' allows users to
2470 ;; configure it.
2472 ;; - `:filter-TYPE' applies on the string returned after an element or
2473 ;; object of type TYPE has been transcoded. A user can modify
2474 ;; `org-export-filter-TYPE-functions' to install these filters.
2476 ;; All filters sets are applied with
2477 ;; `org-export-filter-apply-functions' function. Filters in a set are
2478 ;; applied in a LIFO fashion. It allows developers to be sure that
2479 ;; their filters will be applied first.
2481 ;; Filters properties are installed in communication channel with
2482 ;; `org-export-install-filters' function.
2484 ;; Eventually, two hooks (`org-export-before-processing-hook' and
2485 ;; `org-export-before-parsing-hook') are run at the beginning of the
2486 ;; export process and just before parsing to allow for heavy structure
2487 ;; modifications.
2490 ;;;; Hooks
2492 (defvar org-export-before-processing-hook nil
2493 "Hook run at the beginning of the export process.
2495 This is run before include keywords and macros are expanded and
2496 Babel code blocks executed, on a copy of the original buffer
2497 being exported. Visibility and narrowing are preserved. Point
2498 is at the beginning of the buffer.
2500 Every function in this hook will be called with one argument: the
2501 back-end currently used, as a symbol.")
2503 (defvar org-export-before-parsing-hook nil
2504 "Hook run before parsing an export buffer.
2506 This is run after include keywords and macros have been expanded
2507 and Babel code blocks executed, on a copy of the original buffer
2508 being exported. Visibility and narrowing are preserved. Point
2509 is at the beginning of the buffer.
2511 Every function in this hook will be called with one argument: the
2512 back-end currently used, as a symbol.")
2515 ;;;; Special Filters
2517 (defvar org-export-filter-options-functions nil
2518 "List of functions applied to the export options.
2519 Each filter is called with two arguments: the export options, as
2520 a plist, and the back-end, as a symbol. It must return
2521 a property list containing export options.")
2523 (defvar org-export-filter-parse-tree-functions nil
2524 "List of functions applied to the parsed tree.
2525 Each filter is called with three arguments: the parse tree, as
2526 returned by `org-element-parse-buffer', the back-end, as
2527 a symbol, and the communication channel, as a plist. It must
2528 return the modified parse tree to transcode.")
2530 (defvar org-export-filter-plain-text-functions nil
2531 "List of functions applied to plain text.
2532 Each filter is called with three arguments: a string which
2533 contains no Org syntax, the back-end, as a symbol, and the
2534 communication channel, as a plist. It must return a string or
2535 nil.")
2537 (defvar org-export-filter-body-functions nil
2538 "List of functions applied to transcoded body.
2539 Each filter is called with three arguments: a string which
2540 contains no Org syntax, the back-end, as a symbol, and the
2541 communication channel, as a plist. It must return a string or
2542 nil.")
2544 (defvar org-export-filter-final-output-functions nil
2545 "List of functions applied to the transcoded string.
2546 Each filter is called with three arguments: the full transcoded
2547 string, the back-end, as a symbol, and the communication channel,
2548 as a plist. It must return a string that will be used as the
2549 final export output.")
2552 ;;;; Elements Filters
2554 (defvar org-export-filter-babel-call-functions nil
2555 "List of functions applied to a transcoded babel-call.
2556 Each filter is called with three arguments: the transcoded data,
2557 as a string, the back-end, as a symbol, and the communication
2558 channel, as a plist. It must return a string or nil.")
2560 (defvar org-export-filter-center-block-functions nil
2561 "List of functions applied to a transcoded center block.
2562 Each filter is called with three arguments: the transcoded data,
2563 as a string, the back-end, as a symbol, and the communication
2564 channel, as a plist. It must return a string or nil.")
2566 (defvar org-export-filter-clock-functions nil
2567 "List of functions applied to a transcoded clock.
2568 Each filter is called with three arguments: the transcoded data,
2569 as a string, the back-end, as a symbol, and the communication
2570 channel, as a plist. It must return a string or nil.")
2572 (defvar org-export-filter-comment-functions nil
2573 "List of functions applied to a transcoded comment.
2574 Each filter is called with three arguments: the transcoded data,
2575 as a string, the back-end, as a symbol, and the communication
2576 channel, as a plist. It must return a string or nil.")
2578 (defvar org-export-filter-comment-block-functions nil
2579 "List of functions applied to a transcoded comment-block.
2580 Each filter is called with three arguments: the transcoded data,
2581 as a string, the back-end, as a symbol, and the communication
2582 channel, as a plist. It must return a string or nil.")
2584 (defvar org-export-filter-diary-sexp-functions nil
2585 "List of functions applied to a transcoded diary-sexp.
2586 Each filter is called with three arguments: the transcoded data,
2587 as a string, the back-end, as a symbol, and the communication
2588 channel, as a plist. It must return a string or nil.")
2590 (defvar org-export-filter-drawer-functions nil
2591 "List of functions applied to a transcoded drawer.
2592 Each filter is called with three arguments: the transcoded data,
2593 as a string, the back-end, as a symbol, and the communication
2594 channel, as a plist. It must return a string or nil.")
2596 (defvar org-export-filter-dynamic-block-functions nil
2597 "List of functions applied to a transcoded dynamic-block.
2598 Each filter is called with three arguments: the transcoded data,
2599 as a string, the back-end, as a symbol, and the communication
2600 channel, as a plist. It must return a string or nil.")
2602 (defvar org-export-filter-example-block-functions nil
2603 "List of functions applied to a transcoded example-block.
2604 Each filter is called with three arguments: the transcoded data,
2605 as a string, the back-end, as a symbol, and the communication
2606 channel, as a plist. It must return a string or nil.")
2608 (defvar org-export-filter-export-block-functions nil
2609 "List of functions applied to a transcoded export-block.
2610 Each filter is called with three arguments: the transcoded data,
2611 as a string, the back-end, as a symbol, and the communication
2612 channel, as a plist. It must return a string or nil.")
2614 (defvar org-export-filter-fixed-width-functions nil
2615 "List of functions applied to a transcoded fixed-width.
2616 Each filter is called with three arguments: the transcoded data,
2617 as a string, the back-end, as a symbol, and the communication
2618 channel, as a plist. It must return a string or nil.")
2620 (defvar org-export-filter-footnote-definition-functions nil
2621 "List of functions applied to a transcoded footnote-definition.
2622 Each filter is called with three arguments: the transcoded data,
2623 as a string, the back-end, as a symbol, and the communication
2624 channel, as a plist. It must return a string or nil.")
2626 (defvar org-export-filter-headline-functions nil
2627 "List of functions applied to a transcoded headline.
2628 Each filter is called with three arguments: the transcoded data,
2629 as a string, the back-end, as a symbol, and the communication
2630 channel, as a plist. It must return a string or nil.")
2632 (defvar org-export-filter-horizontal-rule-functions nil
2633 "List of functions applied to a transcoded horizontal-rule.
2634 Each filter is called with three arguments: the transcoded data,
2635 as a string, the back-end, as a symbol, and the communication
2636 channel, as a plist. It must return a string or nil.")
2638 (defvar org-export-filter-inlinetask-functions nil
2639 "List of functions applied to a transcoded inlinetask.
2640 Each filter is called with three arguments: the transcoded data,
2641 as a string, the back-end, as a symbol, and the communication
2642 channel, as a plist. It must return a string or nil.")
2644 (defvar org-export-filter-item-functions nil
2645 "List of functions applied to a transcoded item.
2646 Each filter is called with three arguments: the transcoded data,
2647 as a string, the back-end, as a symbol, and the communication
2648 channel, as a plist. It must return a string or nil.")
2650 (defvar org-export-filter-keyword-functions nil
2651 "List of functions applied to a transcoded keyword.
2652 Each filter is called with three arguments: the transcoded data,
2653 as a string, the back-end, as a symbol, and the communication
2654 channel, as a plist. It must return a string or nil.")
2656 (defvar org-export-filter-latex-environment-functions nil
2657 "List of functions applied to a transcoded latex-environment.
2658 Each filter is called with three arguments: the transcoded data,
2659 as a string, the back-end, as a symbol, and the communication
2660 channel, as a plist. It must return a string or nil.")
2662 (defvar org-export-filter-node-property-functions nil
2663 "List of functions applied to a transcoded node-property.
2664 Each filter is called with three arguments: the transcoded data,
2665 as a string, the back-end, as a symbol, and the communication
2666 channel, as a plist. It must return a string or nil.")
2668 (defvar org-export-filter-paragraph-functions nil
2669 "List of functions applied to a transcoded paragraph.
2670 Each filter is called with three arguments: the transcoded data,
2671 as a string, the back-end, as a symbol, and the communication
2672 channel, as a plist. It must return a string or nil.")
2674 (defvar org-export-filter-plain-list-functions nil
2675 "List of functions applied to a transcoded plain-list.
2676 Each filter is called with three arguments: the transcoded data,
2677 as a string, the back-end, as a symbol, and the communication
2678 channel, as a plist. It must return a string or nil.")
2680 (defvar org-export-filter-planning-functions nil
2681 "List of functions applied to a transcoded planning.
2682 Each filter is called with three arguments: the transcoded data,
2683 as a string, the back-end, as a symbol, and the communication
2684 channel, as a plist. It must return a string or nil.")
2686 (defvar org-export-filter-property-drawer-functions nil
2687 "List of functions applied to a transcoded property-drawer.
2688 Each filter is called with three arguments: the transcoded data,
2689 as a string, the back-end, as a symbol, and the communication
2690 channel, as a plist. It must return a string or nil.")
2692 (defvar org-export-filter-quote-block-functions nil
2693 "List of functions applied to a transcoded quote block.
2694 Each filter is called with three arguments: the transcoded quote
2695 data, as a string, the back-end, as a symbol, and the
2696 communication channel, as a plist. It must return a string or
2697 nil.")
2699 (defvar org-export-filter-section-functions nil
2700 "List of functions applied to a transcoded section.
2701 Each filter is called with three arguments: the transcoded data,
2702 as a string, the back-end, as a symbol, and the communication
2703 channel, as a plist. It must return a string or nil.")
2705 (defvar org-export-filter-special-block-functions nil
2706 "List of functions applied to a transcoded special block.
2707 Each filter is called with three arguments: the transcoded data,
2708 as a string, the back-end, as a symbol, and the communication
2709 channel, as a plist. It must return a string or nil.")
2711 (defvar org-export-filter-src-block-functions nil
2712 "List of functions applied to a transcoded src-block.
2713 Each filter is called with three arguments: the transcoded data,
2714 as a string, the back-end, as a symbol, and the communication
2715 channel, as a plist. It must return a string or nil.")
2717 (defvar org-export-filter-table-functions nil
2718 "List of functions applied to a transcoded table.
2719 Each filter is called with three arguments: the transcoded data,
2720 as a string, the back-end, as a symbol, and the communication
2721 channel, as a plist. It must return a string or nil.")
2723 (defvar org-export-filter-table-cell-functions nil
2724 "List of functions applied to a transcoded table-cell.
2725 Each filter is called with three arguments: the transcoded data,
2726 as a string, the back-end, as a symbol, and the communication
2727 channel, as a plist. It must return a string or nil.")
2729 (defvar org-export-filter-table-row-functions nil
2730 "List of functions applied to a transcoded table-row.
2731 Each filter is called with three arguments: the transcoded data,
2732 as a string, the back-end, as a symbol, and the communication
2733 channel, as a plist. It must return a string or nil.")
2735 (defvar org-export-filter-verse-block-functions nil
2736 "List of functions applied to a transcoded verse block.
2737 Each filter is called with three arguments: the transcoded data,
2738 as a string, the back-end, as a symbol, and the communication
2739 channel, as a plist. It must return a string or nil.")
2742 ;;;; Objects Filters
2744 (defvar org-export-filter-bold-functions nil
2745 "List of functions applied to transcoded bold text.
2746 Each filter is called with three arguments: the transcoded data,
2747 as a string, the back-end, as a symbol, and the communication
2748 channel, as a plist. It must return a string or nil.")
2750 (defvar org-export-filter-code-functions nil
2751 "List of functions applied to transcoded code text.
2752 Each filter is called with three arguments: the transcoded data,
2753 as a string, the back-end, as a symbol, and the communication
2754 channel, as a plist. It must return a string or nil.")
2756 (defvar org-export-filter-entity-functions nil
2757 "List of functions applied to a transcoded entity.
2758 Each filter is called with three arguments: the transcoded data,
2759 as a string, the back-end, as a symbol, and the communication
2760 channel, as a plist. It must return a string or nil.")
2762 (defvar org-export-filter-export-snippet-functions nil
2763 "List of functions applied to a transcoded export-snippet.
2764 Each filter is called with three arguments: the transcoded data,
2765 as a string, the back-end, as a symbol, and the communication
2766 channel, as a plist. It must return a string or nil.")
2768 (defvar org-export-filter-footnote-reference-functions nil
2769 "List of functions applied to a transcoded footnote-reference.
2770 Each filter is called with three arguments: the transcoded data,
2771 as a string, the back-end, as a symbol, and the communication
2772 channel, as a plist. It must return a string or nil.")
2774 (defvar org-export-filter-inline-babel-call-functions nil
2775 "List of functions applied to a transcoded inline-babel-call.
2776 Each filter is called with three arguments: the transcoded data,
2777 as a string, the back-end, as a symbol, and the communication
2778 channel, as a plist. It must return a string or nil.")
2780 (defvar org-export-filter-inline-src-block-functions nil
2781 "List of functions applied to a transcoded inline-src-block.
2782 Each filter is called with three arguments: the transcoded data,
2783 as a string, the back-end, as a symbol, and the communication
2784 channel, as a plist. It must return a string or nil.")
2786 (defvar org-export-filter-italic-functions nil
2787 "List of functions applied to transcoded italic text.
2788 Each filter is called with three arguments: the transcoded data,
2789 as a string, the back-end, as a symbol, and the communication
2790 channel, as a plist. It must return a string or nil.")
2792 (defvar org-export-filter-latex-fragment-functions nil
2793 "List of functions applied to a transcoded latex-fragment.
2794 Each filter is called with three arguments: the transcoded data,
2795 as a string, the back-end, as a symbol, and the communication
2796 channel, as a plist. It must return a string or nil.")
2798 (defvar org-export-filter-line-break-functions nil
2799 "List of functions applied to a transcoded line-break.
2800 Each filter is called with three arguments: the transcoded data,
2801 as a string, the back-end, as a symbol, and the communication
2802 channel, as a plist. It must return a string or nil.")
2804 (defvar org-export-filter-link-functions nil
2805 "List of functions applied to a transcoded link.
2806 Each filter is called with three arguments: the transcoded data,
2807 as a string, the back-end, as a symbol, and the communication
2808 channel, as a plist. It must return a string or nil.")
2810 (defvar org-export-filter-radio-target-functions nil
2811 "List of functions applied to a transcoded radio-target.
2812 Each filter is called with three arguments: the transcoded data,
2813 as a string, the back-end, as a symbol, and the communication
2814 channel, as a plist. It must return a string or nil.")
2816 (defvar org-export-filter-statistics-cookie-functions nil
2817 "List of functions applied to a transcoded statistics-cookie.
2818 Each filter is called with three arguments: the transcoded data,
2819 as a string, the back-end, as a symbol, and the communication
2820 channel, as a plist. It must return a string or nil.")
2822 (defvar org-export-filter-strike-through-functions nil
2823 "List of functions applied to transcoded strike-through text.
2824 Each filter is called with three arguments: the transcoded data,
2825 as a string, the back-end, as a symbol, and the communication
2826 channel, as a plist. It must return a string or nil.")
2828 (defvar org-export-filter-subscript-functions nil
2829 "List of functions applied to a transcoded subscript.
2830 Each filter is called with three arguments: the transcoded data,
2831 as a string, the back-end, as a symbol, and the communication
2832 channel, as a plist. It must return a string or nil.")
2834 (defvar org-export-filter-superscript-functions nil
2835 "List of functions applied to a transcoded superscript.
2836 Each filter is called with three arguments: the transcoded data,
2837 as a string, the back-end, as a symbol, and the communication
2838 channel, as a plist. It must return a string or nil.")
2840 (defvar org-export-filter-target-functions nil
2841 "List of functions applied to a transcoded target.
2842 Each filter is called with three arguments: the transcoded data,
2843 as a string, the back-end, as a symbol, and the communication
2844 channel, as a plist. It must return a string or nil.")
2846 (defvar org-export-filter-timestamp-functions nil
2847 "List of functions applied to a transcoded timestamp.
2848 Each filter is called with three arguments: the transcoded data,
2849 as a string, the back-end, as a symbol, and the communication
2850 channel, as a plist. It must return a string or nil.")
2852 (defvar org-export-filter-underline-functions nil
2853 "List of functions applied to transcoded underline text.
2854 Each filter is called with three arguments: the transcoded data,
2855 as a string, the back-end, as a symbol, and the communication
2856 channel, as a plist. It must return a string or nil.")
2858 (defvar org-export-filter-verbatim-functions nil
2859 "List of functions applied to transcoded verbatim text.
2860 Each filter is called with three arguments: the transcoded data,
2861 as a string, the back-end, as a symbol, and the communication
2862 channel, as a plist. It must return a string or nil.")
2865 ;;;; Filters Tools
2867 ;; Internal function `org-export-install-filters' installs filters
2868 ;; hard-coded in back-ends (developer filters) and filters from global
2869 ;; variables (user filters) in the communication channel.
2871 ;; Internal function `org-export-filter-apply-functions' takes care
2872 ;; about applying each filter in order to a given data. It ignores
2873 ;; filters returning a nil value but stops whenever a filter returns
2874 ;; an empty string.
2876 (defun org-export-filter-apply-functions (filters value info)
2877 "Call every function in FILTERS.
2879 Functions are called with arguments VALUE, current export
2880 back-end's name and INFO. A function returning a nil value will
2881 be skipped. If it returns the empty string, the process ends and
2882 VALUE is ignored.
2884 Call is done in a LIFO fashion, to be sure that developer
2885 specified filters, if any, are called first."
2886 (catch 'exit
2887 (let* ((backend (plist-get info :back-end))
2888 (backend-name (and backend (org-export-backend-name backend))))
2889 (dolist (filter filters value)
2890 (let ((result (funcall filter value backend-name info)))
2891 (cond ((not result) value)
2892 ((equal value "") (throw 'exit nil))
2893 (t (setq value result))))))))
2895 (defun org-export-install-filters (info)
2896 "Install filters properties in communication channel.
2897 INFO is a plist containing the current communication channel.
2898 Return the updated communication channel."
2899 (let (plist)
2900 ;; Install user-defined filters with `org-export-filters-alist'
2901 ;; and filters already in INFO (through ext-plist mechanism).
2902 (mapc (lambda (p)
2903 (let* ((prop (car p))
2904 (info-value (plist-get info prop))
2905 (default-value (symbol-value (cdr p))))
2906 (setq plist
2907 (plist-put plist prop
2908 ;; Filters in INFO will be called
2909 ;; before those user provided.
2910 (append (if (listp info-value) info-value
2911 (list info-value))
2912 default-value)))))
2913 org-export-filters-alist)
2914 ;; Prepend back-end specific filters to that list.
2915 (mapc (lambda (p)
2916 ;; Single values get consed, lists are appended.
2917 (let ((key (car p)) (value (cdr p)))
2918 (when value
2919 (setq plist
2920 (plist-put
2921 plist key
2922 (if (atom value) (cons value (plist-get plist key))
2923 (append value (plist-get plist key))))))))
2924 (org-export-get-all-filters (plist-get info :back-end)))
2925 ;; Return new communication channel.
2926 (org-combine-plists info plist)))
2930 ;;; Core functions
2932 ;; This is the room for the main function, `org-export-as', along with
2933 ;; its derivative, `org-export-string-as'.
2934 ;; `org-export--copy-to-kill-ring-p' determines if output of these
2935 ;; function should be added to kill ring.
2937 ;; Note that `org-export-as' doesn't really parse the current buffer,
2938 ;; but a copy of it (with the same buffer-local variables and
2939 ;; visibility), where macros and include keywords are expanded and
2940 ;; Babel blocks are executed, if appropriate.
2941 ;; `org-export-with-buffer-copy' macro prepares that copy.
2943 ;; File inclusion is taken care of by
2944 ;; `org-export-expand-include-keyword' and
2945 ;; `org-export--prepare-file-contents'. Structure wise, including
2946 ;; a whole Org file in a buffer often makes little sense. For
2947 ;; example, if the file contains a headline and the include keyword
2948 ;; was within an item, the item should contain the headline. That's
2949 ;; why file inclusion should be done before any structure can be
2950 ;; associated to the file, that is before parsing.
2952 ;; `org-export-insert-default-template' is a command to insert
2953 ;; a default template (or a back-end specific template) at point or in
2954 ;; current subtree.
2956 (defun org-export-copy-buffer ()
2957 "Return a copy of the current buffer.
2958 The copy preserves Org buffer-local variables, visibility and
2959 narrowing."
2960 (let ((copy-buffer-fun (org-export--generate-copy-script (current-buffer)))
2961 (new-buf (generate-new-buffer (buffer-name))))
2962 (with-current-buffer new-buf
2963 (funcall copy-buffer-fun)
2964 (set-buffer-modified-p nil))
2965 new-buf))
2967 (defmacro org-export-with-buffer-copy (&rest body)
2968 "Apply BODY in a copy of the current buffer.
2969 The copy preserves local variables, visibility and contents of
2970 the original buffer. Point is at the beginning of the buffer
2971 when BODY is applied."
2972 (declare (debug t))
2973 (org-with-gensyms (buf-copy)
2974 `(let ((,buf-copy (org-export-copy-buffer)))
2975 (unwind-protect
2976 (with-current-buffer ,buf-copy
2977 (goto-char (point-min))
2978 (progn ,@body))
2979 (and (buffer-live-p ,buf-copy)
2980 ;; Kill copy without confirmation.
2981 (progn (with-current-buffer ,buf-copy
2982 (restore-buffer-modified-p nil))
2983 (kill-buffer ,buf-copy)))))))
2985 (defun org-export--generate-copy-script (buffer)
2986 "Generate a function duplicating BUFFER.
2988 The copy will preserve local variables, visibility, contents and
2989 narrowing of the original buffer. If a region was active in
2990 BUFFER, contents will be narrowed to that region instead.
2992 The resulting function can be evaluated at a later time, from
2993 another buffer, effectively cloning the original buffer there.
2995 The function assumes BUFFER's major mode is `org-mode'."
2996 (with-current-buffer buffer
2997 `(lambda ()
2998 (let ((inhibit-modification-hooks t))
2999 ;; Set major mode. Ignore `org-mode-hook' as it has been run
3000 ;; already in BUFFER.
3001 (let ((org-mode-hook nil) (org-inhibit-startup t)) (org-mode))
3002 ;; Copy specific buffer local variables and variables set
3003 ;; through BIND keywords.
3004 ,@(let ((bound-variables (org-export--list-bound-variables))
3005 vars)
3006 (dolist (entry (buffer-local-variables (buffer-base-buffer)) vars)
3007 (when (consp entry)
3008 (let ((var (car entry))
3009 (val (cdr entry)))
3010 (and (not (memq var org-export-ignored-local-variables))
3011 (or (memq var
3012 '(default-directory
3013 buffer-file-name
3014 buffer-file-coding-system))
3015 (assq var bound-variables)
3016 (string-match "^\\(org-\\|orgtbl-\\)"
3017 (symbol-name var)))
3018 ;; Skip unreadable values, as they cannot be
3019 ;; sent to external process.
3020 (or (not val) (ignore-errors (read (format "%S" val))))
3021 (push `(set (make-local-variable (quote ,var))
3022 (quote ,val))
3023 vars))))))
3024 ;; Whole buffer contents.
3025 (insert
3026 ,(org-with-wide-buffer
3027 (buffer-substring-no-properties
3028 (point-min) (point-max))))
3029 ;; Narrowing.
3030 ,(if (org-region-active-p)
3031 `(narrow-to-region ,(region-beginning) ,(region-end))
3032 `(narrow-to-region ,(point-min) ,(point-max)))
3033 ;; Current position of point.
3034 (goto-char ,(point))
3035 ;; Overlays with invisible property.
3036 ,@(let (ov-set)
3037 (mapc
3038 (lambda (ov)
3039 (let ((invis-prop (overlay-get ov 'invisible)))
3040 (when invis-prop
3041 (push `(overlay-put
3042 (make-overlay ,(overlay-start ov)
3043 ,(overlay-end ov))
3044 'invisible (quote ,invis-prop))
3045 ov-set))))
3046 (overlays-in (point-min) (point-max)))
3047 ov-set)))))
3049 ;;;###autoload
3050 (defun org-export-as
3051 (backend &optional subtreep visible-only body-only ext-plist)
3052 "Transcode current Org buffer into BACKEND code.
3054 BACKEND is either an export back-end, as returned by, e.g.,
3055 `org-export-create-backend', or a symbol referring to
3056 a registered back-end.
3058 If narrowing is active in the current buffer, only transcode its
3059 narrowed part.
3061 If a region is active, transcode that region.
3063 When optional argument SUBTREEP is non-nil, transcode the
3064 sub-tree at point, extracting information from the headline
3065 properties first.
3067 When optional argument VISIBLE-ONLY is non-nil, don't export
3068 contents of hidden elements.
3070 When optional argument BODY-ONLY is non-nil, only return body
3071 code, without surrounding template.
3073 Optional argument EXT-PLIST, when provided, is a property list
3074 with external parameters overriding Org default settings, but
3075 still inferior to file-local settings.
3077 Return code as a string."
3078 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
3079 (org-export-barf-if-invalid-backend backend)
3080 (save-excursion
3081 (save-restriction
3082 ;; Narrow buffer to an appropriate region or subtree for
3083 ;; parsing. If parsing subtree, be sure to remove main headline
3084 ;; too.
3085 (cond ((org-region-active-p)
3086 (narrow-to-region (region-beginning) (region-end)))
3087 (subtreep
3088 (org-narrow-to-subtree)
3089 (goto-char (point-min))
3090 (forward-line)
3091 (narrow-to-region (point) (point-max))))
3092 ;; Initialize communication channel with original buffer
3093 ;; attributes, unavailable in its copy.
3094 (let* ((org-export-current-backend (org-export-backend-name backend))
3095 (info (org-combine-plists
3096 (list :export-options
3097 (delq nil
3098 (list (and subtreep 'subtree)
3099 (and visible-only 'visible-only)
3100 (and body-only 'body-only))))
3101 (org-export--get-buffer-attributes)))
3102 tree)
3103 ;; Update communication channel and get parse tree. Buffer
3104 ;; isn't parsed directly. Instead, a temporary copy is
3105 ;; created, where include keywords, macros are expanded and
3106 ;; code blocks are evaluated.
3107 (org-export-with-buffer-copy
3108 ;; Run first hook with current back-end's name as argument.
3109 (run-hook-with-args 'org-export-before-processing-hook
3110 (org-export-backend-name backend))
3111 (org-export-expand-include-keyword)
3112 ;; Update macro templates since #+INCLUDE keywords might have
3113 ;; added some new ones.
3114 (org-macro-initialize-templates)
3115 (org-macro-replace-all org-macro-templates)
3116 (org-export-execute-babel-code)
3117 ;; Update radio targets since keyword inclusion might have
3118 ;; added some more.
3119 (org-update-radio-target-regexp)
3120 ;; Run last hook with current back-end's name as argument.
3121 (goto-char (point-min))
3122 (save-excursion
3123 (run-hook-with-args 'org-export-before-parsing-hook
3124 (org-export-backend-name backend)))
3125 ;; Update communication channel with environment. Also
3126 ;; install user's and developer's filters.
3127 (setq info
3128 (org-export-install-filters
3129 (org-combine-plists
3130 info (org-export-get-environment backend subtreep ext-plist))))
3131 ;; Expand export-specific set of macros: {{{author}}},
3132 ;; {{{date}}}, {{{email}}} and {{{title}}}. It must be done
3133 ;; once regular macros have been expanded, since document
3134 ;; keywords may contain one of them.
3135 (org-macro-replace-all
3136 (list (cons "author"
3137 (org-element-interpret-data (plist-get info :author)))
3138 (cons "date"
3139 (org-element-interpret-data (plist-get info :date)))
3140 ;; EMAIL is not a parsed keyword: store it as-is.
3141 (cons "email" (or (plist-get info :email) ""))
3142 (cons "title"
3143 (org-element-interpret-data (plist-get info :title)))))
3144 ;; Parse buffer.
3145 (setq tree (org-element-parse-buffer nil visible-only))
3146 ;; Handle left-over uninterpreted elements or objects in
3147 ;; parse tree and communication channel.
3148 (org-export-remove-uninterpreted-data tree info)
3149 ;; Call options filters and update export options. We do not
3150 ;; use `org-export-filter-apply-functions' here since the
3151 ;; arity of such filters is different.
3152 (let ((backend-name (org-export-backend-name backend)))
3153 (dolist (filter (plist-get info :filter-options))
3154 (let ((result (funcall filter info backend-name)))
3155 (when result (setq info result)))))
3156 ;; Parse buffer, handle uninterpreted elements or objects,
3157 ;; then call parse-tree filters.
3158 (setq tree
3159 (org-export-filter-apply-functions
3160 (plist-get info :filter-parse-tree) tree info))
3161 ;; Now tree is complete, compute its properties and add them
3162 ;; to communication channel.
3163 (setq info
3164 (org-combine-plists
3165 info (org-export-collect-tree-properties tree info)))
3166 ;; Eventually transcode TREE. Wrap the resulting string into
3167 ;; a template.
3168 (let* ((body (org-element-normalize-string
3169 (or (org-export-data tree info) "")))
3170 (inner-template (cdr (assq 'inner-template
3171 (plist-get info :translate-alist))))
3172 (full-body (org-export-filter-apply-functions
3173 (plist-get info :filter-body)
3174 (if (not (functionp inner-template)) body
3175 (funcall inner-template body info))
3176 info))
3177 (template (cdr (assq 'template
3178 (plist-get info :translate-alist)))))
3179 ;; Remove all text properties since they cannot be
3180 ;; retrieved from an external process. Finally call
3181 ;; final-output filter and return result.
3182 (org-no-properties
3183 (org-export-filter-apply-functions
3184 (plist-get info :filter-final-output)
3185 (if (or (not (functionp template)) body-only) full-body
3186 (funcall template full-body info))
3187 info))))))))
3189 ;;;###autoload
3190 (defun org-export-string-as (string backend &optional body-only ext-plist)
3191 "Transcode STRING into BACKEND code.
3193 BACKEND is either an export back-end, as returned by, e.g.,
3194 `org-export-create-backend', or a symbol referring to
3195 a registered back-end.
3197 When optional argument BODY-ONLY is non-nil, only return body
3198 code, without preamble nor postamble.
3200 Optional argument EXT-PLIST, when provided, is a property list
3201 with external parameters overriding Org default settings, but
3202 still inferior to file-local settings.
3204 Return code as a string."
3205 (with-temp-buffer
3206 (insert string)
3207 (let ((org-inhibit-startup t)) (org-mode))
3208 (org-export-as backend nil nil body-only ext-plist)))
3210 ;;;###autoload
3211 (defun org-export-replace-region-by (backend)
3212 "Replace the active region by its export to BACKEND.
3213 BACKEND is either an export back-end, as returned by, e.g.,
3214 `org-export-create-backend', or a symbol referring to
3215 a registered back-end."
3216 (if (not (org-region-active-p))
3217 (user-error "No active region to replace")
3218 (let* ((beg (region-beginning))
3219 (end (region-end))
3220 (str (buffer-substring beg end)) rpl)
3221 (setq rpl (org-export-string-as str backend t))
3222 (delete-region beg end)
3223 (insert rpl))))
3225 ;;;###autoload
3226 (defun org-export-insert-default-template (&optional backend subtreep)
3227 "Insert all export keywords with default values at beginning of line.
3229 BACKEND is a symbol referring to the name of a registered export
3230 back-end, for which specific export options should be added to
3231 the template, or `default' for default template. When it is nil,
3232 the user will be prompted for a category.
3234 If SUBTREEP is non-nil, export configuration will be set up
3235 locally for the subtree through node properties."
3236 (interactive)
3237 (unless (derived-mode-p 'org-mode) (user-error "Not in an Org mode buffer"))
3238 (when (and subtreep (org-before-first-heading-p))
3239 (user-error "No subtree to set export options for"))
3240 (let ((node (and subtreep (save-excursion (org-back-to-heading t) (point))))
3241 (backend
3242 (or backend
3243 (intern
3244 (org-completing-read
3245 "Options category: "
3246 (cons "default"
3247 (mapcar #'(lambda (b)
3248 (symbol-name (org-export-backend-name b)))
3249 org-export--registered-backends))
3250 nil t))))
3251 options keywords)
3252 ;; Populate OPTIONS and KEYWORDS.
3253 (dolist (entry (cond ((eq backend 'default) org-export-options-alist)
3254 ((org-export-backend-p backend)
3255 (org-export-backend-options backend))
3256 (t (org-export-backend-options
3257 (org-export-get-backend backend)))))
3258 (let ((keyword (nth 1 entry))
3259 (option (nth 2 entry)))
3260 (cond
3261 (keyword (unless (assoc keyword keywords)
3262 (let ((value
3263 (if (eq (nth 4 entry) 'split)
3264 (mapconcat #'identity (eval (nth 3 entry)) " ")
3265 (eval (nth 3 entry)))))
3266 (push (cons keyword value) keywords))))
3267 (option (unless (assoc option options)
3268 (push (cons option (eval (nth 3 entry))) options))))))
3269 ;; Move to an appropriate location in order to insert options.
3270 (unless subtreep (beginning-of-line))
3271 ;; First (multiple) OPTIONS lines. Never go past fill-column.
3272 (when options
3273 (let ((items
3274 (mapcar
3275 #'(lambda (opt) (format "%s:%S" (car opt) (cdr opt)))
3276 (sort options (lambda (k1 k2) (string< (car k1) (car k2)))))))
3277 (if subtreep
3278 (org-entry-put
3279 node "EXPORT_OPTIONS" (mapconcat 'identity items " "))
3280 (while items
3281 (insert "#+OPTIONS:")
3282 (let ((width 10))
3283 (while (and items
3284 (< (+ width (length (car items)) 1) fill-column))
3285 (let ((item (pop items)))
3286 (insert " " item)
3287 (incf width (1+ (length item))))))
3288 (insert "\n")))))
3289 ;; Then the rest of keywords, in the order specified in either
3290 ;; `org-export-options-alist' or respective export back-ends.
3291 (dolist (key (nreverse keywords))
3292 (let ((val (cond ((equal (car key) "DATE")
3293 (or (cdr key)
3294 (with-temp-buffer
3295 (org-insert-time-stamp (current-time)))))
3296 ((equal (car key) "TITLE")
3297 (or (let ((visited-file
3298 (buffer-file-name (buffer-base-buffer))))
3299 (and visited-file
3300 (file-name-sans-extension
3301 (file-name-nondirectory visited-file))))
3302 (buffer-name (buffer-base-buffer))))
3303 (t (cdr key)))))
3304 (if subtreep (org-entry-put node (concat "EXPORT_" (car key)) val)
3305 (insert
3306 (format "#+%s:%s\n"
3307 (car key)
3308 (if (org-string-nw-p val) (format " %s" val) ""))))))))
3310 (defun org-export-expand-include-keyword (&optional included dir)
3311 "Expand every include keyword in buffer.
3312 Optional argument INCLUDED is a list of included file names along
3313 with their line restriction, when appropriate. It is used to
3314 avoid infinite recursion. Optional argument DIR is the current
3315 working directory. It is used to properly resolve relative
3316 paths."
3317 (let ((case-fold-search t)
3318 (file-prefix (make-hash-table :test #'equal))
3319 (current-prefix 0))
3320 (goto-char (point-min))
3321 (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
3322 (let ((element (save-match-data (org-element-at-point))))
3323 (when (eq (org-element-type element) 'keyword)
3324 (beginning-of-line)
3325 ;; Extract arguments from keyword's value.
3326 (let* ((value (org-element-property :value element))
3327 (ind (org-get-indentation))
3328 (file (and (string-match
3329 "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" value)
3330 (prog1 (expand-file-name
3331 (org-remove-double-quotes
3332 (match-string 1 value))
3333 dir)
3334 (setq value (replace-match "" nil nil value)))))
3335 (lines
3336 (and (string-match
3337 ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\""
3338 value)
3339 (prog1 (match-string 1 value)
3340 (setq value (replace-match "" nil nil value)))))
3341 (env (cond ((string-match "\\<example\\>" value)
3342 'literal)
3343 ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
3344 'literal)))
3345 ;; Minimal level of included file defaults to the child
3346 ;; level of the current headline, if any, or one. It
3347 ;; only applies is the file is meant to be included as
3348 ;; an Org one.
3349 (minlevel
3350 (and (not env)
3351 (if (string-match ":minlevel +\\([0-9]+\\)" value)
3352 (prog1 (string-to-number (match-string 1 value))
3353 (setq value (replace-match "" nil nil value)))
3354 (let ((cur (org-current-level)))
3355 (if cur (1+ (org-reduced-level cur)) 1)))))
3356 (src-args (and (eq env 'literal)
3357 (match-string 1 value)))
3358 (block (and (string-match "\\<\\(\\S-+\\)\\>" value)
3359 (match-string 1 value))))
3360 ;; Remove keyword.
3361 (delete-region (point) (progn (forward-line) (point)))
3362 (cond
3363 ((not file) nil)
3364 ((not (file-readable-p file))
3365 (error "Cannot include file %s" file))
3366 ;; Check if files has already been parsed. Look after
3367 ;; inclusion lines too, as different parts of the same file
3368 ;; can be included too.
3369 ((member (list file lines) included)
3370 (error "Recursive file inclusion: %s" file))
3372 (cond
3373 ((eq env 'literal)
3374 (insert
3375 (let ((ind-str (make-string ind ? ))
3376 (arg-str (if (stringp src-args)
3377 (format " %s" src-args)
3378 ""))
3379 (contents
3380 (org-escape-code-in-string
3381 (org-export--prepare-file-contents file lines))))
3382 (format "%s#+BEGIN_%s%s\n%s%s#+END_%s\n"
3383 ind-str block arg-str contents ind-str block))))
3384 ((stringp block)
3385 (insert
3386 (let ((ind-str (make-string ind ? ))
3387 (contents
3388 (org-export--prepare-file-contents file lines)))
3389 (format "%s#+BEGIN_%s\n%s%s#+END_%s\n"
3390 ind-str block contents ind-str block))))
3392 (insert
3393 (with-temp-buffer
3394 (let ((org-inhibit-startup t)) (org-mode))
3395 (insert
3396 (org-export--prepare-file-contents
3397 file lines ind minlevel
3398 (or (gethash file file-prefix)
3399 (puthash file (incf current-prefix) file-prefix))))
3400 (org-export-expand-include-keyword
3401 (cons (list file lines) included)
3402 (file-name-directory file))
3403 (buffer-string)))))))))))))
3405 (defun org-export--prepare-file-contents (file &optional lines ind minlevel id)
3406 "Prepare the contents of FILE for inclusion and return them as a string.
3408 When optional argument LINES is a string specifying a range of
3409 lines, include only those lines.
3411 Optional argument IND, when non-nil, is an integer specifying the
3412 global indentation of returned contents. Since its purpose is to
3413 allow an included file to stay in the same environment it was
3414 created \(i.e. a list item), it doesn't apply past the first
3415 headline encountered.
3417 Optional argument MINLEVEL, when non-nil, is an integer
3418 specifying the level that any top-level headline in the included
3419 file should have.
3421 Optional argument ID is an integer that will be inserted before
3422 each footnote definition and reference if FILE is an Org file.
3423 This is useful to avoid conflicts when more than one Org file
3424 with footnotes is included in a document."
3425 (with-temp-buffer
3426 (insert-file-contents file)
3427 (when lines
3428 (let* ((lines (split-string lines "-"))
3429 (lbeg (string-to-number (car lines)))
3430 (lend (string-to-number (cadr lines)))
3431 (beg (if (zerop lbeg) (point-min)
3432 (goto-char (point-min))
3433 (forward-line (1- lbeg))
3434 (point)))
3435 (end (if (zerop lend) (point-max)
3436 (goto-char (point-min))
3437 (forward-line (1- lend))
3438 (point))))
3439 (narrow-to-region beg end)))
3440 ;; Remove blank lines at beginning and end of contents. The logic
3441 ;; behind that removal is that blank lines around include keyword
3442 ;; override blank lines in included file.
3443 (goto-char (point-min))
3444 (org-skip-whitespace)
3445 (beginning-of-line)
3446 (delete-region (point-min) (point))
3447 (goto-char (point-max))
3448 (skip-chars-backward " \r\t\n")
3449 (forward-line)
3450 (delete-region (point) (point-max))
3451 ;; If IND is set, preserve indentation of include keyword until
3452 ;; the first headline encountered.
3453 (when ind
3454 (unless (eq major-mode 'org-mode)
3455 (let ((org-inhibit-startup t)) (org-mode)))
3456 (goto-char (point-min))
3457 (let ((ind-str (make-string ind ? )))
3458 (while (not (or (eobp) (looking-at org-outline-regexp-bol)))
3459 ;; Do not move footnote definitions out of column 0.
3460 (unless (and (looking-at org-footnote-definition-re)
3461 (eq (org-element-type (org-element-at-point))
3462 'footnote-definition))
3463 (insert ind-str))
3464 (forward-line))))
3465 ;; When MINLEVEL is specified, compute minimal level for headlines
3466 ;; in the file (CUR-MIN), and remove stars to each headline so
3467 ;; that headlines with minimal level have a level of MINLEVEL.
3468 (when minlevel
3469 (unless (eq major-mode 'org-mode)
3470 (let ((org-inhibit-startup t)) (org-mode)))
3471 (org-with-limited-levels
3472 (let ((levels (org-map-entries
3473 (lambda () (org-reduced-level (org-current-level))))))
3474 (when levels
3475 (let ((offset (- minlevel (apply 'min levels))))
3476 (unless (zerop offset)
3477 (when org-odd-levels-only (setq offset (* offset 2)))
3478 ;; Only change stars, don't bother moving whole
3479 ;; sections.
3480 (org-map-entries
3481 (lambda () (if (< offset 0) (delete-char (abs offset))
3482 (insert (make-string offset ?*)))))))))))
3483 ;; Append ID to all footnote references and definitions, so they
3484 ;; become file specific and cannot collide with footnotes in other
3485 ;; included files.
3486 (when id
3487 (goto-char (point-min))
3488 (while (re-search-forward org-footnote-re nil t)
3489 (let ((reference (org-element-context)))
3490 (when (memq (org-element-type reference)
3491 '(footnote-reference footnote-definition))
3492 (goto-char (org-element-property :begin reference))
3493 (forward-char)
3494 (let ((label (org-element-property :label reference)))
3495 (cond ((not label))
3496 ((org-string-match-p "\\`[0-9]+\\'" label)
3497 (insert (format "fn:%d-" id)))
3498 (t (forward-char 3) (insert (format "%d-" id)))))))))
3499 (org-element-normalize-string (buffer-string))))
3501 (defun org-export-execute-babel-code ()
3502 "Execute every Babel code in the visible part of current buffer."
3503 ;; Get a pristine copy of current buffer so Babel references can be
3504 ;; properly resolved.
3505 (let ((reference (org-export-copy-buffer)))
3506 (unwind-protect (org-babel-exp-process-buffer reference)
3507 (kill-buffer reference))))
3509 (defun org-export--copy-to-kill-ring-p ()
3510 "Return a non-nil value when output should be added to the kill ring.
3511 See also `org-export-copy-to-kill-ring'."
3512 (if (eq org-export-copy-to-kill-ring 'if-interactive)
3513 (not (or executing-kbd-macro noninteractive))
3514 (eq org-export-copy-to-kill-ring t)))
3518 ;;; Tools For Back-Ends
3520 ;; A whole set of tools is available to help build new exporters. Any
3521 ;; function general enough to have its use across many back-ends
3522 ;; should be added here.
3524 ;;;; For Affiliated Keywords
3526 ;; `org-export-read-attribute' reads a property from a given element
3527 ;; as a plist. It can be used to normalize affiliated keywords'
3528 ;; syntax.
3530 ;; Since captions can span over multiple lines and accept dual values,
3531 ;; their internal representation is a bit tricky. Therefore,
3532 ;; `org-export-get-caption' transparently returns a given element's
3533 ;; caption as a secondary string.
3535 (defun org-export-read-attribute (attribute element &optional property)
3536 "Turn ATTRIBUTE property from ELEMENT into a plist.
3538 When optional argument PROPERTY is non-nil, return the value of
3539 that property within attributes.
3541 This function assumes attributes are defined as \":keyword
3542 value\" pairs. It is appropriate for `:attr_html' like
3543 properties.
3545 All values will become strings except the empty string and
3546 \"nil\", which will become nil. Also, values containing only
3547 double quotes will be read as-is, which means that \"\" value
3548 will become the empty string."
3549 (let* ((prepare-value
3550 (lambda (str)
3551 (save-match-data
3552 (cond ((member str '(nil "" "nil")) nil)
3553 ((string-match "^\"\\(\"+\\)?\"$" str)
3554 (or (match-string 1 str) ""))
3555 (t str)))))
3556 (attributes
3557 (let ((value (org-element-property attribute element)))
3558 (when value
3559 (let ((s (mapconcat 'identity value " ")) result)
3560 (while (string-match
3561 "\\(?:^\\|[ \t]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([ \t]+\\|$\\)"
3563 (let ((value (substring s 0 (match-beginning 0))))
3564 (push (funcall prepare-value value) result))
3565 (push (intern (match-string 1 s)) result)
3566 (setq s (substring s (match-end 0))))
3567 ;; Ignore any string before first property with `cdr'.
3568 (cdr (nreverse (cons (funcall prepare-value s) result))))))))
3569 (if property (plist-get attributes property) attributes)))
3571 (defun org-export-get-caption (element &optional shortp)
3572 "Return caption from ELEMENT as a secondary string.
3574 When optional argument SHORTP is non-nil, return short caption,
3575 as a secondary string, instead.
3577 Caption lines are separated by a white space."
3578 (let ((full-caption (org-element-property :caption element)) caption)
3579 (dolist (line full-caption (cdr caption))
3580 (let ((cap (funcall (if shortp 'cdr 'car) line)))
3581 (when cap
3582 (setq caption (nconc (list " ") (copy-sequence cap) caption)))))))
3585 ;;;; For Derived Back-ends
3587 ;; `org-export-with-backend' is a function allowing to locally use
3588 ;; another back-end to transcode some object or element. In a derived
3589 ;; back-end, it may be used as a fall-back function once all specific
3590 ;; cases have been treated.
3592 (defun org-export-with-backend (backend data &optional contents info)
3593 "Call a transcoder from BACKEND on DATA.
3594 BACKEND is an export back-end, as returned by, e.g.,
3595 `org-export-create-backend', or a symbol referring to
3596 a registered back-end. DATA is an Org element, object, secondary
3597 string or string. CONTENTS, when non-nil, is the transcoded
3598 contents of DATA element, as a string. INFO, when non-nil, is
3599 the communication channel used for export, as a plist."
3600 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
3601 (org-export-barf-if-invalid-backend backend)
3602 (let ((type (org-element-type data)))
3603 (if (memq type '(nil org-data)) (error "No foreign transcoder available")
3604 (let* ((all-transcoders (org-export-get-all-transcoders backend))
3605 (transcoder (cdr (assq type all-transcoders))))
3606 (if (not (functionp transcoder))
3607 (error "No foreign transcoder available")
3608 (funcall
3609 transcoder data contents
3610 (org-combine-plists
3611 info (list :back-end backend
3612 :translate-alist all-transcoders
3613 :exported-data (make-hash-table :test 'eq :size 401)))))))))
3616 ;;;; For Export Snippets
3618 ;; Every export snippet is transmitted to the back-end. Though, the
3619 ;; latter will only retain one type of export-snippet, ignoring
3620 ;; others, based on the former's target back-end. The function
3621 ;; `org-export-snippet-backend' returns that back-end for a given
3622 ;; export-snippet.
3624 (defun org-export-snippet-backend (export-snippet)
3625 "Return EXPORT-SNIPPET targeted back-end as a symbol.
3626 Translation, with `org-export-snippet-translation-alist', is
3627 applied."
3628 (let ((back-end (org-element-property :back-end export-snippet)))
3629 (intern
3630 (or (cdr (assoc back-end org-export-snippet-translation-alist))
3631 back-end))))
3634 ;;;; For Footnotes
3636 ;; `org-export-collect-footnote-definitions' is a tool to list
3637 ;; actually used footnotes definitions in the whole parse tree, or in
3638 ;; a headline, in order to add footnote listings throughout the
3639 ;; transcoded data.
3641 ;; `org-export-footnote-first-reference-p' is a predicate used by some
3642 ;; back-ends, when they need to attach the footnote definition only to
3643 ;; the first occurrence of the corresponding label.
3645 ;; `org-export-get-footnote-definition' and
3646 ;; `org-export-get-footnote-number' provide easier access to
3647 ;; additional information relative to a footnote reference.
3649 (defun org-export-collect-footnote-definitions (data info)
3650 "Return an alist between footnote numbers, labels and definitions.
3652 DATA is the parse tree from which definitions are collected.
3653 INFO is the plist used as a communication channel.
3655 Definitions are sorted by order of references. They either
3656 appear as Org data or as a secondary string for inlined
3657 footnotes. Unreferenced definitions are ignored."
3658 (let* (num-alist
3659 collect-fn ; for byte-compiler.
3660 (collect-fn
3661 (function
3662 (lambda (data)
3663 ;; Collect footnote number, label and definition in DATA.
3664 (org-element-map data 'footnote-reference
3665 (lambda (fn)
3666 (when (org-export-footnote-first-reference-p fn info)
3667 (let ((def (org-export-get-footnote-definition fn info)))
3668 (push
3669 (list (org-export-get-footnote-number fn info)
3670 (org-element-property :label fn)
3671 def)
3672 num-alist)
3673 ;; Also search in definition for nested footnotes.
3674 (when (eq (org-element-property :type fn) 'standard)
3675 (funcall collect-fn def)))))
3676 ;; Don't enter footnote definitions since it will happen
3677 ;; when their first reference is found.
3678 info nil 'footnote-definition)))))
3679 (funcall collect-fn (plist-get info :parse-tree))
3680 (reverse num-alist)))
3682 (defun org-export-footnote-first-reference-p (footnote-reference info)
3683 "Non-nil when a footnote reference is the first one for its label.
3685 FOOTNOTE-REFERENCE is the footnote reference being considered.
3686 INFO is the plist used as a communication channel."
3687 (let ((label (org-element-property :label footnote-reference)))
3688 ;; Anonymous footnotes are always a first reference.
3689 (if (not label) t
3690 ;; Otherwise, return the first footnote with the same LABEL and
3691 ;; test if it is equal to FOOTNOTE-REFERENCE.
3692 (let* (search-refs ; for byte-compiler.
3693 (search-refs
3694 (function
3695 (lambda (data)
3696 (org-element-map data 'footnote-reference
3697 (lambda (fn)
3698 (cond
3699 ((string= (org-element-property :label fn) label)
3700 (throw 'exit fn))
3701 ;; If FN isn't inlined, be sure to traverse its
3702 ;; definition before resuming search. See
3703 ;; comments in `org-export-get-footnote-number'
3704 ;; for more information.
3705 ((eq (org-element-property :type fn) 'standard)
3706 (funcall search-refs
3707 (org-export-get-footnote-definition fn info)))))
3708 ;; Don't enter footnote definitions since it will
3709 ;; happen when their first reference is found.
3710 info 'first-match 'footnote-definition)))))
3711 (eq (catch 'exit (funcall search-refs (plist-get info :parse-tree)))
3712 footnote-reference)))))
3714 (defun org-export-get-footnote-definition (footnote-reference info)
3715 "Return definition of FOOTNOTE-REFERENCE as parsed data.
3716 INFO is the plist used as a communication channel. If no such
3717 definition can be found, return \"DEFINITION NOT FOUND\"."
3718 (let ((label (org-element-property :label footnote-reference)))
3719 (or (if label
3720 (cdr (assoc label (plist-get info :footnote-definition-alist)))
3721 (org-element-contents footnote-reference))
3722 "DEFINITION NOT FOUND.")))
3724 (defun org-export-get-footnote-number (footnote info)
3725 "Return number associated to a footnote.
3727 FOOTNOTE is either a footnote reference or a footnote definition.
3728 INFO is the plist used as a communication channel."
3729 (let* ((label (org-element-property :label footnote))
3730 seen-refs
3731 search-ref ; For byte-compiler.
3732 (search-ref
3733 (function
3734 (lambda (data)
3735 ;; Search footnote references through DATA, filling
3736 ;; SEEN-REFS along the way.
3737 (org-element-map data 'footnote-reference
3738 (lambda (fn)
3739 (let ((fn-lbl (org-element-property :label fn)))
3740 (cond
3741 ;; Anonymous footnote match: return number.
3742 ((and (not fn-lbl) (eq fn footnote))
3743 (throw 'exit (1+ (length seen-refs))))
3744 ;; Labels match: return number.
3745 ((and label (string= label fn-lbl))
3746 (throw 'exit (1+ (length seen-refs))))
3747 ;; Anonymous footnote: it's always a new one.
3748 ;; Also, be sure to return nil from the `cond' so
3749 ;; `first-match' doesn't get us out of the loop.
3750 ((not fn-lbl) (push 'inline seen-refs) nil)
3751 ;; Label not seen so far: add it so SEEN-REFS.
3753 ;; Also search for subsequent references in
3754 ;; footnote definition so numbering follows
3755 ;; reading logic. Note that we don't have to care
3756 ;; about inline definitions, since
3757 ;; `org-element-map' already traverses them at the
3758 ;; right time.
3760 ;; Once again, return nil to stay in the loop.
3761 ((not (member fn-lbl seen-refs))
3762 (push fn-lbl seen-refs)
3763 (funcall search-ref
3764 (org-export-get-footnote-definition fn info))
3765 nil))))
3766 ;; Don't enter footnote definitions since it will
3767 ;; happen when their first reference is found.
3768 info 'first-match 'footnote-definition)))))
3769 (catch 'exit (funcall search-ref (plist-get info :parse-tree)))))
3772 ;;;; For Headlines
3774 ;; `org-export-get-relative-level' is a shortcut to get headline
3775 ;; level, relatively to the lower headline level in the parsed tree.
3777 ;; `org-export-get-headline-number' returns the section number of an
3778 ;; headline, while `org-export-number-to-roman' allows to convert it
3779 ;; to roman numbers.
3781 ;; `org-export-low-level-p', `org-export-first-sibling-p' and
3782 ;; `org-export-last-sibling-p' are three useful predicates when it
3783 ;; comes to fulfill the `:headline-levels' property.
3785 ;; `org-export-get-tags', `org-export-get-category' and
3786 ;; `org-export-get-node-property' extract useful information from an
3787 ;; headline or a parent headline. They all handle inheritance.
3789 ;; `org-export-get-alt-title' tries to retrieve an alternative title,
3790 ;; as a secondary string, suitable for table of contents. It falls
3791 ;; back onto default title.
3793 (defun org-export-get-relative-level (headline info)
3794 "Return HEADLINE relative level within current parsed tree.
3795 INFO is a plist holding contextual information."
3796 (+ (org-element-property :level headline)
3797 (or (plist-get info :headline-offset) 0)))
3799 (defun org-export-low-level-p (headline info)
3800 "Non-nil when HEADLINE is considered as low level.
3802 INFO is a plist used as a communication channel.
3804 A low level headlines has a relative level greater than
3805 `:headline-levels' property value.
3807 Return value is the difference between HEADLINE relative level
3808 and the last level being considered as high enough, or nil."
3809 (let ((limit (plist-get info :headline-levels)))
3810 (when (wholenump limit)
3811 (let ((level (org-export-get-relative-level headline info)))
3812 (and (> level limit) (- level limit))))))
3814 (defun org-export-get-headline-number (headline info)
3815 "Return HEADLINE numbering as a list of numbers.
3816 INFO is a plist holding contextual information."
3817 (cdr (assoc headline (plist-get info :headline-numbering))))
3819 (defun org-export-numbered-headline-p (headline info)
3820 "Return a non-nil value if HEADLINE element should be numbered.
3821 INFO is a plist used as a communication channel."
3822 (let ((sec-num (plist-get info :section-numbers))
3823 (level (org-export-get-relative-level headline info)))
3824 (if (wholenump sec-num) (<= level sec-num) sec-num)))
3826 (defun org-export-number-to-roman (n)
3827 "Convert integer N into a roman numeral."
3828 (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
3829 ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
3830 ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
3831 ( 1 . "I")))
3832 (res ""))
3833 (if (<= n 0)
3834 (number-to-string n)
3835 (while roman
3836 (if (>= n (caar roman))
3837 (setq n (- n (caar roman))
3838 res (concat res (cdar roman)))
3839 (pop roman)))
3840 res)))
3842 (defun org-export-get-tags (element info &optional tags inherited)
3843 "Return list of tags associated to ELEMENT.
3845 ELEMENT has either an `headline' or an `inlinetask' type. INFO
3846 is a plist used as a communication channel.
3848 Select tags (see `org-export-select-tags') and exclude tags (see
3849 `org-export-exclude-tags') are removed from the list.
3851 When non-nil, optional argument TAGS should be a list of strings.
3852 Any tag belonging to this list will also be removed.
3854 When optional argument INHERITED is non-nil, tags can also be
3855 inherited from parent headlines and FILETAGS keywords."
3856 (org-remove-if
3857 (lambda (tag) (or (member tag (plist-get info :select-tags))
3858 (member tag (plist-get info :exclude-tags))
3859 (member tag tags)))
3860 (if (not inherited) (org-element-property :tags element)
3861 ;; Build complete list of inherited tags.
3862 (let ((current-tag-list (org-element-property :tags element)))
3863 (mapc
3864 (lambda (parent)
3865 (mapc
3866 (lambda (tag)
3867 (when (and (memq (org-element-type parent) '(headline inlinetask))
3868 (not (member tag current-tag-list)))
3869 (push tag current-tag-list)))
3870 (org-element-property :tags parent)))
3871 (org-export-get-genealogy element))
3872 ;; Add FILETAGS keywords and return results.
3873 (org-uniquify (append (plist-get info :filetags) current-tag-list))))))
3875 (defun org-export-get-node-property (property blob &optional inherited)
3876 "Return node PROPERTY value for BLOB.
3878 PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA'). BLOB is an
3879 element or object.
3881 If optional argument INHERITED is non-nil, the value can be
3882 inherited from a parent headline.
3884 Return value is a string or nil."
3885 (let ((headline (if (eq (org-element-type blob) 'headline) blob
3886 (org-export-get-parent-headline blob))))
3887 (if (not inherited) (org-element-property property blob)
3888 (let ((parent headline) value)
3889 (catch 'found
3890 (while parent
3891 (when (plist-member (nth 1 parent) property)
3892 (throw 'found (org-element-property property parent)))
3893 (setq parent (org-element-property :parent parent))))))))
3895 (defun org-export-get-category (blob info)
3896 "Return category for element or object BLOB.
3898 INFO is a plist used as a communication channel.
3900 CATEGORY is automatically inherited from a parent headline, from
3901 #+CATEGORY: keyword or created out of original file name. If all
3902 fail, the fall-back value is \"???\"."
3903 (or (org-export-get-node-property :CATEGORY blob t)
3904 (org-element-map (plist-get info :parse-tree) 'keyword
3905 (lambda (kwd)
3906 (when (equal (org-element-property :key kwd) "CATEGORY")
3907 (org-element-property :value kwd)))
3908 info 'first-match)
3909 (let ((file (plist-get info :input-file)))
3910 (and file (file-name-sans-extension (file-name-nondirectory file))))
3911 "???"))
3913 (defun org-export-get-alt-title (headline info)
3914 "Return alternative title for HEADLINE, as a secondary string.
3915 INFO is a plist used as a communication channel. If no optional
3916 title is defined, fall-back to the regular title."
3917 (or (org-element-property :alt-title headline)
3918 (org-element-property :title headline)))
3920 (defun org-export-first-sibling-p (blob info)
3921 "Non-nil when BLOB is the first sibling in its parent.
3922 BLOB is an element or an object. If BLOB is a headline, non-nil
3923 means it is the first sibling in the sub-tree. INFO is a plist
3924 used as a communication channel."
3925 (memq (org-element-type (org-export-get-previous-element blob info))
3926 '(nil section)))
3928 (defun org-export-last-sibling-p (blob info)
3929 "Non-nil when BLOB is the last sibling in its parent.
3930 BLOB is an element or an object. INFO is a plist used as
3931 a communication channel."
3932 (not (org-export-get-next-element blob info)))
3935 ;;;; For Keywords
3937 ;; `org-export-get-date' returns a date appropriate for the document
3938 ;; to about to be exported. In particular, it takes care of
3939 ;; `org-export-date-timestamp-format'.
3941 (defun org-export-get-date (info &optional fmt)
3942 "Return date value for the current document.
3944 INFO is a plist used as a communication channel. FMT, when
3945 non-nil, is a time format string that will be applied on the date
3946 if it consists in a single timestamp object. It defaults to
3947 `org-export-date-timestamp-format' when nil.
3949 A proper date can be a secondary string, a string or nil. It is
3950 meant to be translated with `org-export-data' or alike."
3951 (let ((date (plist-get info :date))
3952 (fmt (or fmt org-export-date-timestamp-format)))
3953 (cond ((not date) nil)
3954 ((and fmt
3955 (not (cdr date))
3956 (eq (org-element-type (car date)) 'timestamp))
3957 (org-timestamp-format (car date) fmt))
3958 (t date))))
3961 ;;;; For Links
3963 ;; `org-export-solidify-link-text' turns a string into a safer version
3964 ;; for links, replacing most non-standard characters with hyphens.
3966 ;; `org-export-get-coderef-format' returns an appropriate format
3967 ;; string for coderefs.
3969 ;; `org-export-inline-image-p' returns a non-nil value when the link
3970 ;; provided should be considered as an inline image.
3972 ;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
3973 ;; (i.e. links with "fuzzy" as type) within the parsed tree, and
3974 ;; returns an appropriate unique identifier when found, or nil.
3976 ;; `org-export-resolve-id-link' returns the first headline with
3977 ;; specified id or custom-id in parse tree, the path to the external
3978 ;; file with the id or nil when neither was found.
3980 ;; `org-export-resolve-coderef' associates a reference to a line
3981 ;; number in the element it belongs, or returns the reference itself
3982 ;; when the element isn't numbered.
3984 (defun org-export-solidify-link-text (s)
3985 "Take link text S and make a safe target out of it."
3986 (save-match-data
3987 (mapconcat 'identity (org-split-string s "[^a-zA-Z0-9_.-:]+") "-")))
3989 (defun org-export-get-coderef-format (path desc)
3990 "Return format string for code reference link.
3991 PATH is the link path. DESC is its description."
3992 (save-match-data
3993 (cond ((not desc) "%s")
3994 ((string-match (regexp-quote (concat "(" path ")")) desc)
3995 (replace-match "%s" t t desc))
3996 (t desc))))
3998 (defun org-export-inline-image-p (link &optional rules)
3999 "Non-nil if LINK object points to an inline image.
4001 Optional argument is a set of RULES defining inline images. It
4002 is an alist where associations have the following shape:
4004 \(TYPE . REGEXP)
4006 Applying a rule means apply REGEXP against LINK's path when its
4007 type is TYPE. The function will return a non-nil value if any of
4008 the provided rules is non-nil. The default rule is
4009 `org-export-default-inline-image-rule'.
4011 This only applies to links without a description."
4012 (and (not (org-element-contents link))
4013 (let ((case-fold-search t)
4014 (rules (or rules org-export-default-inline-image-rule)))
4015 (catch 'exit
4016 (mapc
4017 (lambda (rule)
4018 (and (string= (org-element-property :type link) (car rule))
4019 (string-match (cdr rule)
4020 (org-element-property :path link))
4021 (throw 'exit t)))
4022 rules)
4023 ;; Return nil if no rule matched.
4024 nil))))
4026 (defun org-export-resolve-coderef (ref info)
4027 "Resolve a code reference REF.
4029 INFO is a plist used as a communication channel.
4031 Return associated line number in source code, or REF itself,
4032 depending on src-block or example element's switches."
4033 (org-element-map (plist-get info :parse-tree) '(example-block src-block)
4034 (lambda (el)
4035 (with-temp-buffer
4036 (insert (org-trim (org-element-property :value el)))
4037 (let* ((label-fmt (regexp-quote
4038 (or (org-element-property :label-fmt el)
4039 org-coderef-label-format)))
4040 (ref-re
4041 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
4042 (replace-regexp-in-string "%s" ref label-fmt nil t))))
4043 ;; Element containing REF is found. Resolve it to either
4044 ;; a label or a line number, as needed.
4045 (when (re-search-backward ref-re nil t)
4046 (cond
4047 ((org-element-property :use-labels el) ref)
4048 ((eq (org-element-property :number-lines el) 'continued)
4049 (+ (org-export-get-loc el info) (line-number-at-pos)))
4050 (t (line-number-at-pos)))))))
4051 info 'first-match))
4053 (defun org-export-resolve-fuzzy-link (link info)
4054 "Return LINK destination.
4056 INFO is a plist holding contextual information.
4058 Return value can be an object, an element, or nil:
4060 - If LINK path matches a target object (i.e. <<path>>) return it.
4062 - If LINK path exactly matches the name affiliated keyword
4063 \(i.e. #+NAME: path) of an element, return that element.
4065 - If LINK path exactly matches any headline name, return that
4066 element. If more than one headline share that name, priority
4067 will be given to the one with the closest common ancestor, if
4068 any, or the first one in the parse tree otherwise.
4070 - Otherwise, return nil.
4072 Assume LINK type is \"fuzzy\". White spaces are not
4073 significant."
4074 (let* ((raw-path (org-element-property :path link))
4075 (match-title-p (eq (aref raw-path 0) ?*))
4076 ;; Split PATH at white spaces so matches are space
4077 ;; insensitive.
4078 (path (org-split-string
4079 (if match-title-p (substring raw-path 1) raw-path)))
4080 ;; Cache for destinations that are not position dependent.
4081 (link-cache
4082 (or (plist-get info :resolve-fuzzy-link-cache)
4083 (plist-get (setq info (plist-put info :resolve-fuzzy-link-cache
4084 (make-hash-table :test 'equal)))
4085 :resolve-fuzzy-link-cache)))
4086 (cached (gethash path link-cache 'not-found)))
4087 (cond
4088 ;; Destination is not position dependent: use cached value.
4089 ((and (not match-title-p) (not (eq cached 'not-found))) cached)
4090 ;; First try to find a matching "<<path>>" unless user specified
4091 ;; he was looking for a headline (path starts with a "*"
4092 ;; character).
4093 ((and (not match-title-p)
4094 (let ((match (org-element-map (plist-get info :parse-tree) 'target
4095 (lambda (blob)
4096 (and (equal (org-split-string
4097 (org-element-property :value blob))
4098 path)
4099 blob))
4100 info 'first-match)))
4101 (and match (puthash path match link-cache)))))
4102 ;; Then try to find an element with a matching "#+NAME: path"
4103 ;; affiliated keyword.
4104 ((and (not match-title-p)
4105 (let ((match (org-element-map (plist-get info :parse-tree)
4106 org-element-all-elements
4107 (lambda (el)
4108 (let ((name (org-element-property :name el)))
4109 (when (and name
4110 (equal (org-split-string name) path))
4111 el)))
4112 info 'first-match)))
4113 (and match (puthash path match link-cache)))))
4114 ;; Last case: link either points to a headline or to nothingness.
4115 ;; Try to find the source, with priority given to headlines with
4116 ;; the closest common ancestor. If such candidate is found,
4117 ;; return it, otherwise return nil.
4119 (let ((find-headline
4120 (function
4121 ;; Return first headline whose `:raw-value' property is
4122 ;; NAME in parse tree DATA, or nil. Statistics cookies
4123 ;; are ignored.
4124 (lambda (name data)
4125 (org-element-map data 'headline
4126 (lambda (headline)
4127 (when (equal (org-split-string
4128 (replace-regexp-in-string
4129 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
4130 (org-element-property :raw-value headline)))
4131 name)
4132 headline))
4133 info 'first-match)))))
4134 ;; Search among headlines sharing an ancestor with link, from
4135 ;; closest to farthest.
4136 (catch 'exit
4137 (mapc
4138 (lambda (parent)
4139 (let ((foundp (funcall find-headline path parent)))
4140 (when foundp (throw 'exit foundp))))
4141 (let ((parent-hl (org-export-get-parent-headline link)))
4142 (if (not parent-hl) (list (plist-get info :parse-tree))
4143 (cons parent-hl (org-export-get-genealogy parent-hl)))))
4144 ;; No destination found: return nil.
4145 (and (not match-title-p) (puthash path nil link-cache))))))))
4147 (defun org-export-resolve-id-link (link info)
4148 "Return headline referenced as LINK destination.
4150 INFO is a plist used as a communication channel.
4152 Return value can be the headline element matched in current parse
4153 tree, a file name or nil. Assume LINK type is either \"id\" or
4154 \"custom-id\"."
4155 (let ((id (org-element-property :path link)))
4156 ;; First check if id is within the current parse tree.
4157 (or (org-element-map (plist-get info :parse-tree) 'headline
4158 (lambda (headline)
4159 (when (or (string= (org-element-property :ID headline) id)
4160 (string= (org-element-property :CUSTOM_ID headline) id))
4161 headline))
4162 info 'first-match)
4163 ;; Otherwise, look for external files.
4164 (cdr (assoc id (plist-get info :id-alist))))))
4166 (defun org-export-resolve-radio-link (link info)
4167 "Return radio-target object referenced as LINK destination.
4169 INFO is a plist used as a communication channel.
4171 Return value can be a radio-target object or nil. Assume LINK
4172 has type \"radio\"."
4173 (let ((path (replace-regexp-in-string
4174 "[ \r\t\n]+" " " (org-element-property :path link))))
4175 (org-element-map (plist-get info :parse-tree) 'radio-target
4176 (lambda (radio)
4177 (and (eq (compare-strings
4178 (replace-regexp-in-string
4179 "[ \r\t\n]+" " " (org-element-property :value radio))
4180 nil nil path nil nil t)
4182 radio))
4183 info 'first-match)))
4186 ;;;; For References
4188 ;; `org-export-get-ordinal' associates a sequence number to any object
4189 ;; or element.
4191 (defun org-export-get-ordinal (element info &optional types predicate)
4192 "Return ordinal number of an element or object.
4194 ELEMENT is the element or object considered. INFO is the plist
4195 used as a communication channel.
4197 Optional argument TYPES, when non-nil, is a list of element or
4198 object types, as symbols, that should also be counted in.
4199 Otherwise, only provided element's type is considered.
4201 Optional argument PREDICATE is a function returning a non-nil
4202 value if the current element or object should be counted in. It
4203 accepts two arguments: the element or object being considered and
4204 the plist used as a communication channel. This allows to count
4205 only a certain type of objects (i.e. inline images).
4207 Return value is a list of numbers if ELEMENT is a headline or an
4208 item. It is nil for keywords. It represents the footnote number
4209 for footnote definitions and footnote references. If ELEMENT is
4210 a target, return the same value as if ELEMENT was the closest
4211 table, item or headline containing the target. In any other
4212 case, return the sequence number of ELEMENT among elements or
4213 objects of the same type."
4214 ;; Ordinal of a target object refer to the ordinal of the closest
4215 ;; table, item, or headline containing the object.
4216 (when (eq (org-element-type element) 'target)
4217 (setq element
4218 (loop for parent in (org-export-get-genealogy element)
4219 when
4220 (memq
4221 (org-element-type parent)
4222 '(footnote-definition footnote-reference headline item
4223 table))
4224 return parent)))
4225 (case (org-element-type element)
4226 ;; Special case 1: A headline returns its number as a list.
4227 (headline (org-export-get-headline-number element info))
4228 ;; Special case 2: An item returns its number as a list.
4229 (item (let ((struct (org-element-property :structure element)))
4230 (org-list-get-item-number
4231 (org-element-property :begin element)
4232 struct
4233 (org-list-prevs-alist struct)
4234 (org-list-parents-alist struct))))
4235 ((footnote-definition footnote-reference)
4236 (org-export-get-footnote-number element info))
4237 (otherwise
4238 (let ((counter 0))
4239 ;; Increment counter until ELEMENT is found again.
4240 (org-element-map (plist-get info :parse-tree)
4241 (or types (org-element-type element))
4242 (lambda (el)
4243 (cond
4244 ((eq element el) (1+ counter))
4245 ((not predicate) (incf counter) nil)
4246 ((funcall predicate el info) (incf counter) nil)))
4247 info 'first-match)))))
4250 ;;;; For Src-Blocks
4252 ;; `org-export-get-loc' counts number of code lines accumulated in
4253 ;; src-block or example-block elements with a "+n" switch until
4254 ;; a given element, excluded. Note: "-n" switches reset that count.
4256 ;; `org-export-unravel-code' extracts source code (along with a code
4257 ;; references alist) from an `element-block' or `src-block' type
4258 ;; element.
4260 ;; `org-export-format-code' applies a formatting function to each line
4261 ;; of code, providing relative line number and code reference when
4262 ;; appropriate. Since it doesn't access the original element from
4263 ;; which the source code is coming, it expects from the code calling
4264 ;; it to know if lines should be numbered and if code references
4265 ;; should appear.
4267 ;; Eventually, `org-export-format-code-default' is a higher-level
4268 ;; function (it makes use of the two previous functions) which handles
4269 ;; line numbering and code references inclusion, and returns source
4270 ;; code in a format suitable for plain text or verbatim output.
4272 (defun org-export-get-loc (element info)
4273 "Return accumulated lines of code up to ELEMENT.
4275 INFO is the plist used as a communication channel.
4277 ELEMENT is excluded from count."
4278 (let ((loc 0))
4279 (org-element-map (plist-get info :parse-tree)
4280 `(src-block example-block ,(org-element-type element))
4281 (lambda (el)
4282 (cond
4283 ;; ELEMENT is reached: Quit the loop.
4284 ((eq el element))
4285 ;; Only count lines from src-block and example-block elements
4286 ;; with a "+n" or "-n" switch. A "-n" switch resets counter.
4287 ((not (memq (org-element-type el) '(src-block example-block))) nil)
4288 ((let ((linums (org-element-property :number-lines el)))
4289 (when linums
4290 ;; Accumulate locs or reset them.
4291 (let ((lines (org-count-lines
4292 (org-trim (org-element-property :value el)))))
4293 (setq loc (if (eq linums 'new) lines (+ loc lines))))))
4294 ;; Return nil to stay in the loop.
4295 nil)))
4296 info 'first-match)
4297 ;; Return value.
4298 loc))
4300 (defun org-export-unravel-code (element)
4301 "Clean source code and extract references out of it.
4303 ELEMENT has either a `src-block' an `example-block' type.
4305 Return a cons cell whose CAR is the source code, cleaned from any
4306 reference, protective commas and spurious indentation, and CDR is
4307 an alist between relative line number (integer) and name of code
4308 reference on that line (string)."
4309 (let* ((line 0) refs
4310 (value (org-element-property :value element))
4311 ;; Get code and clean it. Remove blank lines at its
4312 ;; beginning and end.
4313 (code (replace-regexp-in-string
4314 "\\`\\([ \t]*\n\\)+" ""
4315 (replace-regexp-in-string
4316 "\\([ \t]*\n\\)*[ \t]*\\'" "\n"
4317 (if (or org-src-preserve-indentation
4318 (org-element-property :preserve-indent element))
4319 value
4320 (org-element-remove-indentation value)))))
4321 ;; Get format used for references.
4322 (label-fmt (regexp-quote
4323 (or (org-element-property :label-fmt element)
4324 org-coderef-label-format)))
4325 ;; Build a regexp matching a loc with a reference.
4326 (with-ref-re
4327 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)[ \t]*\\)$"
4328 (replace-regexp-in-string
4329 "%s" "\\([-a-zA-Z0-9_ ]+\\)" label-fmt nil t))))
4330 ;; Return value.
4331 (cons
4332 ;; Code with references removed.
4333 (org-element-normalize-string
4334 (mapconcat
4335 (lambda (loc)
4336 (incf line)
4337 (if (not (string-match with-ref-re loc)) loc
4338 ;; Ref line: remove ref, and signal its position in REFS.
4339 (push (cons line (match-string 3 loc)) refs)
4340 (replace-match "" nil nil loc 1)))
4341 (org-split-string code "\n") "\n"))
4342 ;; Reference alist.
4343 refs)))
4345 (defun org-export-format-code (code fun &optional num-lines ref-alist)
4346 "Format CODE by applying FUN line-wise and return it.
4348 CODE is a string representing the code to format. FUN is
4349 a function. It must accept three arguments: a line of
4350 code (string), the current line number (integer) or nil and the
4351 reference associated to the current line (string) or nil.
4353 Optional argument NUM-LINES can be an integer representing the
4354 number of code lines accumulated until the current code. Line
4355 numbers passed to FUN will take it into account. If it is nil,
4356 FUN's second argument will always be nil. This number can be
4357 obtained with `org-export-get-loc' function.
4359 Optional argument REF-ALIST can be an alist between relative line
4360 number (i.e. ignoring NUM-LINES) and the name of the code
4361 reference on it. If it is nil, FUN's third argument will always
4362 be nil. It can be obtained through the use of
4363 `org-export-unravel-code' function."
4364 (let ((--locs (org-split-string code "\n"))
4365 (--line 0))
4366 (org-element-normalize-string
4367 (mapconcat
4368 (lambda (--loc)
4369 (incf --line)
4370 (let ((--ref (cdr (assq --line ref-alist))))
4371 (funcall fun --loc (and num-lines (+ num-lines --line)) --ref)))
4372 --locs "\n"))))
4374 (defun org-export-format-code-default (element info)
4375 "Return source code from ELEMENT, formatted in a standard way.
4377 ELEMENT is either a `src-block' or `example-block' element. INFO
4378 is a plist used as a communication channel.
4380 This function takes care of line numbering and code references
4381 inclusion. Line numbers, when applicable, appear at the
4382 beginning of the line, separated from the code by two white
4383 spaces. Code references, on the other hand, appear flushed to
4384 the right, separated by six white spaces from the widest line of
4385 code."
4386 ;; Extract code and references.
4387 (let* ((code-info (org-export-unravel-code element))
4388 (code (car code-info))
4389 (code-lines (org-split-string code "\n")))
4390 (if (null code-lines) ""
4391 (let* ((refs (and (org-element-property :retain-labels element)
4392 (cdr code-info)))
4393 ;; Handle line numbering.
4394 (num-start (case (org-element-property :number-lines element)
4395 (continued (org-export-get-loc element info))
4396 (new 0)))
4397 (num-fmt
4398 (and num-start
4399 (format "%%%ds "
4400 (length (number-to-string
4401 (+ (length code-lines) num-start))))))
4402 ;; Prepare references display, if required. Any reference
4403 ;; should start six columns after the widest line of code,
4404 ;; wrapped with parenthesis.
4405 (max-width
4406 (+ (apply 'max (mapcar 'length code-lines))
4407 (if (not num-start) 0 (length (format num-fmt num-start))))))
4408 (org-export-format-code
4409 code
4410 (lambda (loc line-num ref)
4411 (let ((number-str (and num-fmt (format num-fmt line-num))))
4412 (concat
4413 number-str
4415 (and ref
4416 (concat (make-string
4417 (- (+ 6 max-width)
4418 (+ (length loc) (length number-str))) ? )
4419 (format "(%s)" ref))))))
4420 num-start refs)))))
4423 ;;;; For Tables
4425 ;; `org-export-table-has-special-column-p' and and
4426 ;; `org-export-table-row-is-special-p' are predicates used to look for
4427 ;; meta-information about the table structure.
4429 ;; `org-table-has-header-p' tells when the rows before the first rule
4430 ;; should be considered as table's header.
4432 ;; `org-export-table-cell-width', `org-export-table-cell-alignment'
4433 ;; and `org-export-table-cell-borders' extract information from
4434 ;; a table-cell element.
4436 ;; `org-export-table-dimensions' gives the number on rows and columns
4437 ;; in the table, ignoring horizontal rules and special columns.
4438 ;; `org-export-table-cell-address', given a table-cell object, returns
4439 ;; the absolute address of a cell. On the other hand,
4440 ;; `org-export-get-table-cell-at' does the contrary.
4442 ;; `org-export-table-cell-starts-colgroup-p',
4443 ;; `org-export-table-cell-ends-colgroup-p',
4444 ;; `org-export-table-row-starts-rowgroup-p',
4445 ;; `org-export-table-row-ends-rowgroup-p',
4446 ;; `org-export-table-row-starts-header-p',
4447 ;; `org-export-table-row-ends-header-p' and
4448 ;; `org-export-table-row-in-header-p' indicate position of current row
4449 ;; or cell within the table.
4451 (defun org-export-table-has-special-column-p (table)
4452 "Non-nil when TABLE has a special column.
4453 All special columns will be ignored during export."
4454 ;; The table has a special column when every first cell of every row
4455 ;; has an empty value or contains a symbol among "/", "#", "!", "$",
4456 ;; "*" "_" and "^". Though, do not consider a first row containing
4457 ;; only empty cells as special.
4458 (let ((special-column-p 'empty))
4459 (catch 'exit
4460 (mapc
4461 (lambda (row)
4462 (when (eq (org-element-property :type row) 'standard)
4463 (let ((value (org-element-contents
4464 (car (org-element-contents row)))))
4465 (cond ((member value '(("/") ("#") ("!") ("$") ("*") ("_") ("^")))
4466 (setq special-column-p 'special))
4467 ((not value))
4468 (t (throw 'exit nil))))))
4469 (org-element-contents table))
4470 (eq special-column-p 'special))))
4472 (defun org-export-table-has-header-p (table info)
4473 "Non-nil when TABLE has a header.
4475 INFO is a plist used as a communication channel.
4477 A table has a header when it contains at least two row groups."
4478 (let ((cache (or (plist-get info :table-header-cache)
4479 (plist-get (setq info
4480 (plist-put info :table-header-cache
4481 (make-hash-table :test 'eq)))
4482 :table-header-cache))))
4483 (or (gethash table cache)
4484 (let ((rowgroup 1) row-flag)
4485 (puthash
4486 table
4487 (org-element-map table 'table-row
4488 (lambda (row)
4489 (cond
4490 ((> rowgroup 1) t)
4491 ((and row-flag (eq (org-element-property :type row) 'rule))
4492 (incf rowgroup) (setq row-flag nil))
4493 ((and (not row-flag) (eq (org-element-property :type row)
4494 'standard))
4495 (setq row-flag t) nil)))
4496 info 'first-match)
4497 cache)))))
4499 (defun org-export-table-row-is-special-p (table-row info)
4500 "Non-nil if TABLE-ROW is considered special.
4502 INFO is a plist used as the communication channel.
4504 All special rows will be ignored during export."
4505 (when (eq (org-element-property :type table-row) 'standard)
4506 (let ((first-cell (org-element-contents
4507 (car (org-element-contents table-row)))))
4508 ;; A row is special either when...
4510 ;; ... it starts with a field only containing "/",
4511 (equal first-cell '("/"))
4512 ;; ... the table contains a special column and the row start
4513 ;; with a marking character among, "^", "_", "$" or "!",
4514 (and (org-export-table-has-special-column-p
4515 (org-export-get-parent table-row))
4516 (member first-cell '(("^") ("_") ("$") ("!"))))
4517 ;; ... it contains only alignment cookies and empty cells.
4518 (let ((special-row-p 'empty))
4519 (catch 'exit
4520 (mapc
4521 (lambda (cell)
4522 (let ((value (org-element-contents cell)))
4523 ;; Since VALUE is a secondary string, the following
4524 ;; checks avoid expanding it with `org-export-data'.
4525 (cond ((not value))
4526 ((and (not (cdr value))
4527 (stringp (car value))
4528 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'"
4529 (car value)))
4530 (setq special-row-p 'cookie))
4531 (t (throw 'exit nil)))))
4532 (org-element-contents table-row))
4533 (eq special-row-p 'cookie)))))))
4535 (defun org-export-table-row-group (table-row info)
4536 "Return TABLE-ROW's group number, as an integer.
4538 INFO is a plist used as the communication channel.
4540 Return value is the group number, as an integer, or nil for
4541 special rows and rows separators. First group is also table's
4542 header."
4543 (let ((cache (or (plist-get info :table-row-group-cache)
4544 (plist-get (setq info
4545 (plist-put info :table-row-group-cache
4546 (make-hash-table :test 'eq)))
4547 :table-row-group-cache))))
4548 (cond ((gethash table-row cache))
4549 ((eq (org-element-property :type table-row) 'rule) nil)
4550 (t (let ((group 0) row-flag)
4551 (org-element-map (org-export-get-parent table-row) 'table-row
4552 (lambda (row)
4553 (if (eq (org-element-property :type row) 'rule)
4554 (setq row-flag nil)
4555 (unless row-flag (incf group) (setq row-flag t)))
4556 (when (eq table-row row) (puthash table-row group cache)))
4557 info 'first-match))))))
4559 (defun org-export-table-cell-width (table-cell info)
4560 "Return TABLE-CELL contents width.
4562 INFO is a plist used as the communication channel.
4564 Return value is the width given by the last width cookie in the
4565 same column as TABLE-CELL, or nil."
4566 (let* ((row (org-export-get-parent table-cell))
4567 (table (org-export-get-parent row))
4568 (cells (org-element-contents row))
4569 (columns (length cells))
4570 (column (- columns (length (memq table-cell cells))))
4571 (cache (or (plist-get info :table-cell-width-cache)
4572 (plist-get (setq info
4573 (plist-put info :table-cell-width-cache
4574 (make-hash-table :test 'eq)))
4575 :table-cell-width-cache)))
4576 (width-vector (or (gethash table cache)
4577 (puthash table (make-vector columns 'empty) cache)))
4578 (value (aref width-vector column)))
4579 (if (not (eq value 'empty)) value
4580 (let (cookie-width)
4581 (dolist (row (org-element-contents table)
4582 (aset width-vector column cookie-width))
4583 (when (org-export-table-row-is-special-p row info)
4584 ;; In a special row, try to find a width cookie at COLUMN.
4585 (let* ((value (org-element-contents
4586 (elt (org-element-contents row) column)))
4587 (cookie (car value)))
4588 ;; The following checks avoid expanding unnecessarily
4589 ;; the cell with `org-export-data'.
4590 (when (and value
4591 (not (cdr value))
4592 (stringp cookie)
4593 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie)
4594 (match-string 1 cookie))
4595 (setq cookie-width
4596 (string-to-number (match-string 1 cookie)))))))))))
4598 (defun org-export-table-cell-alignment (table-cell info)
4599 "Return TABLE-CELL contents alignment.
4601 INFO is a plist used as the communication channel.
4603 Return alignment as specified by the last alignment cookie in the
4604 same column as TABLE-CELL. If no such cookie is found, a default
4605 alignment value will be deduced from fraction of numbers in the
4606 column (see `org-table-number-fraction' for more information).
4607 Possible values are `left', `right' and `center'."
4608 ;; Load `org-table-number-fraction' and `org-table-number-regexp'.
4609 (require 'org-table)
4610 (let* ((row (org-export-get-parent table-cell))
4611 (table (org-export-get-parent row))
4612 (cells (org-element-contents row))
4613 (columns (length cells))
4614 (column (- columns (length (memq table-cell cells))))
4615 (cache (or (plist-get info :table-cell-alignment-cache)
4616 (plist-get (setq info
4617 (plist-put info :table-cell-alignment-cache
4618 (make-hash-table :test 'eq)))
4619 :table-cell-alignment-cache)))
4620 (align-vector (or (gethash table cache)
4621 (puthash table (make-vector columns nil) cache))))
4622 (or (aref align-vector column)
4623 (let ((number-cells 0)
4624 (total-cells 0)
4625 cookie-align
4626 previous-cell-number-p)
4627 (dolist (row (org-element-contents (org-export-get-parent row)))
4628 (cond
4629 ;; In a special row, try to find an alignment cookie at
4630 ;; COLUMN.
4631 ((org-export-table-row-is-special-p row info)
4632 (let ((value (org-element-contents
4633 (elt (org-element-contents row) column))))
4634 ;; Since VALUE is a secondary string, the following
4635 ;; checks avoid useless expansion through
4636 ;; `org-export-data'.
4637 (when (and value
4638 (not (cdr value))
4639 (stringp (car value))
4640 (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'"
4641 (car value))
4642 (match-string 1 (car value)))
4643 (setq cookie-align (match-string 1 (car value))))))
4644 ;; Ignore table rules.
4645 ((eq (org-element-property :type row) 'rule))
4646 ;; In a standard row, check if cell's contents are
4647 ;; expressing some kind of number. Increase NUMBER-CELLS
4648 ;; accordingly. Though, don't bother if an alignment
4649 ;; cookie has already defined cell's alignment.
4650 ((not cookie-align)
4651 (let ((value (org-export-data
4652 (org-element-contents
4653 (elt (org-element-contents row) column))
4654 info)))
4655 (incf total-cells)
4656 ;; Treat an empty cell as a number if it follows
4657 ;; a number.
4658 (if (not (or (string-match org-table-number-regexp value)
4659 (and (string= value "") previous-cell-number-p)))
4660 (setq previous-cell-number-p nil)
4661 (setq previous-cell-number-p t)
4662 (incf number-cells))))))
4663 ;; Return value. Alignment specified by cookies has
4664 ;; precedence over alignment deduced from cell's contents.
4665 (aset align-vector
4666 column
4667 (cond ((equal cookie-align "l") 'left)
4668 ((equal cookie-align "r") 'right)
4669 ((equal cookie-align "c") 'center)
4670 ((>= (/ (float number-cells) total-cells)
4671 org-table-number-fraction)
4672 'right)
4673 (t 'left)))))))
4675 (defun org-export-table-cell-borders (table-cell info)
4676 "Return TABLE-CELL borders.
4678 INFO is a plist used as a communication channel.
4680 Return value is a list of symbols, or nil. Possible values are:
4681 `top', `bottom', `above', `below', `left' and `right'. Note:
4682 `top' (resp. `bottom') only happen for a cell in the first
4683 row (resp. last row) of the table, ignoring table rules, if any.
4685 Returned borders ignore special rows."
4686 (let* ((row (org-export-get-parent table-cell))
4687 (table (org-export-get-parent-table table-cell))
4688 borders)
4689 ;; Top/above border? TABLE-CELL has a border above when a rule
4690 ;; used to demarcate row groups can be found above. Hence,
4691 ;; finding a rule isn't sufficient to push `above' in BORDERS:
4692 ;; another regular row has to be found above that rule.
4693 (let (rule-flag)
4694 (catch 'exit
4695 (mapc (lambda (row)
4696 (cond ((eq (org-element-property :type row) 'rule)
4697 (setq rule-flag t))
4698 ((not (org-export-table-row-is-special-p row info))
4699 (if rule-flag (throw 'exit (push 'above borders))
4700 (throw 'exit nil)))))
4701 ;; Look at every row before the current one.
4702 (cdr (memq row (reverse (org-element-contents table)))))
4703 ;; No rule above, or rule found starts the table (ignoring any
4704 ;; special row): TABLE-CELL is at the top of the table.
4705 (when rule-flag (push 'above borders))
4706 (push 'top borders)))
4707 ;; Bottom/below border? TABLE-CELL has a border below when next
4708 ;; non-regular row below is a rule.
4709 (let (rule-flag)
4710 (catch 'exit
4711 (mapc (lambda (row)
4712 (cond ((eq (org-element-property :type row) 'rule)
4713 (setq rule-flag t))
4714 ((not (org-export-table-row-is-special-p row info))
4715 (if rule-flag (throw 'exit (push 'below borders))
4716 (throw 'exit nil)))))
4717 ;; Look at every row after the current one.
4718 (cdr (memq row (org-element-contents table))))
4719 ;; No rule below, or rule found ends the table (modulo some
4720 ;; special row): TABLE-CELL is at the bottom of the table.
4721 (when rule-flag (push 'below borders))
4722 (push 'bottom borders)))
4723 ;; Right/left borders? They can only be specified by column
4724 ;; groups. Column groups are defined in a row starting with "/".
4725 ;; Also a column groups row only contains "<", "<>", ">" or blank
4726 ;; cells.
4727 (catch 'exit
4728 (let ((column (let ((cells (org-element-contents row)))
4729 (- (length cells) (length (memq table-cell cells))))))
4730 (mapc
4731 (lambda (row)
4732 (unless (eq (org-element-property :type row) 'rule)
4733 (when (equal (org-element-contents
4734 (car (org-element-contents row)))
4735 '("/"))
4736 (let ((column-groups
4737 (mapcar
4738 (lambda (cell)
4739 (let ((value (org-element-contents cell)))
4740 (when (member value '(("<") ("<>") (">") nil))
4741 (car value))))
4742 (org-element-contents row))))
4743 ;; There's a left border when previous cell, if
4744 ;; any, ends a group, or current one starts one.
4745 (when (or (and (not (zerop column))
4746 (member (elt column-groups (1- column))
4747 '(">" "<>")))
4748 (member (elt column-groups column) '("<" "<>")))
4749 (push 'left borders))
4750 ;; There's a right border when next cell, if any,
4751 ;; starts a group, or current one ends one.
4752 (when (or (and (/= (1+ column) (length column-groups))
4753 (member (elt column-groups (1+ column))
4754 '("<" "<>")))
4755 (member (elt column-groups column) '(">" "<>")))
4756 (push 'right borders))
4757 (throw 'exit nil)))))
4758 ;; Table rows are read in reverse order so last column groups
4759 ;; row has precedence over any previous one.
4760 (reverse (org-element-contents table)))))
4761 ;; Return value.
4762 borders))
4764 (defun org-export-table-cell-starts-colgroup-p (table-cell info)
4765 "Non-nil when TABLE-CELL is at the beginning of a column group.
4766 INFO is a plist used as a communication channel."
4767 ;; A cell starts a column group either when it is at the beginning
4768 ;; of a row (or after the special column, if any) or when it has
4769 ;; a left border.
4770 (or (eq (org-element-map (org-export-get-parent table-cell) 'table-cell
4771 'identity info 'first-match)
4772 table-cell)
4773 (memq 'left (org-export-table-cell-borders table-cell info))))
4775 (defun org-export-table-cell-ends-colgroup-p (table-cell info)
4776 "Non-nil when TABLE-CELL is at the end of a column group.
4777 INFO is a plist used as a communication channel."
4778 ;; A cell ends a column group either when it is at the end of a row
4779 ;; or when it has a right border.
4780 (or (eq (car (last (org-element-contents
4781 (org-export-get-parent table-cell))))
4782 table-cell)
4783 (memq 'right (org-export-table-cell-borders table-cell info))))
4785 (defun org-export-table-row-starts-rowgroup-p (table-row info)
4786 "Non-nil when TABLE-ROW is at the beginning of a row group.
4787 INFO is a plist used as a communication channel."
4788 (unless (or (eq (org-element-property :type table-row) 'rule)
4789 (org-export-table-row-is-special-p table-row info))
4790 (let ((borders (org-export-table-cell-borders
4791 (car (org-element-contents table-row)) info)))
4792 (or (memq 'top borders) (memq 'above borders)))))
4794 (defun org-export-table-row-ends-rowgroup-p (table-row info)
4795 "Non-nil when TABLE-ROW is at the end of a row group.
4796 INFO is a plist used as a communication channel."
4797 (unless (or (eq (org-element-property :type table-row) 'rule)
4798 (org-export-table-row-is-special-p table-row info))
4799 (let ((borders (org-export-table-cell-borders
4800 (car (org-element-contents table-row)) info)))
4801 (or (memq 'bottom borders) (memq 'below borders)))))
4803 (defun org-export-table-row-in-header-p (table-row info)
4804 "Non-nil when TABLE-ROW is located within table's header.
4805 INFO is a plist used as a communication channel. Always return
4806 nil for special rows and rows separators."
4807 (and (org-export-table-has-header-p
4808 (org-export-get-parent-table table-row) info)
4809 (eql (org-export-table-row-group table-row info) 1)))
4811 (defun org-export-table-row-starts-header-p (table-row info)
4812 "Non-nil when TABLE-ROW is the first table header's row.
4813 INFO is a plist used as a communication channel."
4814 (and (org-export-table-row-in-header-p table-row info)
4815 (org-export-table-row-starts-rowgroup-p table-row info)))
4817 (defun org-export-table-row-ends-header-p (table-row info)
4818 "Non-nil when TABLE-ROW is the last table header's row.
4819 INFO is a plist used as a communication channel."
4820 (and (org-export-table-row-in-header-p table-row info)
4821 (org-export-table-row-ends-rowgroup-p table-row info)))
4823 (defun org-export-table-row-number (table-row info)
4824 "Return TABLE-ROW number.
4825 INFO is a plist used as a communication channel. Return value is
4826 zero-based and ignores separators. The function returns nil for
4827 special columns and separators."
4828 (when (and (eq (org-element-property :type table-row) 'standard)
4829 (not (org-export-table-row-is-special-p table-row info)))
4830 (let ((number 0))
4831 (org-element-map (org-export-get-parent-table table-row) 'table-row
4832 (lambda (row)
4833 (cond ((eq row table-row) number)
4834 ((eq (org-element-property :type row) 'standard)
4835 (incf number) nil)))
4836 info 'first-match))))
4838 (defun org-export-table-dimensions (table info)
4839 "Return TABLE dimensions.
4841 INFO is a plist used as a communication channel.
4843 Return value is a CONS like (ROWS . COLUMNS) where
4844 ROWS (resp. COLUMNS) is the number of exportable
4845 rows (resp. columns)."
4846 (let (first-row (columns 0) (rows 0))
4847 ;; Set number of rows, and extract first one.
4848 (org-element-map table 'table-row
4849 (lambda (row)
4850 (when (eq (org-element-property :type row) 'standard)
4851 (incf rows)
4852 (unless first-row (setq first-row row)))) info)
4853 ;; Set number of columns.
4854 (org-element-map first-row 'table-cell (lambda (cell) (incf columns)) info)
4855 ;; Return value.
4856 (cons rows columns)))
4858 (defun org-export-table-cell-address (table-cell info)
4859 "Return address of a regular TABLE-CELL object.
4861 TABLE-CELL is the cell considered. INFO is a plist used as
4862 a communication channel.
4864 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
4865 zero-based index. Only exportable cells are considered. The
4866 function returns nil for other cells."
4867 (let* ((table-row (org-export-get-parent table-cell))
4868 (row-number (org-export-table-row-number table-row info)))
4869 (when row-number
4870 (cons row-number
4871 (let ((col-count 0))
4872 (org-element-map table-row 'table-cell
4873 (lambda (cell)
4874 (if (eq cell table-cell) col-count (incf col-count) nil))
4875 info 'first-match))))))
4877 (defun org-export-get-table-cell-at (address table info)
4878 "Return regular table-cell object at ADDRESS in TABLE.
4880 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
4881 zero-based index. TABLE is a table type element. INFO is
4882 a plist used as a communication channel.
4884 If no table-cell, among exportable cells, is found at ADDRESS,
4885 return nil."
4886 (let ((column-pos (cdr address)) (column-count 0))
4887 (org-element-map
4888 ;; Row at (car address) or nil.
4889 (let ((row-pos (car address)) (row-count 0))
4890 (org-element-map table 'table-row
4891 (lambda (row)
4892 (cond ((eq (org-element-property :type row) 'rule) nil)
4893 ((= row-count row-pos) row)
4894 (t (incf row-count) nil)))
4895 info 'first-match))
4896 'table-cell
4897 (lambda (cell)
4898 (if (= column-count column-pos) cell
4899 (incf column-count) nil))
4900 info 'first-match)))
4903 ;;;; For Tables Of Contents
4905 ;; `org-export-collect-headlines' builds a list of all exportable
4906 ;; headline elements, maybe limited to a certain depth. One can then
4907 ;; easily parse it and transcode it.
4909 ;; Building lists of tables, figures or listings is quite similar.
4910 ;; Once the generic function `org-export-collect-elements' is defined,
4911 ;; `org-export-collect-tables', `org-export-collect-figures' and
4912 ;; `org-export-collect-listings' can be derived from it.
4914 (defun org-export-collect-headlines (info &optional n)
4915 "Collect headlines in order to build a table of contents.
4917 INFO is a plist used as a communication channel.
4919 When optional argument N is an integer, it specifies the depth of
4920 the table of contents. Otherwise, it is set to the value of the
4921 last headline level. See `org-export-headline-levels' for more
4922 information.
4924 Return a list of all exportable headlines as parsed elements.
4925 Footnote sections, if any, will be ignored."
4926 (let ((limit (plist-get info :headline-levels)))
4927 (setq n (if (wholenump n) (min n limit) limit))
4928 (org-element-map (plist-get info :parse-tree) 'headline
4929 #'(lambda (headline)
4930 (unless (org-element-property :footnote-section-p headline)
4931 (let ((level (org-export-get-relative-level headline info)))
4932 (and (<= level n) headline))))
4933 info)))
4935 (defun org-export-collect-elements (type info &optional predicate)
4936 "Collect referenceable elements of a determined type.
4938 TYPE can be a symbol or a list of symbols specifying element
4939 types to search. Only elements with a caption are collected.
4941 INFO is a plist used as a communication channel.
4943 When non-nil, optional argument PREDICATE is a function accepting
4944 one argument, an element of type TYPE. It returns a non-nil
4945 value when that element should be collected.
4947 Return a list of all elements found, in order of appearance."
4948 (org-element-map (plist-get info :parse-tree) type
4949 (lambda (element)
4950 (and (org-element-property :caption element)
4951 (or (not predicate) (funcall predicate element))
4952 element))
4953 info))
4955 (defun org-export-collect-tables (info)
4956 "Build a list of tables.
4957 INFO is a plist used as a communication channel.
4959 Return a list of table elements with a caption."
4960 (org-export-collect-elements 'table info))
4962 (defun org-export-collect-figures (info predicate)
4963 "Build a list of figures.
4965 INFO is a plist used as a communication channel. PREDICATE is
4966 a function which accepts one argument: a paragraph element and
4967 whose return value is non-nil when that element should be
4968 collected.
4970 A figure is a paragraph type element, with a caption, verifying
4971 PREDICATE. The latter has to be provided since a \"figure\" is
4972 a vague concept that may depend on back-end.
4974 Return a list of elements recognized as figures."
4975 (org-export-collect-elements 'paragraph info predicate))
4977 (defun org-export-collect-listings (info)
4978 "Build a list of src blocks.
4980 INFO is a plist used as a communication channel.
4982 Return a list of src-block elements with a caption."
4983 (org-export-collect-elements 'src-block info))
4986 ;;;; Smart Quotes
4988 ;; The main function for the smart quotes sub-system is
4989 ;; `org-export-activate-smart-quotes', which replaces every quote in
4990 ;; a given string from the parse tree with its "smart" counterpart.
4992 ;; Dictionary for smart quotes is stored in
4993 ;; `org-export-smart-quotes-alist'.
4995 ;; Internally, regexps matching potential smart quotes (checks at
4996 ;; string boundaries are also necessary) are defined in
4997 ;; `org-export-smart-quotes-regexps'.
4999 (defconst org-export-smart-quotes-alist
5000 '(("da"
5001 ;; one may use: »...«, "...", ›...‹, or '...'.
5002 ;; http://sproget.dk/raad-og-regler/retskrivningsregler/retskrivningsregler/a7-40-60/a7-58-anforselstegn/
5003 ;; LaTeX quotes require Babel!
5004 (opening-double-quote :utf-8 "»" :html "&raquo;" :latex ">>"
5005 :texinfo "@guillemetright{}")
5006 (closing-double-quote :utf-8 "«" :html "&laquo;" :latex "<<"
5007 :texinfo "@guillemetleft{}")
5008 (opening-single-quote :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}"
5009 :texinfo "@guilsinglright{}")
5010 (closing-single-quote :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}"
5011 :texinfo "@guilsingleft{}")
5012 (apostrophe :utf-8 "’" :html "&rsquo;"))
5013 ("de"
5014 (opening-double-quote :utf-8 "„" :html "&bdquo;" :latex "\"`"
5015 :texinfo "@quotedblbase{}")
5016 (closing-double-quote :utf-8 "“" :html "&ldquo;" :latex "\"'"
5017 :texinfo "@quotedblleft{}")
5018 (opening-single-quote :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}"
5019 :texinfo "@quotesinglbase{}")
5020 (closing-single-quote :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}"
5021 :texinfo "@quoteleft{}")
5022 (apostrophe :utf-8 "’" :html "&rsquo;"))
5023 ("en"
5024 (opening-double-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5025 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5026 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5027 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5028 (apostrophe :utf-8 "’" :html "&rsquo;"))
5029 ("es"
5030 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5031 :texinfo "@guillemetleft{}")
5032 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5033 :texinfo "@guillemetright{}")
5034 (opening-single-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5035 (closing-single-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5036 (apostrophe :utf-8 "’" :html "&rsquo;"))
5037 ("fr"
5038 (opening-double-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5039 :texinfo "@guillemetleft{}@tie{}")
5040 (closing-double-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5041 :texinfo "@tie{}@guillemetright{}")
5042 (opening-single-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5043 :texinfo "@guillemetleft{}@tie{}")
5044 (closing-single-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5045 :texinfo "@tie{}@guillemetright{}")
5046 (apostrophe :utf-8 "’" :html "&rsquo;"))
5047 ("no"
5048 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5049 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5050 :texinfo "@guillemetleft{}")
5051 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5052 :texinfo "@guillemetright{}")
5053 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5054 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5055 (apostrophe :utf-8 "’" :html "&rsquo;"))
5056 ("nb"
5057 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5058 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5059 :texinfo "@guillemetleft{}")
5060 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5061 :texinfo "@guillemetright{}")
5062 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5063 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5064 (apostrophe :utf-8 "’" :html "&rsquo;"))
5065 ("nn"
5066 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5067 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5068 :texinfo "@guillemetleft{}")
5069 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5070 :texinfo "@guillemetright{}")
5071 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5072 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5073 (apostrophe :utf-8 "’" :html "&rsquo;"))
5074 ("ru"
5075 ;; http://ru.wikipedia.org/wiki/%D0%9A%D0%B0%D0%B2%D1%8B%D1%87%D0%BA%D0%B8#.D0.9A.D0.B0.D0.B2.D1.8B.D1.87.D0.BA.D0.B8.2C_.D0.B8.D1.81.D0.BF.D0.BE.D0.BB.D1.8C.D0.B7.D1.83.D0.B5.D0.BC.D1.8B.D0.B5_.D0.B2_.D1.80.D1.83.D1.81.D1.81.D0.BA.D0.BE.D0.BC_.D1.8F.D0.B7.D1.8B.D0.BA.D0.B5
5076 ;; http://www.artlebedev.ru/kovodstvo/sections/104/
5077 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "{}<<"
5078 :texinfo "@guillemetleft{}")
5079 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex ">>{}"
5080 :texinfo "@guillemetright{}")
5081 (opening-single-quote :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}"
5082 :texinfo "@quotedblbase{}")
5083 (closing-single-quote :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}"
5084 :texinfo "@quotedblleft{}")
5085 (apostrophe :utf-8 "’" :html: "&#39;"))
5086 ("sv"
5087 ;; based on https://sv.wikipedia.org/wiki/Citattecken
5088 (opening-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5089 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5090 (opening-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`")
5091 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'")
5092 (apostrophe :utf-8 "’" :html "&rsquo;"))
5094 "Smart quotes translations.
5096 Alist whose CAR is a language string and CDR is an alist with
5097 quote type as key and a plist associating various encodings to
5098 their translation as value.
5100 A quote type can be any symbol among `opening-double-quote',
5101 `closing-double-quote', `opening-single-quote',
5102 `closing-single-quote' and `apostrophe'.
5104 Valid encodings include `:utf-8', `:html', `:latex' and
5105 `:texinfo'.
5107 If no translation is found, the quote character is left as-is.")
5109 (defconst org-export-smart-quotes-regexps
5110 (list
5111 ;; Possible opening quote at beginning of string.
5112 "\\`\\([\"']\\)\\(\\w\\|\\s.\\|\\s_\\|\\s(\\)"
5113 ;; Possible closing quote at beginning of string.
5114 "\\`\\([\"']\\)\\(\\s-\\|\\s)\\|\\s.\\)"
5115 ;; Possible apostrophe at beginning of string.
5116 "\\`\\('\\)\\S-"
5117 ;; Opening single and double quotes.
5118 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\(?:\\w\\|\\s.\\|\\s_\\)"
5119 ;; Closing single and double quotes.
5120 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\(?:\\s-\\|\\s)\\|\\s.\\)"
5121 ;; Apostrophe.
5122 "\\S-\\('\\)\\S-"
5123 ;; Possible opening quote at end of string.
5124 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\'"
5125 ;; Possible closing quote at end of string.
5126 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\'"
5127 ;; Possible apostrophe at end of string.
5128 "\\S-\\('\\)\\'")
5129 "List of regexps matching a quote or an apostrophe.
5130 In every regexp, quote or apostrophe matched is put in group 1.")
5132 (defun org-export-activate-smart-quotes (s encoding info &optional original)
5133 "Replace regular quotes with \"smart\" quotes in string S.
5135 ENCODING is a symbol among `:html', `:latex', `:texinfo' and
5136 `:utf-8'. INFO is a plist used as a communication channel.
5138 The function has to retrieve information about string
5139 surroundings in parse tree. It can only happen with an
5140 unmodified string. Thus, if S has already been through another
5141 process, a non-nil ORIGINAL optional argument will provide that
5142 original string.
5144 Return the new string."
5145 (if (equal s "") ""
5146 (let* ((prev (org-export-get-previous-element (or original s) info))
5147 ;; Try to be flexible when computing number of blanks
5148 ;; before object. The previous object may be a string
5149 ;; introduced by the back-end and not completely parsed.
5150 (pre-blank (and prev
5151 (or (org-element-property :post-blank prev)
5152 ;; A string with missing `:post-blank'
5153 ;; property.
5154 (and (stringp prev)
5155 (string-match " *\\'" prev)
5156 (length (match-string 0 prev)))
5157 ;; Fallback value.
5158 0)))
5159 (next (org-export-get-next-element (or original s) info))
5160 (get-smart-quote
5161 (lambda (q type)
5162 ;; Return smart quote associated to a give quote Q, as
5163 ;; a string. TYPE is a symbol among `open', `close' and
5164 ;; `apostrophe'.
5165 (let ((key (case type
5166 (apostrophe 'apostrophe)
5167 (open (if (equal "'" q) 'opening-single-quote
5168 'opening-double-quote))
5169 (otherwise (if (equal "'" q) 'closing-single-quote
5170 'closing-double-quote)))))
5171 (or (plist-get
5172 (cdr (assq key
5173 (cdr (assoc (plist-get info :language)
5174 org-export-smart-quotes-alist))))
5175 encoding)
5176 q)))))
5177 (if (or (equal "\"" s) (equal "'" s))
5178 ;; Only a quote: no regexp can match. We have to check both
5179 ;; sides and decide what to do.
5180 (cond ((and (not prev) (not next)) s)
5181 ((not prev) (funcall get-smart-quote s 'open))
5182 ((and (not next) (zerop pre-blank))
5183 (funcall get-smart-quote s 'close))
5184 ((not next) s)
5185 ((zerop pre-blank) (funcall get-smart-quote s 'apostrophe))
5186 (t (funcall get-smart-quote 'open)))
5187 ;; 1. Replace quote character at the beginning of S.
5188 (cond
5189 ;; Apostrophe?
5190 ((and prev (zerop pre-blank)
5191 (string-match (nth 2 org-export-smart-quotes-regexps) s))
5192 (setq s (replace-match
5193 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5194 nil t s 1)))
5195 ;; Closing quote?
5196 ((and prev (zerop pre-blank)
5197 (string-match (nth 1 org-export-smart-quotes-regexps) s))
5198 (setq s (replace-match
5199 (funcall get-smart-quote (match-string 1 s) 'close)
5200 nil t s 1)))
5201 ;; Opening quote?
5202 ((and (or (not prev) (> pre-blank 0))
5203 (string-match (nth 0 org-export-smart-quotes-regexps) s))
5204 (setq s (replace-match
5205 (funcall get-smart-quote (match-string 1 s) 'open)
5206 nil t s 1))))
5207 ;; 2. Replace quotes in the middle of the string.
5208 (setq s (replace-regexp-in-string
5209 ;; Opening quotes.
5210 (nth 3 org-export-smart-quotes-regexps)
5211 (lambda (text)
5212 (funcall get-smart-quote (match-string 1 text) 'open))
5213 s nil t 1))
5214 (setq s (replace-regexp-in-string
5215 ;; Closing quotes.
5216 (nth 4 org-export-smart-quotes-regexps)
5217 (lambda (text)
5218 (funcall get-smart-quote (match-string 1 text) 'close))
5219 s nil t 1))
5220 (setq s (replace-regexp-in-string
5221 ;; Apostrophes.
5222 (nth 5 org-export-smart-quotes-regexps)
5223 (lambda (text)
5224 (funcall get-smart-quote (match-string 1 text) 'apostrophe))
5225 s nil t 1))
5226 ;; 3. Replace quote character at the end of S.
5227 (cond
5228 ;; Apostrophe?
5229 ((and next (string-match (nth 8 org-export-smart-quotes-regexps) s))
5230 (setq s (replace-match
5231 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5232 nil t s 1)))
5233 ;; Closing quote?
5234 ((and (not next)
5235 (string-match (nth 7 org-export-smart-quotes-regexps) s))
5236 (setq s (replace-match
5237 (funcall get-smart-quote (match-string 1 s) 'close)
5238 nil t s 1)))
5239 ;; Opening quote?
5240 ((and next (string-match (nth 6 org-export-smart-quotes-regexps) s))
5241 (setq s (replace-match
5242 (funcall get-smart-quote (match-string 1 s) 'open)
5243 nil t s 1))))
5244 ;; Return string with smart quotes.
5245 s))))
5247 ;;;; Topology
5249 ;; Here are various functions to retrieve information about the
5250 ;; neighborhood of a given element or object. Neighbors of interest
5251 ;; are direct parent (`org-export-get-parent'), parent headline
5252 ;; (`org-export-get-parent-headline'), first element containing an
5253 ;; object, (`org-export-get-parent-element'), parent table
5254 ;; (`org-export-get-parent-table'), previous element or object
5255 ;; (`org-export-get-previous-element') and next element or object
5256 ;; (`org-export-get-next-element').
5258 ;; `org-export-get-genealogy' returns the full genealogy of a given
5259 ;; element or object, from closest parent to full parse tree.
5261 ;; defsubst org-export-get-parent must be defined before first use
5263 (defun org-export-get-genealogy (blob)
5264 "Return full genealogy relative to a given element or object.
5266 BLOB is the element or object being considered.
5268 Ancestors are returned from closest to farthest, the last one
5269 being the full parse tree."
5270 (let (genealogy (parent blob))
5271 (while (setq parent (org-element-property :parent parent))
5272 (push parent genealogy))
5273 (nreverse genealogy)))
5275 (defun org-export-get-parent-headline (blob)
5276 "Return BLOB parent headline or nil.
5277 BLOB is the element or object being considered."
5278 (let ((parent blob))
5279 (while (and (setq parent (org-element-property :parent parent))
5280 (not (eq (org-element-type parent) 'headline))))
5281 parent))
5283 (defun org-export-get-parent-element (object)
5284 "Return first element containing OBJECT or nil.
5285 OBJECT is the object to consider."
5286 (let ((parent object))
5287 (while (and (setq parent (org-element-property :parent parent))
5288 (memq (org-element-type parent) org-element-all-objects)))
5289 parent))
5291 (defun org-export-get-parent-table (object)
5292 "Return OBJECT parent table or nil.
5293 OBJECT is either a `table-cell' or `table-element' type object."
5294 (let ((parent object))
5295 (while (and (setq parent (org-element-property :parent parent))
5296 (not (eq (org-element-type parent) 'table))))
5297 parent))
5299 (defun org-export-get-previous-element (blob info &optional n)
5300 "Return previous element or object.
5302 BLOB is an element or object. INFO is a plist used as
5303 a communication channel. Return previous exportable element or
5304 object, a string, or nil.
5306 When optional argument N is a positive integer, return a list
5307 containing up to N siblings before BLOB, from farthest to
5308 closest. With any other non-nil value, return a list containing
5309 all of them."
5310 (let* ((secondary (org-element-secondary-p blob))
5311 (parent (org-export-get-parent blob))
5312 (siblings
5313 (if secondary (org-element-property secondary parent)
5314 (org-element-contents parent)))
5315 prev)
5316 (catch 'exit
5317 (dolist (obj (cdr (memq blob (reverse siblings))) prev)
5318 (cond ((memq obj (plist-get info :ignore-list)))
5319 ((null n) (throw 'exit obj))
5320 ((not (wholenump n)) (push obj prev))
5321 ((zerop n) (throw 'exit prev))
5322 (t (decf n) (push obj prev)))))))
5324 (defun org-export-get-next-element (blob info &optional n)
5325 "Return next element or object.
5327 BLOB is an element or object. INFO is a plist used as
5328 a communication channel. Return next exportable element or
5329 object, a string, or nil.
5331 When optional argument N is a positive integer, return a list
5332 containing up to N siblings after BLOB, from closest to farthest.
5333 With any other non-nil value, return a list containing all of
5334 them."
5335 (let* ((secondary (org-element-secondary-p blob))
5336 (parent (org-export-get-parent blob))
5337 (siblings
5338 (cdr (memq blob
5339 (if secondary (org-element-property secondary parent)
5340 (org-element-contents parent)))))
5341 next)
5342 (catch 'exit
5343 (dolist (obj siblings (nreverse next))
5344 (cond ((memq obj (plist-get info :ignore-list)))
5345 ((null n) (throw 'exit obj))
5346 ((not (wholenump n)) (push obj next))
5347 ((zerop n) (throw 'exit (nreverse next)))
5348 (t (decf n) (push obj next)))))))
5351 ;;;; Translation
5353 ;; `org-export-translate' translates a string according to the language
5354 ;; specified by the LANGUAGE keyword. `org-export-dictionary' contains
5355 ;; the dictionary used for the translation.
5357 (defconst org-export-dictionary
5358 '(("%e %n: %c"
5359 ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c"))
5360 ("Author"
5361 ("ca" :default "Autor")
5362 ("cs" :default "Autor")
5363 ("da" :default "Forfatter")
5364 ("de" :default "Autor")
5365 ("eo" :html "A&#365;toro")
5366 ("es" :default "Autor")
5367 ("et" :default "Autor")
5368 ("fi" :html "Tekij&auml;")
5369 ("fr" :default "Auteur")
5370 ("hu" :default "Szerz&otilde;")
5371 ("is" :html "H&ouml;fundur")
5372 ("it" :default "Autore")
5373 ("ja" :default "著者" :html "&#33879;&#32773;")
5374 ("nl" :default "Auteur")
5375 ("no" :default "Forfatter")
5376 ("nb" :default "Forfatter")
5377 ("nn" :default "Forfattar")
5378 ("pl" :default "Autor")
5379 ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5380 ("sv" :html "F&ouml;rfattare")
5381 ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5382 ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者")
5383 ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者"))
5384 ("Continued from previous page"
5385 ("de" :default "Fortsetzung von vorheriger Seite")
5386 ("es" :default "Continúa de la página anterior")
5387 ("fr" :default "Suite de la page précédente")
5388 ("it" :default "Continua da pagina precedente")
5389 ("ja" :default "前ページからの続き")
5390 ("nl" :default "Vervolg van vorige pagina")
5391 ("pt" :default "Continuação da página anterior")
5392 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)"
5393 :utf-8 "(Продолжение)"))
5394 ("Continued on next page"
5395 ("de" :default "Fortsetzung nächste Seite")
5396 ("es" :default "Continúa en la siguiente página")
5397 ("fr" :default "Suite page suivante")
5398 ("it" :default "Continua alla pagina successiva")
5399 ("ja" :default "次ページに続く")
5400 ("nl" :default "Vervolg op volgende pagina")
5401 ("pt" :default "Continua na página seguinte")
5402 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)"
5403 :utf-8 "(Продолжение следует)"))
5404 ("Date"
5405 ("ca" :default "Data")
5406 ("cs" :default "Datum")
5407 ("da" :default "Dato")
5408 ("de" :default "Datum")
5409 ("eo" :default "Dato")
5410 ("es" :default "Fecha")
5411 ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev")
5412 ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;")
5413 ("hu" :html "D&aacute;tum")
5414 ("is" :default "Dagsetning")
5415 ("it" :default "Data")
5416 ("ja" :default "日付" :html "&#26085;&#20184;")
5417 ("nl" :default "Datum")
5418 ("no" :default "Dato")
5419 ("nb" :default "Dato")
5420 ("nn" :default "Dato")
5421 ("pl" :default "Data")
5422 ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5423 ("sv" :default "Datum")
5424 ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5425 ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期")
5426 ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期"))
5427 ("Equation"
5428 ("da" :default "Ligning")
5429 ("de" :default "Gleichung")
5430 ("es" :html "Ecuaci&oacute;n" :default "Ecuación")
5431 ("et" :html "V&#245;rrand" :utf-8 "Võrrand")
5432 ("fr" :ascii "Equation" :default "Équation")
5433 ("ja" :default "方程式")
5434 ("no" :default "Ligning")
5435 ("nb" :default "Ligning")
5436 ("nn" :default "Likning")
5437 ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;"
5438 :utf-8 "Уравнение")
5439 ("sv" :default "Ekvation")
5440 ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程"))
5441 ("Figure"
5442 ("da" :default "Figur")
5443 ("de" :default "Abbildung")
5444 ("es" :default "Figura")
5445 ("et" :default "Joonis")
5446 ("ja" :default "図" :html "&#22259;")
5447 ("no" :default "Illustrasjon")
5448 ("nb" :default "Illustrasjon")
5449 ("nn" :default "Illustrasjon")
5450 ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок")
5451 ("sv" :default "Illustration")
5452 ("zh-CN" :html "&#22270;" :utf-8 "图"))
5453 ("Figure %d:"
5454 ("da" :default "Figur %d")
5455 ("de" :default "Abbildung %d:")
5456 ("es" :default "Figura %d:")
5457 ("et" :default "Joonis %d:")
5458 ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:")
5459 ("ja" :default "図%d: " :html "&#22259;%d: ")
5460 ("no" :default "Illustrasjon %d")
5461 ("nb" :default "Illustrasjon %d")
5462 ("nn" :default "Illustrasjon %d")
5463 ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:")
5464 ("sv" :default "Illustration %d")
5465 ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d "))
5466 ("Footnotes"
5467 ("ca" :html "Peus de p&agrave;gina")
5468 ("cs" :default "Pozn\xe1mky pod carou")
5469 ("da" :default "Fodnoter")
5470 ("de" :html "Fu&szlig;noten" :default "Fußnoten")
5471 ("eo" :default "Piednotoj")
5472 ("es" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página")
5473 ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused")
5474 ("fi" :default "Alaviitteet")
5475 ("fr" :default "Notes de bas de page")
5476 ("hu" :html "L&aacute;bjegyzet")
5477 ("is" :html "Aftanm&aacute;lsgreinar")
5478 ("it" :html "Note a pi&egrave; di pagina")
5479 ("ja" :default "脚注" :html "&#33050;&#27880;")
5480 ("nl" :default "Voetnoten")
5481 ("no" :default "Fotnoter")
5482 ("nb" :default "Fotnoter")
5483 ("nn" :default "Fotnotar")
5484 ("pl" :default "Przypis")
5485 ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски")
5486 ("sv" :default "Fotnoter")
5487 ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;"
5488 :utf-8 "Примітки")
5489 ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注")
5490 ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註"))
5491 ("List of Listings"
5492 ("da" :default "Programmer")
5493 ("de" :default "Programmauflistungsverzeichnis")
5494 ("es" :default "Indice de Listados de programas")
5495 ("et" :default "Loendite nimekiri")
5496 ("fr" :default "Liste des programmes")
5497 ("ja" :default "ソースコード目次")
5498 ("no" :default "Dataprogrammer")
5499 ("nb" :default "Dataprogrammer")
5500 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;"
5501 :utf-8 "Список распечаток")
5502 ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录"))
5503 ("List of Tables"
5504 ("da" :default "Tabeller")
5505 ("de" :default "Tabellenverzeichnis")
5506 ("es" :default "Indice de tablas")
5507 ("et" :default "Tabelite nimekiri")
5508 ("fr" :default "Liste des tableaux")
5509 ("ja" :default "表目次")
5510 ("no" :default "Tabeller")
5511 ("nb" :default "Tabeller")
5512 ("nn" :default "Tabeller")
5513 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;"
5514 :utf-8 "Список таблиц")
5515 ("sv" :default "Tabeller")
5516 ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录"))
5517 ("Listing %d:"
5518 ("da" :default "Program %d")
5519 ("de" :default "Programmlisting %d")
5520 ("es" :default "Listado de programa %d")
5521 ("et" :default "Loend %d")
5522 ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:")
5523 ("ja" :default "ソースコード%d:")
5524 ("no" :default "Dataprogram %d")
5525 ("nb" :default "Dataprogram %d")
5526 ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:"
5527 :utf-8 "Распечатка %d.:")
5528 ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d "))
5529 ("References"
5530 ("fr" :ascii "References" :default "Références")
5531 ("de" :default "Quellen"))
5532 ("See section %s"
5533 ("da" :default "jævnfør afsnit %s")
5534 ("de" :default "siehe Abschnitt %s")
5535 ("es" :default "vea seccion %s")
5536 ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s")
5537 ("fr" :default "cf. section %s")
5538 ("ja" :default "セクション %s を参照")
5539 ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s"
5540 :utf-8 "См. раздел %s")
5541 ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节"))
5542 ("Table"
5543 ("de" :default "Tabelle")
5544 ("es" :default "Tabla")
5545 ("et" :default "Tabel")
5546 ("fr" :default "Tableau")
5547 ("ja" :default "表" :html "&#34920;")
5548 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица")
5549 ("zh-CN" :html "&#34920;" :utf-8 "表"))
5550 ("Table %d:"
5551 ("da" :default "Tabel %d")
5552 ("de" :default "Tabelle %d")
5553 ("es" :default "Tabla %d")
5554 ("et" :default "Tabel %d")
5555 ("fr" :default "Tableau %d :")
5556 ("ja" :default "表%d:" :html "&#34920;%d:")
5557 ("no" :default "Tabell %d")
5558 ("nb" :default "Tabell %d")
5559 ("nn" :default "Tabell %d")
5560 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:"
5561 :utf-8 "Таблица %d.:")
5562 ("sv" :default "Tabell %d")
5563 ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d "))
5564 ("Table of Contents"
5565 ("ca" :html "&Iacute;ndex")
5566 ("cs" :default "Obsah")
5567 ("da" :default "Indhold")
5568 ("de" :default "Inhaltsverzeichnis")
5569 ("eo" :default "Enhavo")
5570 ("es" :html "&Iacute;ndice")
5571 ("et" :default "Sisukord")
5572 ("fi" :html "Sis&auml;llysluettelo")
5573 ("fr" :ascii "Sommaire" :default "Table des matières")
5574 ("hu" :html "Tartalomjegyz&eacute;k")
5575 ("is" :default "Efnisyfirlit")
5576 ("it" :default "Indice")
5577 ("ja" :default "目次" :html "&#30446;&#27425;")
5578 ("nl" :default "Inhoudsopgave")
5579 ("no" :default "Innhold")
5580 ("nb" :default "Innhold")
5581 ("nn" :default "Innhald")
5582 ("pl" :html "Spis tre&#x015b;ci")
5583 ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;"
5584 :utf-8 "Содержание")
5585 ("sv" :html "Inneh&aring;ll")
5586 ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст")
5587 ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录")
5588 ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄"))
5589 ("Unknown reference"
5590 ("da" :default "ukendt reference")
5591 ("de" :default "Unbekannter Verweis")
5592 ("es" :default "referencia desconocida")
5593 ("et" :default "Tundmatu viide")
5594 ("fr" :ascii "Destination inconnue" :default "Référence inconnue")
5595 ("ja" :default "不明な参照先")
5596 ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;"
5597 :utf-8 "Неизвестная ссылка")
5598 ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))
5599 "Dictionary for export engine.
5601 Alist whose CAR is the string to translate and CDR is an alist
5602 whose CAR is the language string and CDR is a plist whose
5603 properties are possible charsets and values translated terms.
5605 It is used as a database for `org-export-translate'. Since this
5606 function returns the string as-is if no translation was found,
5607 the variable only needs to record values different from the
5608 entry.")
5610 (defun org-export-translate (s encoding info)
5611 "Translate string S according to language specification.
5613 ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
5614 and `:utf-8'. INFO is a plist used as a communication channel.
5616 Translation depends on `:language' property. Return the
5617 translated string. If no translation is found, try to fall back
5618 to `:default' encoding. If it fails, return S."
5619 (let* ((lang (plist-get info :language))
5620 (translations (cdr (assoc lang
5621 (cdr (assoc s org-export-dictionary))))))
5622 (or (plist-get translations encoding)
5623 (plist-get translations :default)
5624 s)))
5628 ;;; Asynchronous Export
5630 ;; `org-export-async-start' is the entry point for asynchronous
5631 ;; export. It recreates current buffer (including visibility,
5632 ;; narrowing and visited file) in an external Emacs process, and
5633 ;; evaluates a command there. It then applies a function on the
5634 ;; returned results in the current process.
5636 ;; At a higher level, `org-export-to-buffer' and `org-export-to-file'
5637 ;; allow to export to a buffer or a file, asynchronously or not.
5639 ;; `org-export-output-file-name' is an auxiliary function meant to be
5640 ;; used with `org-export-to-file'. With a given extension, it tries
5641 ;; to provide a canonical file name to write export output to.
5643 ;; Asynchronously generated results are never displayed directly.
5644 ;; Instead, they are stored in `org-export-stack-contents'. They can
5645 ;; then be retrieved by calling `org-export-stack'.
5647 ;; Export Stack is viewed through a dedicated major mode
5648 ;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
5649 ;;`org-export-stack-delete', `org-export-stack-view' and
5650 ;;`org-export-stack-clear'.
5652 ;; For back-ends, `org-export-add-to-stack' add a new source to stack.
5653 ;; It should be used whenever `org-export-async-start' is called.
5655 (defmacro org-export-async-start (fun &rest body)
5656 "Call function FUN on the results returned by BODY evaluation.
5658 BODY evaluation happens in an asynchronous process, from a buffer
5659 which is an exact copy of the current one.
5661 Use `org-export-add-to-stack' in FUN in order to register results
5662 in the stack.
5664 This is a low level function. See also `org-export-to-buffer'
5665 and `org-export-to-file' for more specialized functions."
5666 (declare (indent 1) (debug t))
5667 (org-with-gensyms (process temp-file copy-fun proc-buffer coding)
5668 ;; Write the full sexp evaluating BODY in a copy of the current
5669 ;; buffer to a temporary file, as it may be too long for program
5670 ;; args in `start-process'.
5671 `(with-temp-message "Initializing asynchronous export process"
5672 (let ((,copy-fun (org-export--generate-copy-script (current-buffer)))
5673 (,temp-file (make-temp-file "org-export-process"))
5674 (,coding buffer-file-coding-system))
5675 (with-temp-file ,temp-file
5676 (insert
5677 ;; Null characters (from variable values) are inserted
5678 ;; within the file. As a consequence, coding system for
5679 ;; buffer contents will not be recognized properly. So,
5680 ;; we make sure it is the same as the one used to display
5681 ;; the original buffer.
5682 (format ";; -*- coding: %s; -*-\n%S"
5683 ,coding
5684 `(with-temp-buffer
5685 (when org-export-async-debug '(setq debug-on-error t))
5686 ;; Ignore `kill-emacs-hook' and code evaluation
5687 ;; queries from Babel as we need a truly
5688 ;; non-interactive process.
5689 (setq kill-emacs-hook nil
5690 org-babel-confirm-evaluate-answer-no t)
5691 ;; Initialize export framework.
5692 (require 'ox)
5693 ;; Re-create current buffer there.
5694 (funcall ,,copy-fun)
5695 (restore-buffer-modified-p nil)
5696 ;; Sexp to evaluate in the buffer.
5697 (print (progn ,,@body))))))
5698 ;; Start external process.
5699 (let* ((process-connection-type nil)
5700 (,proc-buffer (generate-new-buffer-name "*Org Export Process*"))
5701 (,process
5702 (apply
5703 #'start-process
5704 (append
5705 (list "org-export-process"
5706 ,proc-buffer
5707 (expand-file-name invocation-name invocation-directory)
5708 "--batch")
5709 (if org-export-async-init-file
5710 (list "-Q" "-l" org-export-async-init-file)
5711 (list "-l" user-init-file))
5712 (list "-l" ,temp-file)))))
5713 ;; Register running process in stack.
5714 (org-export-add-to-stack (get-buffer ,proc-buffer) nil ,process)
5715 ;; Set-up sentinel in order to catch results.
5716 (let ((handler ,fun))
5717 (set-process-sentinel
5718 ,process
5719 `(lambda (p status)
5720 (let ((proc-buffer (process-buffer p)))
5721 (when (eq (process-status p) 'exit)
5722 (unwind-protect
5723 (if (zerop (process-exit-status p))
5724 (unwind-protect
5725 (let ((results
5726 (with-current-buffer proc-buffer
5727 (goto-char (point-max))
5728 (backward-sexp)
5729 (read (current-buffer)))))
5730 (funcall ,handler results))
5731 (unless org-export-async-debug
5732 (and (get-buffer proc-buffer)
5733 (kill-buffer proc-buffer))))
5734 (org-export-add-to-stack proc-buffer nil p)
5735 (ding)
5736 (message "Process '%s' exited abnormally" p))
5737 (unless org-export-async-debug
5738 (delete-file ,,temp-file)))))))))))))
5740 ;;;###autoload
5741 (defun org-export-to-buffer
5742 (backend buffer
5743 &optional async subtreep visible-only body-only ext-plist
5744 post-process)
5745 "Call `org-export-as' with output to a specified buffer.
5747 BACKEND is either an export back-end, as returned by, e.g.,
5748 `org-export-create-backend', or a symbol referring to
5749 a registered back-end.
5751 BUFFER is the name of the output buffer. If it already exists,
5752 it will be erased first, otherwise, it will be created.
5754 A non-nil optional argument ASYNC means the process should happen
5755 asynchronously. The resulting buffer should then be accessible
5756 through the `org-export-stack' interface. When ASYNC is nil, the
5757 buffer is displayed if `org-export-show-temporary-export-buffer'
5758 is non-nil.
5760 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5761 EXT-PLIST are similar to those used in `org-export-as', which
5762 see.
5764 Optional argument POST-PROCESS is a function which should accept
5765 no argument. It is always called within the current process,
5766 from BUFFER, with point at its beginning. Export back-ends can
5767 use it to set a major mode there, e.g,
5769 \(defun org-latex-export-as-latex
5770 \(&optional async subtreep visible-only body-only ext-plist)
5771 \(interactive)
5772 \(org-export-to-buffer 'latex \"*Org LATEX Export*\"
5773 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
5775 This function returns BUFFER."
5776 (declare (indent 2))
5777 (if async
5778 (org-export-async-start
5779 `(lambda (output)
5780 (with-current-buffer (get-buffer-create ,buffer)
5781 (erase-buffer)
5782 (setq buffer-file-coding-system ',buffer-file-coding-system)
5783 (insert output)
5784 (goto-char (point-min))
5785 (org-export-add-to-stack (current-buffer) ',backend)
5786 (ignore-errors (funcall ,post-process))))
5787 `(org-export-as
5788 ',backend ,subtreep ,visible-only ,body-only ',ext-plist))
5789 (let ((output
5790 (org-export-as backend subtreep visible-only body-only ext-plist))
5791 (buffer (get-buffer-create buffer))
5792 (encoding buffer-file-coding-system))
5793 (when (and (org-string-nw-p output) (org-export--copy-to-kill-ring-p))
5794 (org-kill-new output))
5795 (with-current-buffer buffer
5796 (erase-buffer)
5797 (setq buffer-file-coding-system encoding)
5798 (insert output)
5799 (goto-char (point-min))
5800 (and (functionp post-process) (funcall post-process)))
5801 (when org-export-show-temporary-export-buffer
5802 (switch-to-buffer-other-window buffer))
5803 buffer)))
5805 ;;;###autoload
5806 (defun org-export-to-file
5807 (backend file &optional async subtreep visible-only body-only ext-plist
5808 post-process)
5809 "Call `org-export-as' with output to a specified file.
5811 BACKEND is either an export back-end, as returned by, e.g.,
5812 `org-export-create-backend', or a symbol referring to
5813 a registered back-end. FILE is the name of the output file, as
5814 a string.
5816 A non-nil optional argument ASYNC means the process should happen
5817 asynchronously. The resulting buffer will then be accessible
5818 through the `org-export-stack' interface.
5820 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5821 EXT-PLIST are similar to those used in `org-export-as', which
5822 see.
5824 Optional argument POST-PROCESS is called with FILE as its
5825 argument and happens asynchronously when ASYNC is non-nil. It
5826 has to return a file name, or nil. Export back-ends can use this
5827 to send the output file through additional processing, e.g,
5829 \(defun org-latex-export-to-latex
5830 \(&optional async subtreep visible-only body-only ext-plist)
5831 \(interactive)
5832 \(let ((outfile (org-export-output-file-name \".tex\" subtreep)))
5833 \(org-export-to-file 'latex outfile
5834 async subtreep visible-only body-only ext-plist
5835 \(lambda (file) (org-latex-compile file)))
5837 The function returns either a file name returned by POST-PROCESS,
5838 or FILE."
5839 (declare (indent 2))
5840 (if (not (file-writable-p file)) (error "Output file not writable")
5841 (let ((ext-plist (org-combine-plists `(:output-file ,file) ext-plist))
5842 (encoding (or org-export-coding-system buffer-file-coding-system)))
5843 (if async
5844 (org-export-async-start
5845 `(lambda (file)
5846 (org-export-add-to-stack (expand-file-name file) ',backend))
5847 `(let ((output
5848 (org-export-as
5849 ',backend ,subtreep ,visible-only ,body-only
5850 ',ext-plist)))
5851 (with-temp-buffer
5852 (insert output)
5853 (let ((coding-system-for-write ',encoding))
5854 (write-file ,file)))
5855 (or (ignore-errors (funcall ',post-process ,file)) ,file)))
5856 (let ((output (org-export-as
5857 backend subtreep visible-only body-only ext-plist)))
5858 (with-temp-buffer
5859 (insert output)
5860 (let ((coding-system-for-write encoding))
5861 (write-file file)))
5862 (when (and (org-export--copy-to-kill-ring-p) (org-string-nw-p output))
5863 (org-kill-new output))
5864 ;; Get proper return value.
5865 (or (and (functionp post-process) (funcall post-process file))
5866 file))))))
5868 (defun org-export-output-file-name (extension &optional subtreep pub-dir)
5869 "Return output file's name according to buffer specifications.
5871 EXTENSION is a string representing the output file extension,
5872 with the leading dot.
5874 With a non-nil optional argument SUBTREEP, try to determine
5875 output file's name by looking for \"EXPORT_FILE_NAME\" property
5876 of subtree at point.
5878 When optional argument PUB-DIR is set, use it as the publishing
5879 directory.
5881 When optional argument VISIBLE-ONLY is non-nil, don't export
5882 contents of hidden elements.
5884 Return file name as a string."
5885 (let* ((visited-file (buffer-file-name (buffer-base-buffer)))
5886 (base-name
5887 ;; File name may come from EXPORT_FILE_NAME subtree
5888 ;; property, assuming point is at beginning of said
5889 ;; sub-tree.
5890 (file-name-sans-extension
5891 (or (and subtreep
5892 (org-entry-get
5893 (save-excursion
5894 (ignore-errors (org-back-to-heading) (point)))
5895 "EXPORT_FILE_NAME" t))
5896 ;; File name may be extracted from buffer's associated
5897 ;; file, if any.
5898 (and visited-file (file-name-nondirectory visited-file))
5899 ;; Can't determine file name on our own: Ask user.
5900 (let ((read-file-name-function
5901 (and org-completion-use-ido 'ido-read-file-name)))
5902 (read-file-name
5903 "Output file: " pub-dir nil nil nil
5904 (lambda (name)
5905 (string= (file-name-extension name t) extension)))))))
5906 (output-file
5907 ;; Build file name. Enforce EXTENSION over whatever user
5908 ;; may have come up with. PUB-DIR, if defined, always has
5909 ;; precedence over any provided path.
5910 (cond
5911 (pub-dir
5912 (concat (file-name-as-directory pub-dir)
5913 (file-name-nondirectory base-name)
5914 extension))
5915 ((file-name-absolute-p base-name) (concat base-name extension))
5916 (t (concat (file-name-as-directory ".") base-name extension)))))
5917 ;; If writing to OUTPUT-FILE would overwrite original file, append
5918 ;; EXTENSION another time to final name.
5919 (if (and visited-file (org-file-equal-p visited-file output-file))
5920 (concat output-file extension)
5921 output-file)))
5923 (defun org-export-add-to-stack (source backend &optional process)
5924 "Add a new result to export stack if not present already.
5926 SOURCE is a buffer or a file name containing export results.
5927 BACKEND is a symbol representing export back-end used to generate
5930 Entries already pointing to SOURCE and unavailable entries are
5931 removed beforehand. Return the new stack."
5932 (setq org-export-stack-contents
5933 (cons (list source backend (or process (current-time)))
5934 (org-export-stack-remove source))))
5936 (defun org-export-stack ()
5937 "Menu for asynchronous export results and running processes."
5938 (interactive)
5939 (let ((buffer (get-buffer-create "*Org Export Stack*")))
5940 (set-buffer buffer)
5941 (when (zerop (buffer-size)) (org-export-stack-mode))
5942 (org-export-stack-refresh)
5943 (pop-to-buffer buffer))
5944 (message "Type \"q\" to quit, \"?\" for help"))
5946 (defun org-export--stack-source-at-point ()
5947 "Return source from export results at point in stack."
5948 (let ((source (car (nth (1- (org-current-line)) org-export-stack-contents))))
5949 (if (not source) (error "Source unavailable, please refresh buffer")
5950 (let ((source-name (if (stringp source) source (buffer-name source))))
5951 (if (save-excursion
5952 (beginning-of-line)
5953 (looking-at (concat ".* +" (regexp-quote source-name) "$")))
5954 source
5955 ;; SOURCE is not consistent with current line. The stack
5956 ;; view is outdated.
5957 (error "Source unavailable; type `g' to update buffer"))))))
5959 (defun org-export-stack-clear ()
5960 "Remove all entries from export stack."
5961 (interactive)
5962 (setq org-export-stack-contents nil))
5964 (defun org-export-stack-refresh (&rest dummy)
5965 "Refresh the asynchronous export stack.
5966 DUMMY is ignored. Unavailable sources are removed from the list.
5967 Return the new stack."
5968 (let ((inhibit-read-only t))
5969 (org-preserve-lc
5970 (erase-buffer)
5971 (insert (concat
5972 (let ((counter 0))
5973 (mapconcat
5974 (lambda (entry)
5975 (let ((proc-p (processp (nth 2 entry))))
5976 (concat
5977 ;; Back-end.
5978 (format " %-12s " (or (nth 1 entry) ""))
5979 ;; Age.
5980 (let ((data (nth 2 entry)))
5981 (if proc-p (format " %6s " (process-status data))
5982 ;; Compute age of the results.
5983 (org-format-seconds
5984 "%4h:%.2m "
5985 (float-time (time-since data)))))
5986 ;; Source.
5987 (format " %s"
5988 (let ((source (car entry)))
5989 (if (stringp source) source
5990 (buffer-name source)))))))
5991 ;; Clear stack from exited processes, dead buffers or
5992 ;; non-existent files.
5993 (setq org-export-stack-contents
5994 (org-remove-if-not
5995 (lambda (el)
5996 (if (processp (nth 2 el))
5997 (buffer-live-p (process-buffer (nth 2 el)))
5998 (let ((source (car el)))
5999 (if (bufferp source) (buffer-live-p source)
6000 (file-exists-p source)))))
6001 org-export-stack-contents)) "\n")))))))
6003 (defun org-export-stack-remove (&optional source)
6004 "Remove export results at point from stack.
6005 If optional argument SOURCE is non-nil, remove it instead."
6006 (interactive)
6007 (let ((source (or source (org-export--stack-source-at-point))))
6008 (setq org-export-stack-contents
6009 (org-remove-if (lambda (el) (equal (car el) source))
6010 org-export-stack-contents))))
6012 (defun org-export-stack-view (&optional in-emacs)
6013 "View export results at point in stack.
6014 With an optional prefix argument IN-EMACS, force viewing files
6015 within Emacs."
6016 (interactive "P")
6017 (let ((source (org-export--stack-source-at-point)))
6018 (cond ((processp source)
6019 (org-switch-to-buffer-other-window (process-buffer source)))
6020 ((bufferp source) (org-switch-to-buffer-other-window source))
6021 (t (org-open-file source in-emacs)))))
6023 (defvar org-export-stack-mode-map
6024 (let ((km (make-sparse-keymap)))
6025 (define-key km " " 'next-line)
6026 (define-key km "n" 'next-line)
6027 (define-key km "\C-n" 'next-line)
6028 (define-key km [down] 'next-line)
6029 (define-key km "p" 'previous-line)
6030 (define-key km "\C-p" 'previous-line)
6031 (define-key km "\C-?" 'previous-line)
6032 (define-key km [up] 'previous-line)
6033 (define-key km "C" 'org-export-stack-clear)
6034 (define-key km "v" 'org-export-stack-view)
6035 (define-key km (kbd "RET") 'org-export-stack-view)
6036 (define-key km "d" 'org-export-stack-remove)
6038 "Keymap for Org Export Stack.")
6040 (define-derived-mode org-export-stack-mode special-mode "Org-Stack"
6041 "Mode for displaying asynchronous export stack.
6043 Type \\[org-export-stack] to visualize the asynchronous export
6044 stack.
6046 In an Org Export Stack buffer, use \\<org-export-stack-mode-map>\\[org-export-stack-view] to view export output
6047 on current line, \\[org-export-stack-remove] to remove it from the stack and \\[org-export-stack-clear] to clear
6048 stack completely.
6050 Removing entries in an Org Export Stack buffer doesn't affect
6051 files or buffers, only the display.
6053 \\{org-export-stack-mode-map}"
6054 (abbrev-mode 0)
6055 (auto-fill-mode 0)
6056 (setq buffer-read-only t
6057 buffer-undo-list t
6058 truncate-lines t
6059 header-line-format
6060 '(:eval
6061 (format " %-12s | %6s | %s" "Back-End" "Age" "Source")))
6062 (org-add-hook 'post-command-hook 'org-export-stack-refresh nil t)
6063 (set (make-local-variable 'revert-buffer-function)
6064 'org-export-stack-refresh))
6068 ;;; The Dispatcher
6070 ;; `org-export-dispatch' is the standard interactive way to start an
6071 ;; export process. It uses `org-export--dispatch-ui' as a subroutine
6072 ;; for its interface, which, in turn, delegates response to key
6073 ;; pressed to `org-export--dispatch-action'.
6075 ;;;###autoload
6076 (defun org-export-dispatch (&optional arg)
6077 "Export dispatcher for Org mode.
6079 It provides an access to common export related tasks in a buffer.
6080 Its interface comes in two flavors: standard and expert.
6082 While both share the same set of bindings, only the former
6083 displays the valid keys associations in a dedicated buffer.
6084 Scrolling (resp. line-wise motion) in this buffer is done with
6085 SPC and DEL (resp. C-n and C-p) keys.
6087 Set variable `org-export-dispatch-use-expert-ui' to switch to one
6088 flavor or the other.
6090 When ARG is \\[universal-argument], repeat the last export action, with the same set
6091 of options used back then, on the current buffer.
6093 When ARG is \\[universal-argument] \\[universal-argument], display the asynchronous export stack."
6094 (interactive "P")
6095 (let* ((input
6096 (cond ((equal arg '(16)) '(stack))
6097 ((and arg org-export-dispatch-last-action))
6098 (t (save-window-excursion
6099 (unwind-protect
6100 (progn
6101 ;; Remember where we are
6102 (move-marker org-export-dispatch-last-position
6103 (point)
6104 (org-base-buffer (current-buffer)))
6105 ;; Get and store an export command
6106 (setq org-export-dispatch-last-action
6107 (org-export--dispatch-ui
6108 (list org-export-initial-scope
6109 (and org-export-in-background 'async))
6111 org-export-dispatch-use-expert-ui)))
6112 (and (get-buffer "*Org Export Dispatcher*")
6113 (kill-buffer "*Org Export Dispatcher*")))))))
6114 (action (car input))
6115 (optns (cdr input)))
6116 (unless (memq 'subtree optns)
6117 (move-marker org-export-dispatch-last-position nil))
6118 (case action
6119 ;; First handle special hard-coded actions.
6120 (template (org-export-insert-default-template nil optns))
6121 (stack (org-export-stack))
6122 (publish-current-file
6123 (org-publish-current-file (memq 'force optns) (memq 'async optns)))
6124 (publish-current-project
6125 (org-publish-current-project (memq 'force optns) (memq 'async optns)))
6126 (publish-choose-project
6127 (org-publish (assoc (org-icompleting-read
6128 "Publish project: "
6129 org-publish-project-alist nil t)
6130 org-publish-project-alist)
6131 (memq 'force optns)
6132 (memq 'async optns)))
6133 (publish-all (org-publish-all (memq 'force optns) (memq 'async optns)))
6134 (otherwise
6135 (save-excursion
6136 (when arg
6137 ;; Repeating command, maybe move cursor to restore subtree
6138 ;; context.
6139 (if (eq (marker-buffer org-export-dispatch-last-position)
6140 (org-base-buffer (current-buffer)))
6141 (goto-char org-export-dispatch-last-position)
6142 ;; We are in a different buffer, forget position.
6143 (move-marker org-export-dispatch-last-position nil)))
6144 (funcall action
6145 ;; Return a symbol instead of a list to ease
6146 ;; asynchronous export macro use.
6147 (and (memq 'async optns) t)
6148 (and (memq 'subtree optns) t)
6149 (and (memq 'visible optns) t)
6150 (and (memq 'body optns) t)))))))
6152 (defun org-export--dispatch-ui (options first-key expertp)
6153 "Handle interface for `org-export-dispatch'.
6155 OPTIONS is a list containing current interactive options set for
6156 export. It can contain any of the following symbols:
6157 `body' toggles a body-only export
6158 `subtree' restricts export to current subtree
6159 `visible' restricts export to visible part of buffer.
6160 `force' force publishing files.
6161 `async' use asynchronous export process
6163 FIRST-KEY is the key pressed to select the first level menu. It
6164 is nil when this menu hasn't been selected yet.
6166 EXPERTP, when non-nil, triggers expert UI. In that case, no help
6167 buffer is provided, but indications about currently active
6168 options are given in the prompt. Moreover, \[?] allows to switch
6169 back to standard interface."
6170 (let* ((fontify-key
6171 (lambda (key &optional access-key)
6172 ;; Fontify KEY string. Optional argument ACCESS-KEY, when
6173 ;; non-nil is the required first-level key to activate
6174 ;; KEY. When its value is t, activate KEY independently
6175 ;; on the first key, if any. A nil value means KEY will
6176 ;; only be activated at first level.
6177 (if (or (eq access-key t) (eq access-key first-key))
6178 (org-propertize key 'face 'org-warning)
6179 key)))
6180 (fontify-value
6181 (lambda (value)
6182 ;; Fontify VALUE string.
6183 (org-propertize value 'face 'font-lock-variable-name-face)))
6184 ;; Prepare menu entries by extracting them from registered
6185 ;; back-ends and sorting them by access key and by ordinal,
6186 ;; if any.
6187 (entries
6188 (sort (sort (delq nil
6189 (mapcar 'org-export-backend-menu
6190 org-export--registered-backends))
6191 (lambda (a b)
6192 (let ((key-a (nth 1 a))
6193 (key-b (nth 1 b)))
6194 (cond ((and (numberp key-a) (numberp key-b))
6195 (< key-a key-b))
6196 ((numberp key-b) t)))))
6197 'car-less-than-car))
6198 ;; Compute a list of allowed keys based on the first key
6199 ;; pressed, if any. Some keys
6200 ;; (?^B, ?^V, ?^S, ?^F, ?^A, ?&, ?# and ?q) are always
6201 ;; available.
6202 (allowed-keys
6203 (nconc (list 2 22 19 6 1)
6204 (if (not first-key) (org-uniquify (mapcar 'car entries))
6205 (let (sub-menu)
6206 (dolist (entry entries (sort (mapcar 'car sub-menu) '<))
6207 (when (eq (car entry) first-key)
6208 (setq sub-menu (append (nth 2 entry) sub-menu))))))
6209 (cond ((eq first-key ?P) (list ?f ?p ?x ?a))
6210 ((not first-key) (list ?P)))
6211 (list ?& ?#)
6212 (when expertp (list ??))
6213 (list ?q)))
6214 ;; Build the help menu for standard UI.
6215 (help
6216 (unless expertp
6217 (concat
6218 ;; Options are hard-coded.
6219 (format "[%s] Body only: %s [%s] Visible only: %s
6220 \[%s] Export scope: %s [%s] Force publishing: %s
6221 \[%s] Async export: %s\n\n"
6222 (funcall fontify-key "C-b" t)
6223 (funcall fontify-value
6224 (if (memq 'body options) "On " "Off"))
6225 (funcall fontify-key "C-v" t)
6226 (funcall fontify-value
6227 (if (memq 'visible options) "On " "Off"))
6228 (funcall fontify-key "C-s" t)
6229 (funcall fontify-value
6230 (if (memq 'subtree options) "Subtree" "Buffer "))
6231 (funcall fontify-key "C-f" t)
6232 (funcall fontify-value
6233 (if (memq 'force options) "On " "Off"))
6234 (funcall fontify-key "C-a" t)
6235 (funcall fontify-value
6236 (if (memq 'async options) "On " "Off")))
6237 ;; Display registered back-end entries. When a key
6238 ;; appears for the second time, do not create another
6239 ;; entry, but append its sub-menu to existing menu.
6240 (let (last-key)
6241 (mapconcat
6242 (lambda (entry)
6243 (let ((top-key (car entry)))
6244 (concat
6245 (unless (eq top-key last-key)
6246 (setq last-key top-key)
6247 (format "\n[%s] %s\n"
6248 (funcall fontify-key (char-to-string top-key))
6249 (nth 1 entry)))
6250 (let ((sub-menu (nth 2 entry)))
6251 (unless (functionp sub-menu)
6252 ;; Split sub-menu into two columns.
6253 (let ((index -1))
6254 (concat
6255 (mapconcat
6256 (lambda (sub-entry)
6257 (incf index)
6258 (format
6259 (if (zerop (mod index 2)) " [%s] %-26s"
6260 "[%s] %s\n")
6261 (funcall fontify-key
6262 (char-to-string (car sub-entry))
6263 top-key)
6264 (nth 1 sub-entry)))
6265 sub-menu "")
6266 (when (zerop (mod index 2)) "\n"))))))))
6267 entries ""))
6268 ;; Publishing menu is hard-coded.
6269 (format "\n[%s] Publish
6270 [%s] Current file [%s] Current project
6271 [%s] Choose project [%s] All projects\n\n\n"
6272 (funcall fontify-key "P")
6273 (funcall fontify-key "f" ?P)
6274 (funcall fontify-key "p" ?P)
6275 (funcall fontify-key "x" ?P)
6276 (funcall fontify-key "a" ?P))
6277 (format "[%s] Export stack [%s] Insert template\n"
6278 (funcall fontify-key "&" t)
6279 (funcall fontify-key "#" t))
6280 (format "[%s] %s"
6281 (funcall fontify-key "q" t)
6282 (if first-key "Main menu" "Exit")))))
6283 ;; Build prompts for both standard and expert UI.
6284 (standard-prompt (unless expertp "Export command: "))
6285 (expert-prompt
6286 (when expertp
6287 (format
6288 "Export command (C-%s%s%s%s%s) [%s]: "
6289 (if (memq 'body options) (funcall fontify-key "b" t) "b")
6290 (if (memq 'visible options) (funcall fontify-key "v" t) "v")
6291 (if (memq 'subtree options) (funcall fontify-key "s" t) "s")
6292 (if (memq 'force options) (funcall fontify-key "f" t) "f")
6293 (if (memq 'async options) (funcall fontify-key "a" t) "a")
6294 (mapconcat (lambda (k)
6295 ;; Strip control characters.
6296 (unless (< k 27) (char-to-string k)))
6297 allowed-keys "")))))
6298 ;; With expert UI, just read key with a fancy prompt. In standard
6299 ;; UI, display an intrusive help buffer.
6300 (if expertp
6301 (org-export--dispatch-action
6302 expert-prompt allowed-keys entries options first-key expertp)
6303 ;; At first call, create frame layout in order to display menu.
6304 (unless (get-buffer "*Org Export Dispatcher*")
6305 (delete-other-windows)
6306 (org-switch-to-buffer-other-window
6307 (get-buffer-create "*Org Export Dispatcher*"))
6308 (setq cursor-type nil
6309 header-line-format "Use SPC, DEL, C-n or C-p to navigate.")
6310 ;; Make sure that invisible cursor will not highlight square
6311 ;; brackets.
6312 (set-syntax-table (copy-syntax-table))
6313 (modify-syntax-entry ?\[ "w"))
6314 ;; At this point, the buffer containing the menu exists and is
6315 ;; visible in the current window. So, refresh it.
6316 (with-current-buffer "*Org Export Dispatcher*"
6317 ;; Refresh help. Maintain display continuity by re-visiting
6318 ;; previous window position.
6319 (let ((pos (window-start)))
6320 (erase-buffer)
6321 (insert help)
6322 (set-window-start nil pos)))
6323 (org-fit-window-to-buffer)
6324 (org-export--dispatch-action
6325 standard-prompt allowed-keys entries options first-key expertp))))
6327 (defun org-export--dispatch-action
6328 (prompt allowed-keys entries options first-key expertp)
6329 "Read a character from command input and act accordingly.
6331 PROMPT is the displayed prompt, as a string. ALLOWED-KEYS is
6332 a list of characters available at a given step in the process.
6333 ENTRIES is a list of menu entries. OPTIONS, FIRST-KEY and
6334 EXPERTP are the same as defined in `org-export--dispatch-ui',
6335 which see.
6337 Toggle export options when required. Otherwise, return value is
6338 a list with action as CAR and a list of interactive export
6339 options as CDR."
6340 (let (key)
6341 ;; Scrolling: when in non-expert mode, act on motion keys (C-n,
6342 ;; C-p, SPC, DEL).
6343 (while (and (setq key (read-char-exclusive prompt))
6344 (not expertp)
6345 (memq key '(14 16 ?\s ?\d)))
6346 (case key
6347 (14 (if (not (pos-visible-in-window-p (point-max)))
6348 (ignore-errors (scroll-up 1))
6349 (message "End of buffer")
6350 (sit-for 1)))
6351 (16 (if (not (pos-visible-in-window-p (point-min)))
6352 (ignore-errors (scroll-down 1))
6353 (message "Beginning of buffer")
6354 (sit-for 1)))
6355 (?\s (if (not (pos-visible-in-window-p (point-max)))
6356 (scroll-up nil)
6357 (message "End of buffer")
6358 (sit-for 1)))
6359 (?\d (if (not (pos-visible-in-window-p (point-min)))
6360 (scroll-down nil)
6361 (message "Beginning of buffer")
6362 (sit-for 1)))))
6363 (cond
6364 ;; Ignore undefined associations.
6365 ((not (memq key allowed-keys))
6366 (ding)
6367 (unless expertp (message "Invalid key") (sit-for 1))
6368 (org-export--dispatch-ui options first-key expertp))
6369 ;; q key at first level aborts export. At second level, cancel
6370 ;; first key instead.
6371 ((eq key ?q) (if (not first-key) (error "Export aborted")
6372 (org-export--dispatch-ui options nil expertp)))
6373 ;; Help key: Switch back to standard interface if expert UI was
6374 ;; active.
6375 ((eq key ??) (org-export--dispatch-ui options first-key nil))
6376 ;; Send request for template insertion along with export scope.
6377 ((eq key ?#) (cons 'template (memq 'subtree options)))
6378 ;; Switch to asynchronous export stack.
6379 ((eq key ?&) '(stack))
6380 ;; Toggle options: C-b (2) C-v (22) C-s (19) C-f (6) C-a (1).
6381 ((memq key '(2 22 19 6 1))
6382 (org-export--dispatch-ui
6383 (let ((option (case key (2 'body) (22 'visible) (19 'subtree)
6384 (6 'force) (1 'async))))
6385 (if (memq option options) (remq option options)
6386 (cons option options)))
6387 first-key expertp))
6388 ;; Action selected: Send key and options back to
6389 ;; `org-export-dispatch'.
6390 ((or first-key (functionp (nth 2 (assq key entries))))
6391 (cons (cond
6392 ((not first-key) (nth 2 (assq key entries)))
6393 ;; Publishing actions are hard-coded. Send a special
6394 ;; signal to `org-export-dispatch'.
6395 ((eq first-key ?P)
6396 (case key
6397 (?f 'publish-current-file)
6398 (?p 'publish-current-project)
6399 (?x 'publish-choose-project)
6400 (?a 'publish-all)))
6401 ;; Return first action associated to FIRST-KEY + KEY
6402 ;; path. Indeed, derived backends can share the same
6403 ;; FIRST-KEY.
6404 (t (catch 'found
6405 (mapc (lambda (entry)
6406 (let ((match (assq key (nth 2 entry))))
6407 (when match (throw 'found (nth 2 match)))))
6408 (member (assq first-key entries) entries)))))
6409 options))
6410 ;; Otherwise, enter sub-menu.
6411 (t (org-export--dispatch-ui options key expertp)))))
6415 (provide 'ox)
6417 ;; Local variables:
6418 ;; generated-autoload-file: "org-loaddefs.el"
6419 ;; End:
6421 ;;; ox.el ends here