ox: Allow file-links with #+INCLUDE-keyword
[org-mode.git] / lisp / ox.el
blob52d3535497532a053fe7076b47e1452540a7f6d9
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 location
3329 (file (and (string-match
3330 "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" value)
3331 (prog1
3332 (save-match-data
3333 (let ((matched (match-string 1 value)))
3334 (when (string-match "\\(::\\(.*?\\)\\)\"?\\'" matched)
3335 (setq location (match-string 2 matched))
3336 (setq matched
3337 (replace-match "" nil nil matched 1)))
3338 (expand-file-name
3339 (org-remove-double-quotes
3340 matched)
3341 dir)))
3342 (setq value (replace-match "" nil nil value)))))
3343 (only-contents
3344 (and (string-match ":only-contents *\\([^: \r\t\n]\\S-*\\)?" value)
3345 (prog1 (org-not-nil (match-string 1 value))
3346 (setq value (replace-match "" nil nil value)))))
3347 (lines
3348 (and (string-match
3349 ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\""
3350 value)
3351 (prog1 (match-string 1 value)
3352 (setq value (replace-match "" nil nil value)))))
3353 (env (cond ((string-match "\\<example\\>" value)
3354 'literal)
3355 ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
3356 'literal)))
3357 ;; Minimal level of included file defaults to the child
3358 ;; level of the current headline, if any, or one. It
3359 ;; only applies is the file is meant to be included as
3360 ;; an Org one.
3361 (minlevel
3362 (and (not env)
3363 (if (string-match ":minlevel +\\([0-9]+\\)" value)
3364 (prog1 (string-to-number (match-string 1 value))
3365 (setq value (replace-match "" nil nil value)))
3366 (let ((cur (org-current-level)))
3367 (if cur (1+ (org-reduced-level cur)) 1)))))
3368 (src-args (and (eq env 'literal)
3369 (match-string 1 value)))
3370 (block (and (string-match "\\<\\(\\S-+\\)\\>" value)
3371 (match-string 1 value))))
3372 ;; Remove keyword.
3373 (delete-region (point) (progn (forward-line) (point)))
3374 (cond
3375 ((not file) nil)
3376 ((not (file-readable-p file))
3377 (error "Cannot include file %s" file))
3378 ;; Check if files has already been parsed. Look after
3379 ;; inclusion lines too, as different parts of the same file
3380 ;; can be included too.
3381 ((member (list file lines) included)
3382 (error "Recursive file inclusion: %s" file))
3384 (cond
3385 ((eq env 'literal)
3386 (insert
3387 (let ((ind-str (make-string ind ? ))
3388 (arg-str (if (stringp src-args)
3389 (format " %s" src-args)
3390 ""))
3391 (contents
3392 (org-escape-code-in-string
3393 (org-export--prepare-file-contents file lines))))
3394 (format "%s#+BEGIN_%s%s\n%s%s#+END_%s\n"
3395 ind-str block arg-str contents ind-str block))))
3396 ((stringp block)
3397 (insert
3398 (let ((ind-str (make-string ind ? ))
3399 (contents
3400 (org-export--prepare-file-contents file lines)))
3401 (format "%s#+BEGIN_%s\n%s%s#+END_%s\n"
3402 ind-str block contents ind-str block))))
3404 (insert
3405 (with-temp-buffer
3406 (let ((org-inhibit-startup t)
3407 (lines
3408 (if location
3409 (org-export--inclusion-absolute-lines
3410 file location only-contents lines)
3411 lines)))
3412 (org-mode)
3413 (insert
3414 (org-export--prepare-file-contents
3415 file lines ind minlevel
3416 (or (gethash file file-prefix)
3417 (puthash file (incf current-prefix) file-prefix)))))
3418 (org-export-expand-include-keyword
3419 (cons (list file lines) included)
3420 (file-name-directory file))
3421 (buffer-string)))))))))))))
3423 (defun org-export--inclusion-absolute-lines (file location only-contents lines)
3424 "Resolve absolute lines for an included file with file-link.
3426 FILE is string file-name of the file to include. LOCATION is a
3427 string name within FILE to be included (located via
3428 `org-link-search'). If ONLY-CONTENTS is non-nil only the
3429 contents of the named element will be included, as determined
3430 Org-Element. If LINES is non-nil only those lines are included.
3432 Return a string of lines to be included in the format expected by
3433 `org-export--prepare-file-contents'."
3434 (with-temp-buffer
3435 (insert-file-contents file)
3436 (unless (eq major-mode 'org-mode)
3437 (let ((org-inhibit-startup t)) (org-mode)))
3438 (condition-case err
3439 ;; Enforce consistent search.
3440 (let ((org-link-search-must-match-exact-headline t))
3441 (org-link-search location))
3442 (error
3443 (error (format "%s for %s::%s" (error-message-string err) file location))))
3444 (let* ((element (org-element-at-point))
3445 (contents-begin
3446 (and only-contents (org-element-property :contents-begin element))))
3447 (narrow-to-region
3448 (or contents-begin (org-element-property :begin element))
3449 (org-element-property (if contents-begin :contents-end :end) element))
3450 (when (and only-contents
3451 (memq (org-element-type element) '(headline inlinetask)))
3452 ;; Skip planning line and property-drawer. If a normal drawer
3453 ;; precedes a property-drawer both will be included.
3454 ;; Remaining property-drawers are removed as needed in
3455 ;; `org-export--prepare-file-contents'.
3456 (goto-char (point-min))
3457 (when (org-looking-at-p org-planning-line-re) (forward-line))
3458 (when (looking-at org-property-drawer-re) (goto-char (match-end 0)))
3459 (unless (bolp) (forward-line))
3460 (narrow-to-region (point) (point-max))))
3461 (when lines
3462 (org-skip-whitespace)
3463 (beginning-of-line)
3464 (let* ((lines (split-string lines "-"))
3465 (lbeg (string-to-number (car lines)))
3466 (lend (string-to-number (cadr lines)))
3467 (beg (if (zerop lbeg) (point-min)
3468 (goto-char (point-min))
3469 (forward-line (1- lbeg))
3470 (point)))
3471 (end (if (zerop lend) (point-max)
3472 (goto-char beg)
3473 (forward-line (1- lend))
3474 (point))))
3475 (narrow-to-region beg end)))
3476 (let ((end (point-max)))
3477 (goto-char (point-min))
3478 (widen)
3479 (let ((start-line (line-number-at-pos)))
3480 (format "%d-%d"
3481 start-line
3482 (save-excursion
3483 (+ start-line
3484 (let ((counter 0))
3485 (while (< (point) end) (incf counter) (forward-line))
3486 counter))))))))
3488 (defun org-export--prepare-file-contents (file &optional lines ind minlevel id)
3489 "Prepare the contents of FILE for inclusion and return them as a string.
3491 When optional argument LINES is a string specifying a range of
3492 lines, include only those lines.
3494 Optional argument IND, when non-nil, is an integer specifying the
3495 global indentation of returned contents. Since its purpose is to
3496 allow an included file to stay in the same environment it was
3497 created \(i.e. a list item), it doesn't apply past the first
3498 headline encountered.
3500 Optional argument MINLEVEL, when non-nil, is an integer
3501 specifying the level that any top-level headline in the included
3502 file should have.
3504 Optional argument ID is an integer that will be inserted before
3505 each footnote definition and reference if FILE is an Org file.
3506 This is useful to avoid conflicts when more than one Org file
3507 with footnotes is included in a document."
3508 (with-temp-buffer
3509 (insert-file-contents file)
3510 (when lines
3511 (let* ((lines (split-string lines "-"))
3512 (lbeg (string-to-number (car lines)))
3513 (lend (string-to-number (cadr lines)))
3514 (beg (if (zerop lbeg) (point-min)
3515 (goto-char (point-min))
3516 (forward-line (1- lbeg))
3517 (point)))
3518 (end (if (zerop lend) (point-max)
3519 (goto-char (point-min))
3520 (forward-line (1- lend))
3521 (point))))
3522 (narrow-to-region beg end)))
3523 ;; Remove blank lines at beginning and end of contents. The logic
3524 ;; behind that removal is that blank lines around include keyword
3525 ;; override blank lines in included file.
3526 (goto-char (point-min))
3527 (org-skip-whitespace)
3528 (beginning-of-line)
3529 (delete-region (point-min) (point))
3530 (goto-char (point-max))
3531 (skip-chars-backward " \r\t\n")
3532 (forward-line)
3533 (delete-region (point) (point-max))
3534 ;; Remove property-drawers after drawers.
3535 (when (or ind minlevel)
3536 (unless (eq major-mode 'org-mode)
3537 (let ((org-inhibit-startup t)) (org-mode)))
3538 (goto-char (point-min))
3539 (when (looking-at org-drawer-regexp)
3540 (goto-char (match-end 0))
3541 (search-forward-regexp org-drawer-regexp)
3542 (forward-line 1)
3543 (beginning-of-line))
3544 (when (looking-at org-property-drawer-re)
3545 (delete-region (match-beginning 0) (match-end 0))
3546 (beginning-of-line))
3547 (delete-region (point) (save-excursion (and (org-skip-whitespace) (point)))))
3548 ;; If IND is set, preserve indentation of include keyword until
3549 ;; the first headline encountered.
3550 (when ind
3551 (unless (eq major-mode 'org-mode)
3552 (let ((org-inhibit-startup t)) (org-mode)))
3553 (goto-char (point-min))
3554 (let ((ind-str (make-string ind ? )))
3555 (while (not (or (eobp) (looking-at org-outline-regexp-bol)))
3556 ;; Do not move footnote definitions out of column 0.
3557 (unless (and (looking-at org-footnote-definition-re)
3558 (eq (org-element-type (org-element-at-point))
3559 'footnote-definition))
3560 (insert ind-str))
3561 (forward-line))))
3562 ;; When MINLEVEL is specified, compute minimal level for headlines
3563 ;; in the file (CUR-MIN), and remove stars to each headline so
3564 ;; that headlines with minimal level have a level of MINLEVEL.
3565 (when minlevel
3566 (unless (eq major-mode 'org-mode)
3567 (let ((org-inhibit-startup t)) (org-mode)))
3568 (org-with-limited-levels
3569 (let ((levels (org-map-entries
3570 (lambda () (org-reduced-level (org-current-level))))))
3571 (when levels
3572 (let ((offset (- minlevel (apply 'min levels))))
3573 (unless (zerop offset)
3574 (when org-odd-levels-only (setq offset (* offset 2)))
3575 ;; Only change stars, don't bother moving whole
3576 ;; sections.
3577 (org-map-entries
3578 (lambda () (if (< offset 0) (delete-char (abs offset))
3579 (insert (make-string offset ?*)))))))))))
3580 ;; Append ID to all footnote references and definitions, so they
3581 ;; become file specific and cannot collide with footnotes in other
3582 ;; included files.
3583 (when id
3584 (goto-char (point-min))
3585 (while (re-search-forward org-footnote-re nil t)
3586 (let ((reference (org-element-context)))
3587 (when (memq (org-element-type reference)
3588 '(footnote-reference footnote-definition))
3589 (goto-char (org-element-property :begin reference))
3590 (forward-char)
3591 (let ((label (org-element-property :label reference)))
3592 (cond ((not label))
3593 ((org-string-match-p "\\`[0-9]+\\'" label)
3594 (insert (format "fn:%d-" id)))
3595 (t (forward-char 3) (insert (format "%d-" id)))))))))
3596 (org-element-normalize-string (buffer-string))))
3598 (defun org-export-execute-babel-code ()
3599 "Execute every Babel code in the visible part of current buffer."
3600 ;; Get a pristine copy of current buffer so Babel references can be
3601 ;; properly resolved.
3602 (let ((reference (org-export-copy-buffer)))
3603 (unwind-protect (org-babel-exp-process-buffer reference)
3604 (kill-buffer reference))))
3606 (defun org-export--copy-to-kill-ring-p ()
3607 "Return a non-nil value when output should be added to the kill ring.
3608 See also `org-export-copy-to-kill-ring'."
3609 (if (eq org-export-copy-to-kill-ring 'if-interactive)
3610 (not (or executing-kbd-macro noninteractive))
3611 (eq org-export-copy-to-kill-ring t)))
3615 ;;; Tools For Back-Ends
3617 ;; A whole set of tools is available to help build new exporters. Any
3618 ;; function general enough to have its use across many back-ends
3619 ;; should be added here.
3621 ;;;; For Affiliated Keywords
3623 ;; `org-export-read-attribute' reads a property from a given element
3624 ;; as a plist. It can be used to normalize affiliated keywords'
3625 ;; syntax.
3627 ;; Since captions can span over multiple lines and accept dual values,
3628 ;; their internal representation is a bit tricky. Therefore,
3629 ;; `org-export-get-caption' transparently returns a given element's
3630 ;; caption as a secondary string.
3632 (defun org-export-read-attribute (attribute element &optional property)
3633 "Turn ATTRIBUTE property from ELEMENT into a plist.
3635 When optional argument PROPERTY is non-nil, return the value of
3636 that property within attributes.
3638 This function assumes attributes are defined as \":keyword
3639 value\" pairs. It is appropriate for `:attr_html' like
3640 properties.
3642 All values will become strings except the empty string and
3643 \"nil\", which will become nil. Also, values containing only
3644 double quotes will be read as-is, which means that \"\" value
3645 will become the empty string."
3646 (let* ((prepare-value
3647 (lambda (str)
3648 (save-match-data
3649 (cond ((member str '(nil "" "nil")) nil)
3650 ((string-match "^\"\\(\"+\\)?\"$" str)
3651 (or (match-string 1 str) ""))
3652 (t str)))))
3653 (attributes
3654 (let ((value (org-element-property attribute element)))
3655 (when value
3656 (let ((s (mapconcat 'identity value " ")) result)
3657 (while (string-match
3658 "\\(?:^\\|[ \t]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([ \t]+\\|$\\)"
3660 (let ((value (substring s 0 (match-beginning 0))))
3661 (push (funcall prepare-value value) result))
3662 (push (intern (match-string 1 s)) result)
3663 (setq s (substring s (match-end 0))))
3664 ;; Ignore any string before first property with `cdr'.
3665 (cdr (nreverse (cons (funcall prepare-value s) result))))))))
3666 (if property (plist-get attributes property) attributes)))
3668 (defun org-export-get-caption (element &optional shortp)
3669 "Return caption from ELEMENT as a secondary string.
3671 When optional argument SHORTP is non-nil, return short caption,
3672 as a secondary string, instead.
3674 Caption lines are separated by a white space."
3675 (let ((full-caption (org-element-property :caption element)) caption)
3676 (dolist (line full-caption (cdr caption))
3677 (let ((cap (funcall (if shortp 'cdr 'car) line)))
3678 (when cap
3679 (setq caption (nconc (list " ") (copy-sequence cap) caption)))))))
3682 ;;;; For Derived Back-ends
3684 ;; `org-export-with-backend' is a function allowing to locally use
3685 ;; another back-end to transcode some object or element. In a derived
3686 ;; back-end, it may be used as a fall-back function once all specific
3687 ;; cases have been treated.
3689 (defun org-export-with-backend (backend data &optional contents info)
3690 "Call a transcoder from BACKEND on DATA.
3691 BACKEND is an export back-end, as returned by, e.g.,
3692 `org-export-create-backend', or a symbol referring to
3693 a registered back-end. DATA is an Org element, object, secondary
3694 string or string. CONTENTS, when non-nil, is the transcoded
3695 contents of DATA element, as a string. INFO, when non-nil, is
3696 the communication channel used for export, as a plist."
3697 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
3698 (org-export-barf-if-invalid-backend backend)
3699 (let ((type (org-element-type data)))
3700 (if (memq type '(nil org-data)) (error "No foreign transcoder available")
3701 (let* ((all-transcoders (org-export-get-all-transcoders backend))
3702 (transcoder (cdr (assq type all-transcoders))))
3703 (if (not (functionp transcoder))
3704 (error "No foreign transcoder available")
3705 (funcall
3706 transcoder data contents
3707 (org-combine-plists
3708 info (list :back-end backend
3709 :translate-alist all-transcoders
3710 :exported-data (make-hash-table :test 'eq :size 401)))))))))
3713 ;;;; For Export Snippets
3715 ;; Every export snippet is transmitted to the back-end. Though, the
3716 ;; latter will only retain one type of export-snippet, ignoring
3717 ;; others, based on the former's target back-end. The function
3718 ;; `org-export-snippet-backend' returns that back-end for a given
3719 ;; export-snippet.
3721 (defun org-export-snippet-backend (export-snippet)
3722 "Return EXPORT-SNIPPET targeted back-end as a symbol.
3723 Translation, with `org-export-snippet-translation-alist', is
3724 applied."
3725 (let ((back-end (org-element-property :back-end export-snippet)))
3726 (intern
3727 (or (cdr (assoc back-end org-export-snippet-translation-alist))
3728 back-end))))
3731 ;;;; For Footnotes
3733 ;; `org-export-collect-footnote-definitions' is a tool to list
3734 ;; actually used footnotes definitions in the whole parse tree, or in
3735 ;; a headline, in order to add footnote listings throughout the
3736 ;; transcoded data.
3738 ;; `org-export-footnote-first-reference-p' is a predicate used by some
3739 ;; back-ends, when they need to attach the footnote definition only to
3740 ;; the first occurrence of the corresponding label.
3742 ;; `org-export-get-footnote-definition' and
3743 ;; `org-export-get-footnote-number' provide easier access to
3744 ;; additional information relative to a footnote reference.
3746 (defun org-export-collect-footnote-definitions (data info)
3747 "Return an alist between footnote numbers, labels and definitions.
3749 DATA is the parse tree from which definitions are collected.
3750 INFO is the plist used as a communication channel.
3752 Definitions are sorted by order of references. They either
3753 appear as Org data or as a secondary string for inlined
3754 footnotes. Unreferenced definitions are ignored."
3755 (let* (num-alist
3756 collect-fn ; for byte-compiler.
3757 (collect-fn
3758 (function
3759 (lambda (data)
3760 ;; Collect footnote number, label and definition in DATA.
3761 (org-element-map data 'footnote-reference
3762 (lambda (fn)
3763 (when (org-export-footnote-first-reference-p fn info)
3764 (let ((def (org-export-get-footnote-definition fn info)))
3765 (push
3766 (list (org-export-get-footnote-number fn info)
3767 (org-element-property :label fn)
3768 def)
3769 num-alist)
3770 ;; Also search in definition for nested footnotes.
3771 (when (eq (org-element-property :type fn) 'standard)
3772 (funcall collect-fn def)))))
3773 ;; Don't enter footnote definitions since it will happen
3774 ;; when their first reference is found.
3775 info nil 'footnote-definition)))))
3776 (funcall collect-fn (plist-get info :parse-tree))
3777 (reverse num-alist)))
3779 (defun org-export-footnote-first-reference-p (footnote-reference info)
3780 "Non-nil when a footnote reference is the first one for its label.
3782 FOOTNOTE-REFERENCE is the footnote reference being considered.
3783 INFO is the plist used as a communication channel."
3784 (let ((label (org-element-property :label footnote-reference)))
3785 ;; Anonymous footnotes are always a first reference.
3786 (if (not label) t
3787 ;; Otherwise, return the first footnote with the same LABEL and
3788 ;; test if it is equal to FOOTNOTE-REFERENCE.
3789 (let* (search-refs ; for byte-compiler.
3790 (search-refs
3791 (function
3792 (lambda (data)
3793 (org-element-map data 'footnote-reference
3794 (lambda (fn)
3795 (cond
3796 ((string= (org-element-property :label fn) label)
3797 (throw 'exit fn))
3798 ;; If FN isn't inlined, be sure to traverse its
3799 ;; definition before resuming search. See
3800 ;; comments in `org-export-get-footnote-number'
3801 ;; for more information.
3802 ((eq (org-element-property :type fn) 'standard)
3803 (funcall search-refs
3804 (org-export-get-footnote-definition fn info)))))
3805 ;; Don't enter footnote definitions since it will
3806 ;; happen when their first reference is found.
3807 info 'first-match 'footnote-definition)))))
3808 (eq (catch 'exit (funcall search-refs (plist-get info :parse-tree)))
3809 footnote-reference)))))
3811 (defun org-export-get-footnote-definition (footnote-reference info)
3812 "Return definition of FOOTNOTE-REFERENCE as parsed data.
3813 INFO is the plist used as a communication channel. If no such
3814 definition can be found, return \"DEFINITION NOT FOUND\"."
3815 (let ((label (org-element-property :label footnote-reference)))
3816 (or (if label
3817 (cdr (assoc label (plist-get info :footnote-definition-alist)))
3818 (org-element-contents footnote-reference))
3819 "DEFINITION NOT FOUND.")))
3821 (defun org-export-get-footnote-number (footnote info)
3822 "Return number associated to a footnote.
3824 FOOTNOTE is either a footnote reference or a footnote definition.
3825 INFO is the plist used as a communication channel."
3826 (let* ((label (org-element-property :label footnote))
3827 seen-refs
3828 search-ref ; For byte-compiler.
3829 (search-ref
3830 (function
3831 (lambda (data)
3832 ;; Search footnote references through DATA, filling
3833 ;; SEEN-REFS along the way.
3834 (org-element-map data 'footnote-reference
3835 (lambda (fn)
3836 (let ((fn-lbl (org-element-property :label fn)))
3837 (cond
3838 ;; Anonymous footnote match: return number.
3839 ((and (not fn-lbl) (eq fn footnote))
3840 (throw 'exit (1+ (length seen-refs))))
3841 ;; Labels match: return number.
3842 ((and label (string= label fn-lbl))
3843 (throw 'exit (1+ (length seen-refs))))
3844 ;; Anonymous footnote: it's always a new one.
3845 ;; Also, be sure to return nil from the `cond' so
3846 ;; `first-match' doesn't get us out of the loop.
3847 ((not fn-lbl) (push 'inline seen-refs) nil)
3848 ;; Label not seen so far: add it so SEEN-REFS.
3850 ;; Also search for subsequent references in
3851 ;; footnote definition so numbering follows
3852 ;; reading logic. Note that we don't have to care
3853 ;; about inline definitions, since
3854 ;; `org-element-map' already traverses them at the
3855 ;; right time.
3857 ;; Once again, return nil to stay in the loop.
3858 ((not (member fn-lbl seen-refs))
3859 (push fn-lbl seen-refs)
3860 (funcall search-ref
3861 (org-export-get-footnote-definition fn info))
3862 nil))))
3863 ;; Don't enter footnote definitions since it will
3864 ;; happen when their first reference is found.
3865 info 'first-match 'footnote-definition)))))
3866 (catch 'exit (funcall search-ref (plist-get info :parse-tree)))))
3869 ;;;; For Headlines
3871 ;; `org-export-get-relative-level' is a shortcut to get headline
3872 ;; level, relatively to the lower headline level in the parsed tree.
3874 ;; `org-export-get-headline-number' returns the section number of an
3875 ;; headline, while `org-export-number-to-roman' allows to convert it
3876 ;; to roman numbers.
3878 ;; `org-export-low-level-p', `org-export-first-sibling-p' and
3879 ;; `org-export-last-sibling-p' are three useful predicates when it
3880 ;; comes to fulfill the `:headline-levels' property.
3882 ;; `org-export-get-tags', `org-export-get-category' and
3883 ;; `org-export-get-node-property' extract useful information from an
3884 ;; headline or a parent headline. They all handle inheritance.
3886 ;; `org-export-get-alt-title' tries to retrieve an alternative title,
3887 ;; as a secondary string, suitable for table of contents. It falls
3888 ;; back onto default title.
3890 (defun org-export-get-relative-level (headline info)
3891 "Return HEADLINE relative level within current parsed tree.
3892 INFO is a plist holding contextual information."
3893 (+ (org-element-property :level headline)
3894 (or (plist-get info :headline-offset) 0)))
3896 (defun org-export-low-level-p (headline info)
3897 "Non-nil when HEADLINE is considered as low level.
3899 INFO is a plist used as a communication channel.
3901 A low level headlines has a relative level greater than
3902 `:headline-levels' property value.
3904 Return value is the difference between HEADLINE relative level
3905 and the last level being considered as high enough, or nil."
3906 (let ((limit (plist-get info :headline-levels)))
3907 (when (wholenump limit)
3908 (let ((level (org-export-get-relative-level headline info)))
3909 (and (> level limit) (- level limit))))))
3911 (defun org-export-get-headline-number (headline info)
3912 "Return HEADLINE numbering as a list of numbers.
3913 INFO is a plist holding contextual information."
3914 (cdr (assoc headline (plist-get info :headline-numbering))))
3916 (defun org-export-numbered-headline-p (headline info)
3917 "Return a non-nil value if HEADLINE element should be numbered.
3918 INFO is a plist used as a communication channel."
3919 (let ((sec-num (plist-get info :section-numbers))
3920 (level (org-export-get-relative-level headline info)))
3921 (if (wholenump sec-num) (<= level sec-num) sec-num)))
3923 (defun org-export-number-to-roman (n)
3924 "Convert integer N into a roman numeral."
3925 (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
3926 ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
3927 ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
3928 ( 1 . "I")))
3929 (res ""))
3930 (if (<= n 0)
3931 (number-to-string n)
3932 (while roman
3933 (if (>= n (caar roman))
3934 (setq n (- n (caar roman))
3935 res (concat res (cdar roman)))
3936 (pop roman)))
3937 res)))
3939 (defun org-export-get-tags (element info &optional tags inherited)
3940 "Return list of tags associated to ELEMENT.
3942 ELEMENT has either an `headline' or an `inlinetask' type. INFO
3943 is a plist used as a communication channel.
3945 Select tags (see `org-export-select-tags') and exclude tags (see
3946 `org-export-exclude-tags') are removed from the list.
3948 When non-nil, optional argument TAGS should be a list of strings.
3949 Any tag belonging to this list will also be removed.
3951 When optional argument INHERITED is non-nil, tags can also be
3952 inherited from parent headlines and FILETAGS keywords."
3953 (org-remove-if
3954 (lambda (tag) (or (member tag (plist-get info :select-tags))
3955 (member tag (plist-get info :exclude-tags))
3956 (member tag tags)))
3957 (if (not inherited) (org-element-property :tags element)
3958 ;; Build complete list of inherited tags.
3959 (let ((current-tag-list (org-element-property :tags element)))
3960 (mapc
3961 (lambda (parent)
3962 (mapc
3963 (lambda (tag)
3964 (when (and (memq (org-element-type parent) '(headline inlinetask))
3965 (not (member tag current-tag-list)))
3966 (push tag current-tag-list)))
3967 (org-element-property :tags parent)))
3968 (org-export-get-genealogy element))
3969 ;; Add FILETAGS keywords and return results.
3970 (org-uniquify (append (plist-get info :filetags) current-tag-list))))))
3972 (defun org-export-get-node-property (property blob &optional inherited)
3973 "Return node PROPERTY value for BLOB.
3975 PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA'). BLOB is an
3976 element or object.
3978 If optional argument INHERITED is non-nil, the value can be
3979 inherited from a parent headline.
3981 Return value is a string or nil."
3982 (let ((headline (if (eq (org-element-type blob) 'headline) blob
3983 (org-export-get-parent-headline blob))))
3984 (if (not inherited) (org-element-property property blob)
3985 (let ((parent headline) value)
3986 (catch 'found
3987 (while parent
3988 (when (plist-member (nth 1 parent) property)
3989 (throw 'found (org-element-property property parent)))
3990 (setq parent (org-element-property :parent parent))))))))
3992 (defun org-export-get-category (blob info)
3993 "Return category for element or object BLOB.
3995 INFO is a plist used as a communication channel.
3997 CATEGORY is automatically inherited from a parent headline, from
3998 #+CATEGORY: keyword or created out of original file name. If all
3999 fail, the fall-back value is \"???\"."
4000 (or (org-export-get-node-property :CATEGORY blob t)
4001 (org-element-map (plist-get info :parse-tree) 'keyword
4002 (lambda (kwd)
4003 (when (equal (org-element-property :key kwd) "CATEGORY")
4004 (org-element-property :value kwd)))
4005 info 'first-match)
4006 (let ((file (plist-get info :input-file)))
4007 (and file (file-name-sans-extension (file-name-nondirectory file))))
4008 "???"))
4010 (defun org-export-get-alt-title (headline info)
4011 "Return alternative title for HEADLINE, as a secondary string.
4012 INFO is a plist used as a communication channel. If no optional
4013 title is defined, fall-back to the regular title."
4014 (or (org-element-property :alt-title headline)
4015 (org-element-property :title headline)))
4017 (defun org-export-first-sibling-p (blob info)
4018 "Non-nil when BLOB is the first sibling in its parent.
4019 BLOB is an element or an object. If BLOB is a headline, non-nil
4020 means it is the first sibling in the sub-tree. INFO is a plist
4021 used as a communication channel."
4022 (memq (org-element-type (org-export-get-previous-element blob info))
4023 '(nil section)))
4025 (defun org-export-last-sibling-p (blob info)
4026 "Non-nil when BLOB is the last sibling in its parent.
4027 BLOB is an element or an object. INFO is a plist used as
4028 a communication channel."
4029 (not (org-export-get-next-element blob info)))
4032 ;;;; For Keywords
4034 ;; `org-export-get-date' returns a date appropriate for the document
4035 ;; to about to be exported. In particular, it takes care of
4036 ;; `org-export-date-timestamp-format'.
4038 (defun org-export-get-date (info &optional fmt)
4039 "Return date value for the current document.
4041 INFO is a plist used as a communication channel. FMT, when
4042 non-nil, is a time format string that will be applied on the date
4043 if it consists in a single timestamp object. It defaults to
4044 `org-export-date-timestamp-format' when nil.
4046 A proper date can be a secondary string, a string or nil. It is
4047 meant to be translated with `org-export-data' or alike."
4048 (let ((date (plist-get info :date))
4049 (fmt (or fmt org-export-date-timestamp-format)))
4050 (cond ((not date) nil)
4051 ((and fmt
4052 (not (cdr date))
4053 (eq (org-element-type (car date)) 'timestamp))
4054 (org-timestamp-format (car date) fmt))
4055 (t date))))
4058 ;;;; For Links
4060 ;; `org-export-solidify-link-text' turns a string into a safer version
4061 ;; for links, replacing most non-standard characters with hyphens.
4063 ;; `org-export-get-coderef-format' returns an appropriate format
4064 ;; string for coderefs.
4066 ;; `org-export-inline-image-p' returns a non-nil value when the link
4067 ;; provided should be considered as an inline image.
4069 ;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
4070 ;; (i.e. links with "fuzzy" as type) within the parsed tree, and
4071 ;; returns an appropriate unique identifier when found, or nil.
4073 ;; `org-export-resolve-id-link' returns the first headline with
4074 ;; specified id or custom-id in parse tree, the path to the external
4075 ;; file with the id or nil when neither was found.
4077 ;; `org-export-resolve-coderef' associates a reference to a line
4078 ;; number in the element it belongs, or returns the reference itself
4079 ;; when the element isn't numbered.
4081 (defun org-export-solidify-link-text (s)
4082 "Take link text S and make a safe target out of it."
4083 (save-match-data
4084 (mapconcat 'identity (org-split-string s "[^a-zA-Z0-9_.-:]+") "-")))
4086 (defun org-export-get-coderef-format (path desc)
4087 "Return format string for code reference link.
4088 PATH is the link path. DESC is its description."
4089 (save-match-data
4090 (cond ((not desc) "%s")
4091 ((string-match (regexp-quote (concat "(" path ")")) desc)
4092 (replace-match "%s" t t desc))
4093 (t desc))))
4095 (defun org-export-inline-image-p (link &optional rules)
4096 "Non-nil if LINK object points to an inline image.
4098 Optional argument is a set of RULES defining inline images. It
4099 is an alist where associations have the following shape:
4101 \(TYPE . REGEXP)
4103 Applying a rule means apply REGEXP against LINK's path when its
4104 type is TYPE. The function will return a non-nil value if any of
4105 the provided rules is non-nil. The default rule is
4106 `org-export-default-inline-image-rule'.
4108 This only applies to links without a description."
4109 (and (not (org-element-contents link))
4110 (let ((case-fold-search t)
4111 (rules (or rules org-export-default-inline-image-rule)))
4112 (catch 'exit
4113 (mapc
4114 (lambda (rule)
4115 (and (string= (org-element-property :type link) (car rule))
4116 (string-match (cdr rule)
4117 (org-element-property :path link))
4118 (throw 'exit t)))
4119 rules)
4120 ;; Return nil if no rule matched.
4121 nil))))
4123 (defun org-export-resolve-coderef (ref info)
4124 "Resolve a code reference REF.
4126 INFO is a plist used as a communication channel.
4128 Return associated line number in source code, or REF itself,
4129 depending on src-block or example element's switches."
4130 (org-element-map (plist-get info :parse-tree) '(example-block src-block)
4131 (lambda (el)
4132 (with-temp-buffer
4133 (insert (org-trim (org-element-property :value el)))
4134 (let* ((label-fmt (regexp-quote
4135 (or (org-element-property :label-fmt el)
4136 org-coderef-label-format)))
4137 (ref-re
4138 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
4139 (replace-regexp-in-string "%s" ref label-fmt nil t))))
4140 ;; Element containing REF is found. Resolve it to either
4141 ;; a label or a line number, as needed.
4142 (when (re-search-backward ref-re nil t)
4143 (cond
4144 ((org-element-property :use-labels el) ref)
4145 ((eq (org-element-property :number-lines el) 'continued)
4146 (+ (org-export-get-loc el info) (line-number-at-pos)))
4147 (t (line-number-at-pos)))))))
4148 info 'first-match))
4150 (defun org-export-resolve-fuzzy-link (link info)
4151 "Return LINK destination.
4153 INFO is a plist holding contextual information.
4155 Return value can be an object, an element, or nil:
4157 - If LINK path matches a target object (i.e. <<path>>) return it.
4159 - If LINK path exactly matches the name affiliated keyword
4160 \(i.e. #+NAME: path) of an element, return that element.
4162 - If LINK path exactly matches any headline name, return that
4163 element. If more than one headline share that name, priority
4164 will be given to the one with the closest common ancestor, if
4165 any, or the first one in the parse tree otherwise.
4167 - Otherwise, return nil.
4169 Assume LINK type is \"fuzzy\". White spaces are not
4170 significant."
4171 (let* ((raw-path (org-element-property :path link))
4172 (match-title-p (eq (aref raw-path 0) ?*))
4173 ;; Split PATH at white spaces so matches are space
4174 ;; insensitive.
4175 (path (org-split-string
4176 (if match-title-p (substring raw-path 1) raw-path)))
4177 ;; Cache for destinations that are not position dependent.
4178 (link-cache
4179 (or (plist-get info :resolve-fuzzy-link-cache)
4180 (plist-get (setq info (plist-put info :resolve-fuzzy-link-cache
4181 (make-hash-table :test 'equal)))
4182 :resolve-fuzzy-link-cache)))
4183 (cached (gethash path link-cache 'not-found)))
4184 (cond
4185 ;; Destination is not position dependent: use cached value.
4186 ((and (not match-title-p) (not (eq cached 'not-found))) cached)
4187 ;; First try to find a matching "<<path>>" unless user specified
4188 ;; he was looking for a headline (path starts with a "*"
4189 ;; character).
4190 ((and (not match-title-p)
4191 (let ((match (org-element-map (plist-get info :parse-tree) 'target
4192 (lambda (blob)
4193 (and (equal (org-split-string
4194 (org-element-property :value blob))
4195 path)
4196 blob))
4197 info 'first-match)))
4198 (and match (puthash path match link-cache)))))
4199 ;; Then try to find an element with a matching "#+NAME: path"
4200 ;; affiliated keyword.
4201 ((and (not match-title-p)
4202 (let ((match (org-element-map (plist-get info :parse-tree)
4203 org-element-all-elements
4204 (lambda (el)
4205 (let ((name (org-element-property :name el)))
4206 (when (and name
4207 (equal (org-split-string name) path))
4208 el)))
4209 info 'first-match)))
4210 (and match (puthash path match link-cache)))))
4211 ;; Last case: link either points to a headline or to nothingness.
4212 ;; Try to find the source, with priority given to headlines with
4213 ;; the closest common ancestor. If such candidate is found,
4214 ;; return it, otherwise return nil.
4216 (let ((find-headline
4217 (function
4218 ;; Return first headline whose `:raw-value' property is
4219 ;; NAME in parse tree DATA, or nil. Statistics cookies
4220 ;; are ignored.
4221 (lambda (name data)
4222 (org-element-map data 'headline
4223 (lambda (headline)
4224 (when (equal (org-split-string
4225 (replace-regexp-in-string
4226 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
4227 (org-element-property :raw-value headline)))
4228 name)
4229 headline))
4230 info 'first-match)))))
4231 ;; Search among headlines sharing an ancestor with link, from
4232 ;; closest to farthest.
4233 (catch 'exit
4234 (mapc
4235 (lambda (parent)
4236 (let ((foundp (funcall find-headline path parent)))
4237 (when foundp (throw 'exit foundp))))
4238 (let ((parent-hl (org-export-get-parent-headline link)))
4239 (if (not parent-hl) (list (plist-get info :parse-tree))
4240 (cons parent-hl (org-export-get-genealogy parent-hl)))))
4241 ;; No destination found: return nil.
4242 (and (not match-title-p) (puthash path nil link-cache))))))))
4244 (defun org-export-resolve-id-link (link info)
4245 "Return headline referenced as LINK destination.
4247 INFO is a plist used as a communication channel.
4249 Return value can be the headline element matched in current parse
4250 tree, a file name or nil. Assume LINK type is either \"id\" or
4251 \"custom-id\"."
4252 (let ((id (org-element-property :path link)))
4253 ;; First check if id is within the current parse tree.
4254 (or (org-element-map (plist-get info :parse-tree) 'headline
4255 (lambda (headline)
4256 (when (or (string= (org-element-property :ID headline) id)
4257 (string= (org-element-property :CUSTOM_ID headline) id))
4258 headline))
4259 info 'first-match)
4260 ;; Otherwise, look for external files.
4261 (cdr (assoc id (plist-get info :id-alist))))))
4263 (defun org-export-resolve-radio-link (link info)
4264 "Return radio-target object referenced as LINK destination.
4266 INFO is a plist used as a communication channel.
4268 Return value can be a radio-target object or nil. Assume LINK
4269 has type \"radio\"."
4270 (let ((path (replace-regexp-in-string
4271 "[ \r\t\n]+" " " (org-element-property :path link))))
4272 (org-element-map (plist-get info :parse-tree) 'radio-target
4273 (lambda (radio)
4274 (and (eq (compare-strings
4275 (replace-regexp-in-string
4276 "[ \r\t\n]+" " " (org-element-property :value radio))
4277 nil nil path nil nil t)
4279 radio))
4280 info 'first-match)))
4283 ;;;; For References
4285 ;; `org-export-get-ordinal' associates a sequence number to any object
4286 ;; or element.
4288 (defun org-export-get-ordinal (element info &optional types predicate)
4289 "Return ordinal number of an element or object.
4291 ELEMENT is the element or object considered. INFO is the plist
4292 used as a communication channel.
4294 Optional argument TYPES, when non-nil, is a list of element or
4295 object types, as symbols, that should also be counted in.
4296 Otherwise, only provided element's type is considered.
4298 Optional argument PREDICATE is a function returning a non-nil
4299 value if the current element or object should be counted in. It
4300 accepts two arguments: the element or object being considered and
4301 the plist used as a communication channel. This allows to count
4302 only a certain type of objects (i.e. inline images).
4304 Return value is a list of numbers if ELEMENT is a headline or an
4305 item. It is nil for keywords. It represents the footnote number
4306 for footnote definitions and footnote references. If ELEMENT is
4307 a target, return the same value as if ELEMENT was the closest
4308 table, item or headline containing the target. In any other
4309 case, return the sequence number of ELEMENT among elements or
4310 objects of the same type."
4311 ;; Ordinal of a target object refer to the ordinal of the closest
4312 ;; table, item, or headline containing the object.
4313 (when (eq (org-element-type element) 'target)
4314 (setq element
4315 (loop for parent in (org-export-get-genealogy element)
4316 when
4317 (memq
4318 (org-element-type parent)
4319 '(footnote-definition footnote-reference headline item
4320 table))
4321 return parent)))
4322 (case (org-element-type element)
4323 ;; Special case 1: A headline returns its number as a list.
4324 (headline (org-export-get-headline-number element info))
4325 ;; Special case 2: An item returns its number as a list.
4326 (item (let ((struct (org-element-property :structure element)))
4327 (org-list-get-item-number
4328 (org-element-property :begin element)
4329 struct
4330 (org-list-prevs-alist struct)
4331 (org-list-parents-alist struct))))
4332 ((footnote-definition footnote-reference)
4333 (org-export-get-footnote-number element info))
4334 (otherwise
4335 (let ((counter 0))
4336 ;; Increment counter until ELEMENT is found again.
4337 (org-element-map (plist-get info :parse-tree)
4338 (or types (org-element-type element))
4339 (lambda (el)
4340 (cond
4341 ((eq element el) (1+ counter))
4342 ((not predicate) (incf counter) nil)
4343 ((funcall predicate el info) (incf counter) nil)))
4344 info 'first-match)))))
4347 ;;;; For Src-Blocks
4349 ;; `org-export-get-loc' counts number of code lines accumulated in
4350 ;; src-block or example-block elements with a "+n" switch until
4351 ;; a given element, excluded. Note: "-n" switches reset that count.
4353 ;; `org-export-unravel-code' extracts source code (along with a code
4354 ;; references alist) from an `element-block' or `src-block' type
4355 ;; element.
4357 ;; `org-export-format-code' applies a formatting function to each line
4358 ;; of code, providing relative line number and code reference when
4359 ;; appropriate. Since it doesn't access the original element from
4360 ;; which the source code is coming, it expects from the code calling
4361 ;; it to know if lines should be numbered and if code references
4362 ;; should appear.
4364 ;; Eventually, `org-export-format-code-default' is a higher-level
4365 ;; function (it makes use of the two previous functions) which handles
4366 ;; line numbering and code references inclusion, and returns source
4367 ;; code in a format suitable for plain text or verbatim output.
4369 (defun org-export-get-loc (element info)
4370 "Return accumulated lines of code up to ELEMENT.
4372 INFO is the plist used as a communication channel.
4374 ELEMENT is excluded from count."
4375 (let ((loc 0))
4376 (org-element-map (plist-get info :parse-tree)
4377 `(src-block example-block ,(org-element-type element))
4378 (lambda (el)
4379 (cond
4380 ;; ELEMENT is reached: Quit the loop.
4381 ((eq el element))
4382 ;; Only count lines from src-block and example-block elements
4383 ;; with a "+n" or "-n" switch. A "-n" switch resets counter.
4384 ((not (memq (org-element-type el) '(src-block example-block))) nil)
4385 ((let ((linums (org-element-property :number-lines el)))
4386 (when linums
4387 ;; Accumulate locs or reset them.
4388 (let ((lines (org-count-lines
4389 (org-trim (org-element-property :value el)))))
4390 (setq loc (if (eq linums 'new) lines (+ loc lines))))))
4391 ;; Return nil to stay in the loop.
4392 nil)))
4393 info 'first-match)
4394 ;; Return value.
4395 loc))
4397 (defun org-export-unravel-code (element)
4398 "Clean source code and extract references out of it.
4400 ELEMENT has either a `src-block' an `example-block' type.
4402 Return a cons cell whose CAR is the source code, cleaned from any
4403 reference, protective commas and spurious indentation, and CDR is
4404 an alist between relative line number (integer) and name of code
4405 reference on that line (string)."
4406 (let* ((line 0) refs
4407 (value (org-element-property :value element))
4408 ;; Get code and clean it. Remove blank lines at its
4409 ;; beginning and end.
4410 (code (replace-regexp-in-string
4411 "\\`\\([ \t]*\n\\)+" ""
4412 (replace-regexp-in-string
4413 "\\([ \t]*\n\\)*[ \t]*\\'" "\n"
4414 (if (or org-src-preserve-indentation
4415 (org-element-property :preserve-indent element))
4416 value
4417 (org-element-remove-indentation value)))))
4418 ;; Get format used for references.
4419 (label-fmt (regexp-quote
4420 (or (org-element-property :label-fmt element)
4421 org-coderef-label-format)))
4422 ;; Build a regexp matching a loc with a reference.
4423 (with-ref-re
4424 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)[ \t]*\\)$"
4425 (replace-regexp-in-string
4426 "%s" "\\([-a-zA-Z0-9_ ]+\\)" label-fmt nil t))))
4427 ;; Return value.
4428 (cons
4429 ;; Code with references removed.
4430 (org-element-normalize-string
4431 (mapconcat
4432 (lambda (loc)
4433 (incf line)
4434 (if (not (string-match with-ref-re loc)) loc
4435 ;; Ref line: remove ref, and signal its position in REFS.
4436 (push (cons line (match-string 3 loc)) refs)
4437 (replace-match "" nil nil loc 1)))
4438 (org-split-string code "\n") "\n"))
4439 ;; Reference alist.
4440 refs)))
4442 (defun org-export-format-code (code fun &optional num-lines ref-alist)
4443 "Format CODE by applying FUN line-wise and return it.
4445 CODE is a string representing the code to format. FUN is
4446 a function. It must accept three arguments: a line of
4447 code (string), the current line number (integer) or nil and the
4448 reference associated to the current line (string) or nil.
4450 Optional argument NUM-LINES can be an integer representing the
4451 number of code lines accumulated until the current code. Line
4452 numbers passed to FUN will take it into account. If it is nil,
4453 FUN's second argument will always be nil. This number can be
4454 obtained with `org-export-get-loc' function.
4456 Optional argument REF-ALIST can be an alist between relative line
4457 number (i.e. ignoring NUM-LINES) and the name of the code
4458 reference on it. If it is nil, FUN's third argument will always
4459 be nil. It can be obtained through the use of
4460 `org-export-unravel-code' function."
4461 (let ((--locs (org-split-string code "\n"))
4462 (--line 0))
4463 (org-element-normalize-string
4464 (mapconcat
4465 (lambda (--loc)
4466 (incf --line)
4467 (let ((--ref (cdr (assq --line ref-alist))))
4468 (funcall fun --loc (and num-lines (+ num-lines --line)) --ref)))
4469 --locs "\n"))))
4471 (defun org-export-format-code-default (element info)
4472 "Return source code from ELEMENT, formatted in a standard way.
4474 ELEMENT is either a `src-block' or `example-block' element. INFO
4475 is a plist used as a communication channel.
4477 This function takes care of line numbering and code references
4478 inclusion. Line numbers, when applicable, appear at the
4479 beginning of the line, separated from the code by two white
4480 spaces. Code references, on the other hand, appear flushed to
4481 the right, separated by six white spaces from the widest line of
4482 code."
4483 ;; Extract code and references.
4484 (let* ((code-info (org-export-unravel-code element))
4485 (code (car code-info))
4486 (code-lines (org-split-string code "\n")))
4487 (if (null code-lines) ""
4488 (let* ((refs (and (org-element-property :retain-labels element)
4489 (cdr code-info)))
4490 ;; Handle line numbering.
4491 (num-start (case (org-element-property :number-lines element)
4492 (continued (org-export-get-loc element info))
4493 (new 0)))
4494 (num-fmt
4495 (and num-start
4496 (format "%%%ds "
4497 (length (number-to-string
4498 (+ (length code-lines) num-start))))))
4499 ;; Prepare references display, if required. Any reference
4500 ;; should start six columns after the widest line of code,
4501 ;; wrapped with parenthesis.
4502 (max-width
4503 (+ (apply 'max (mapcar 'length code-lines))
4504 (if (not num-start) 0 (length (format num-fmt num-start))))))
4505 (org-export-format-code
4506 code
4507 (lambda (loc line-num ref)
4508 (let ((number-str (and num-fmt (format num-fmt line-num))))
4509 (concat
4510 number-str
4512 (and ref
4513 (concat (make-string
4514 (- (+ 6 max-width)
4515 (+ (length loc) (length number-str))) ? )
4516 (format "(%s)" ref))))))
4517 num-start refs)))))
4520 ;;;; For Tables
4522 ;; `org-export-table-has-special-column-p' and and
4523 ;; `org-export-table-row-is-special-p' are predicates used to look for
4524 ;; meta-information about the table structure.
4526 ;; `org-table-has-header-p' tells when the rows before the first rule
4527 ;; should be considered as table's header.
4529 ;; `org-export-table-cell-width', `org-export-table-cell-alignment'
4530 ;; and `org-export-table-cell-borders' extract information from
4531 ;; a table-cell element.
4533 ;; `org-export-table-dimensions' gives the number on rows and columns
4534 ;; in the table, ignoring horizontal rules and special columns.
4535 ;; `org-export-table-cell-address', given a table-cell object, returns
4536 ;; the absolute address of a cell. On the other hand,
4537 ;; `org-export-get-table-cell-at' does the contrary.
4539 ;; `org-export-table-cell-starts-colgroup-p',
4540 ;; `org-export-table-cell-ends-colgroup-p',
4541 ;; `org-export-table-row-starts-rowgroup-p',
4542 ;; `org-export-table-row-ends-rowgroup-p',
4543 ;; `org-export-table-row-starts-header-p',
4544 ;; `org-export-table-row-ends-header-p' and
4545 ;; `org-export-table-row-in-header-p' indicate position of current row
4546 ;; or cell within the table.
4548 (defun org-export-table-has-special-column-p (table)
4549 "Non-nil when TABLE has a special column.
4550 All special columns will be ignored during export."
4551 ;; The table has a special column when every first cell of every row
4552 ;; has an empty value or contains a symbol among "/", "#", "!", "$",
4553 ;; "*" "_" and "^". Though, do not consider a first row containing
4554 ;; only empty cells as special.
4555 (let ((special-column-p 'empty))
4556 (catch 'exit
4557 (mapc
4558 (lambda (row)
4559 (when (eq (org-element-property :type row) 'standard)
4560 (let ((value (org-element-contents
4561 (car (org-element-contents row)))))
4562 (cond ((member value '(("/") ("#") ("!") ("$") ("*") ("_") ("^")))
4563 (setq special-column-p 'special))
4564 ((not value))
4565 (t (throw 'exit nil))))))
4566 (org-element-contents table))
4567 (eq special-column-p 'special))))
4569 (defun org-export-table-has-header-p (table info)
4570 "Non-nil when TABLE has a header.
4572 INFO is a plist used as a communication channel.
4574 A table has a header when it contains at least two row groups."
4575 (let ((cache (or (plist-get info :table-header-cache)
4576 (plist-get (setq info
4577 (plist-put info :table-header-cache
4578 (make-hash-table :test 'eq)))
4579 :table-header-cache))))
4580 (or (gethash table cache)
4581 (let ((rowgroup 1) row-flag)
4582 (puthash
4583 table
4584 (org-element-map table 'table-row
4585 (lambda (row)
4586 (cond
4587 ((> rowgroup 1) t)
4588 ((and row-flag (eq (org-element-property :type row) 'rule))
4589 (incf rowgroup) (setq row-flag nil))
4590 ((and (not row-flag) (eq (org-element-property :type row)
4591 'standard))
4592 (setq row-flag t) nil)))
4593 info 'first-match)
4594 cache)))))
4596 (defun org-export-table-row-is-special-p (table-row info)
4597 "Non-nil if TABLE-ROW is considered special.
4599 INFO is a plist used as the communication channel.
4601 All special rows will be ignored during export."
4602 (when (eq (org-element-property :type table-row) 'standard)
4603 (let ((first-cell (org-element-contents
4604 (car (org-element-contents table-row)))))
4605 ;; A row is special either when...
4607 ;; ... it starts with a field only containing "/",
4608 (equal first-cell '("/"))
4609 ;; ... the table contains a special column and the row start
4610 ;; with a marking character among, "^", "_", "$" or "!",
4611 (and (org-export-table-has-special-column-p
4612 (org-export-get-parent table-row))
4613 (member first-cell '(("^") ("_") ("$") ("!"))))
4614 ;; ... it contains only alignment cookies and empty cells.
4615 (let ((special-row-p 'empty))
4616 (catch 'exit
4617 (mapc
4618 (lambda (cell)
4619 (let ((value (org-element-contents cell)))
4620 ;; Since VALUE is a secondary string, the following
4621 ;; checks avoid expanding it with `org-export-data'.
4622 (cond ((not value))
4623 ((and (not (cdr value))
4624 (stringp (car value))
4625 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'"
4626 (car value)))
4627 (setq special-row-p 'cookie))
4628 (t (throw 'exit nil)))))
4629 (org-element-contents table-row))
4630 (eq special-row-p 'cookie)))))))
4632 (defun org-export-table-row-group (table-row info)
4633 "Return TABLE-ROW's group number, as an integer.
4635 INFO is a plist used as the communication channel.
4637 Return value is the group number, as an integer, or nil for
4638 special rows and rows separators. First group is also table's
4639 header."
4640 (let ((cache (or (plist-get info :table-row-group-cache)
4641 (plist-get (setq info
4642 (plist-put info :table-row-group-cache
4643 (make-hash-table :test 'eq)))
4644 :table-row-group-cache))))
4645 (cond ((gethash table-row cache))
4646 ((eq (org-element-property :type table-row) 'rule) nil)
4647 (t (let ((group 0) row-flag)
4648 (org-element-map (org-export-get-parent table-row) 'table-row
4649 (lambda (row)
4650 (if (eq (org-element-property :type row) 'rule)
4651 (setq row-flag nil)
4652 (unless row-flag (incf group) (setq row-flag t)))
4653 (when (eq table-row row) (puthash table-row group cache)))
4654 info 'first-match))))))
4656 (defun org-export-table-cell-width (table-cell info)
4657 "Return TABLE-CELL contents width.
4659 INFO is a plist used as the communication channel.
4661 Return value is the width given by the last width cookie in the
4662 same column as TABLE-CELL, or nil."
4663 (let* ((row (org-export-get-parent table-cell))
4664 (table (org-export-get-parent row))
4665 (cells (org-element-contents row))
4666 (columns (length cells))
4667 (column (- columns (length (memq table-cell cells))))
4668 (cache (or (plist-get info :table-cell-width-cache)
4669 (plist-get (setq info
4670 (plist-put info :table-cell-width-cache
4671 (make-hash-table :test 'eq)))
4672 :table-cell-width-cache)))
4673 (width-vector (or (gethash table cache)
4674 (puthash table (make-vector columns 'empty) cache)))
4675 (value (aref width-vector column)))
4676 (if (not (eq value 'empty)) value
4677 (let (cookie-width)
4678 (dolist (row (org-element-contents table)
4679 (aset width-vector column cookie-width))
4680 (when (org-export-table-row-is-special-p row info)
4681 ;; In a special row, try to find a width cookie at COLUMN.
4682 (let* ((value (org-element-contents
4683 (elt (org-element-contents row) column)))
4684 (cookie (car value)))
4685 ;; The following checks avoid expanding unnecessarily
4686 ;; the cell with `org-export-data'.
4687 (when (and value
4688 (not (cdr value))
4689 (stringp cookie)
4690 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie)
4691 (match-string 1 cookie))
4692 (setq cookie-width
4693 (string-to-number (match-string 1 cookie)))))))))))
4695 (defun org-export-table-cell-alignment (table-cell info)
4696 "Return TABLE-CELL contents alignment.
4698 INFO is a plist used as the communication channel.
4700 Return alignment as specified by the last alignment cookie in the
4701 same column as TABLE-CELL. If no such cookie is found, a default
4702 alignment value will be deduced from fraction of numbers in the
4703 column (see `org-table-number-fraction' for more information).
4704 Possible values are `left', `right' and `center'."
4705 ;; Load `org-table-number-fraction' and `org-table-number-regexp'.
4706 (require 'org-table)
4707 (let* ((row (org-export-get-parent table-cell))
4708 (table (org-export-get-parent row))
4709 (cells (org-element-contents row))
4710 (columns (length cells))
4711 (column (- columns (length (memq table-cell cells))))
4712 (cache (or (plist-get info :table-cell-alignment-cache)
4713 (plist-get (setq info
4714 (plist-put info :table-cell-alignment-cache
4715 (make-hash-table :test 'eq)))
4716 :table-cell-alignment-cache)))
4717 (align-vector (or (gethash table cache)
4718 (puthash table (make-vector columns nil) cache))))
4719 (or (aref align-vector column)
4720 (let ((number-cells 0)
4721 (total-cells 0)
4722 cookie-align
4723 previous-cell-number-p)
4724 (dolist (row (org-element-contents (org-export-get-parent row)))
4725 (cond
4726 ;; In a special row, try to find an alignment cookie at
4727 ;; COLUMN.
4728 ((org-export-table-row-is-special-p row info)
4729 (let ((value (org-element-contents
4730 (elt (org-element-contents row) column))))
4731 ;; Since VALUE is a secondary string, the following
4732 ;; checks avoid useless expansion through
4733 ;; `org-export-data'.
4734 (when (and value
4735 (not (cdr value))
4736 (stringp (car value))
4737 (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'"
4738 (car value))
4739 (match-string 1 (car value)))
4740 (setq cookie-align (match-string 1 (car value))))))
4741 ;; Ignore table rules.
4742 ((eq (org-element-property :type row) 'rule))
4743 ;; In a standard row, check if cell's contents are
4744 ;; expressing some kind of number. Increase NUMBER-CELLS
4745 ;; accordingly. Though, don't bother if an alignment
4746 ;; cookie has already defined cell's alignment.
4747 ((not cookie-align)
4748 (let ((value (org-export-data
4749 (org-element-contents
4750 (elt (org-element-contents row) column))
4751 info)))
4752 (incf total-cells)
4753 ;; Treat an empty cell as a number if it follows
4754 ;; a number.
4755 (if (not (or (string-match org-table-number-regexp value)
4756 (and (string= value "") previous-cell-number-p)))
4757 (setq previous-cell-number-p nil)
4758 (setq previous-cell-number-p t)
4759 (incf number-cells))))))
4760 ;; Return value. Alignment specified by cookies has
4761 ;; precedence over alignment deduced from cell's contents.
4762 (aset align-vector
4763 column
4764 (cond ((equal cookie-align "l") 'left)
4765 ((equal cookie-align "r") 'right)
4766 ((equal cookie-align "c") 'center)
4767 ((>= (/ (float number-cells) total-cells)
4768 org-table-number-fraction)
4769 'right)
4770 (t 'left)))))))
4772 (defun org-export-table-cell-borders (table-cell info)
4773 "Return TABLE-CELL borders.
4775 INFO is a plist used as a communication channel.
4777 Return value is a list of symbols, or nil. Possible values are:
4778 `top', `bottom', `above', `below', `left' and `right'. Note:
4779 `top' (resp. `bottom') only happen for a cell in the first
4780 row (resp. last row) of the table, ignoring table rules, if any.
4782 Returned borders ignore special rows."
4783 (let* ((row (org-export-get-parent table-cell))
4784 (table (org-export-get-parent-table table-cell))
4785 borders)
4786 ;; Top/above border? TABLE-CELL has a border above when a rule
4787 ;; used to demarcate row groups can be found above. Hence,
4788 ;; finding a rule isn't sufficient to push `above' in BORDERS:
4789 ;; another regular row has to be found above that rule.
4790 (let (rule-flag)
4791 (catch 'exit
4792 (mapc (lambda (row)
4793 (cond ((eq (org-element-property :type row) 'rule)
4794 (setq rule-flag t))
4795 ((not (org-export-table-row-is-special-p row info))
4796 (if rule-flag (throw 'exit (push 'above borders))
4797 (throw 'exit nil)))))
4798 ;; Look at every row before the current one.
4799 (cdr (memq row (reverse (org-element-contents table)))))
4800 ;; No rule above, or rule found starts the table (ignoring any
4801 ;; special row): TABLE-CELL is at the top of the table.
4802 (when rule-flag (push 'above borders))
4803 (push 'top borders)))
4804 ;; Bottom/below border? TABLE-CELL has a border below when next
4805 ;; non-regular row below is a rule.
4806 (let (rule-flag)
4807 (catch 'exit
4808 (mapc (lambda (row)
4809 (cond ((eq (org-element-property :type row) 'rule)
4810 (setq rule-flag t))
4811 ((not (org-export-table-row-is-special-p row info))
4812 (if rule-flag (throw 'exit (push 'below borders))
4813 (throw 'exit nil)))))
4814 ;; Look at every row after the current one.
4815 (cdr (memq row (org-element-contents table))))
4816 ;; No rule below, or rule found ends the table (modulo some
4817 ;; special row): TABLE-CELL is at the bottom of the table.
4818 (when rule-flag (push 'below borders))
4819 (push 'bottom borders)))
4820 ;; Right/left borders? They can only be specified by column
4821 ;; groups. Column groups are defined in a row starting with "/".
4822 ;; Also a column groups row only contains "<", "<>", ">" or blank
4823 ;; cells.
4824 (catch 'exit
4825 (let ((column (let ((cells (org-element-contents row)))
4826 (- (length cells) (length (memq table-cell cells))))))
4827 (mapc
4828 (lambda (row)
4829 (unless (eq (org-element-property :type row) 'rule)
4830 (when (equal (org-element-contents
4831 (car (org-element-contents row)))
4832 '("/"))
4833 (let ((column-groups
4834 (mapcar
4835 (lambda (cell)
4836 (let ((value (org-element-contents cell)))
4837 (when (member value '(("<") ("<>") (">") nil))
4838 (car value))))
4839 (org-element-contents row))))
4840 ;; There's a left border when previous cell, if
4841 ;; any, ends a group, or current one starts one.
4842 (when (or (and (not (zerop column))
4843 (member (elt column-groups (1- column))
4844 '(">" "<>")))
4845 (member (elt column-groups column) '("<" "<>")))
4846 (push 'left borders))
4847 ;; There's a right border when next cell, if any,
4848 ;; starts a group, or current one ends one.
4849 (when (or (and (/= (1+ column) (length column-groups))
4850 (member (elt column-groups (1+ column))
4851 '("<" "<>")))
4852 (member (elt column-groups column) '(">" "<>")))
4853 (push 'right borders))
4854 (throw 'exit nil)))))
4855 ;; Table rows are read in reverse order so last column groups
4856 ;; row has precedence over any previous one.
4857 (reverse (org-element-contents table)))))
4858 ;; Return value.
4859 borders))
4861 (defun org-export-table-cell-starts-colgroup-p (table-cell info)
4862 "Non-nil when TABLE-CELL is at the beginning of a column group.
4863 INFO is a plist used as a communication channel."
4864 ;; A cell starts a column group either when it is at the beginning
4865 ;; of a row (or after the special column, if any) or when it has
4866 ;; a left border.
4867 (or (eq (org-element-map (org-export-get-parent table-cell) 'table-cell
4868 'identity info 'first-match)
4869 table-cell)
4870 (memq 'left (org-export-table-cell-borders table-cell info))))
4872 (defun org-export-table-cell-ends-colgroup-p (table-cell info)
4873 "Non-nil when TABLE-CELL is at the end of a column group.
4874 INFO is a plist used as a communication channel."
4875 ;; A cell ends a column group either when it is at the end of a row
4876 ;; or when it has a right border.
4877 (or (eq (car (last (org-element-contents
4878 (org-export-get-parent table-cell))))
4879 table-cell)
4880 (memq 'right (org-export-table-cell-borders table-cell info))))
4882 (defun org-export-table-row-starts-rowgroup-p (table-row info)
4883 "Non-nil when TABLE-ROW is at the beginning of a row group.
4884 INFO is a plist used as a communication channel."
4885 (unless (or (eq (org-element-property :type table-row) 'rule)
4886 (org-export-table-row-is-special-p table-row info))
4887 (let ((borders (org-export-table-cell-borders
4888 (car (org-element-contents table-row)) info)))
4889 (or (memq 'top borders) (memq 'above borders)))))
4891 (defun org-export-table-row-ends-rowgroup-p (table-row info)
4892 "Non-nil when TABLE-ROW is at the end of a row group.
4893 INFO is a plist used as a communication channel."
4894 (unless (or (eq (org-element-property :type table-row) 'rule)
4895 (org-export-table-row-is-special-p table-row info))
4896 (let ((borders (org-export-table-cell-borders
4897 (car (org-element-contents table-row)) info)))
4898 (or (memq 'bottom borders) (memq 'below borders)))))
4900 (defun org-export-table-row-in-header-p (table-row info)
4901 "Non-nil when TABLE-ROW is located within table's header.
4902 INFO is a plist used as a communication channel. Always return
4903 nil for special rows and rows separators."
4904 (and (org-export-table-has-header-p
4905 (org-export-get-parent-table table-row) info)
4906 (eql (org-export-table-row-group table-row info) 1)))
4908 (defun org-export-table-row-starts-header-p (table-row info)
4909 "Non-nil when TABLE-ROW is the first table header's row.
4910 INFO is a plist used as a communication channel."
4911 (and (org-export-table-row-in-header-p table-row info)
4912 (org-export-table-row-starts-rowgroup-p table-row info)))
4914 (defun org-export-table-row-ends-header-p (table-row info)
4915 "Non-nil when TABLE-ROW is the last table header's row.
4916 INFO is a plist used as a communication channel."
4917 (and (org-export-table-row-in-header-p table-row info)
4918 (org-export-table-row-ends-rowgroup-p table-row info)))
4920 (defun org-export-table-row-number (table-row info)
4921 "Return TABLE-ROW number.
4922 INFO is a plist used as a communication channel. Return value is
4923 zero-based and ignores separators. The function returns nil for
4924 special columns and separators."
4925 (when (and (eq (org-element-property :type table-row) 'standard)
4926 (not (org-export-table-row-is-special-p table-row info)))
4927 (let ((number 0))
4928 (org-element-map (org-export-get-parent-table table-row) 'table-row
4929 (lambda (row)
4930 (cond ((eq row table-row) number)
4931 ((eq (org-element-property :type row) 'standard)
4932 (incf number) nil)))
4933 info 'first-match))))
4935 (defun org-export-table-dimensions (table info)
4936 "Return TABLE dimensions.
4938 INFO is a plist used as a communication channel.
4940 Return value is a CONS like (ROWS . COLUMNS) where
4941 ROWS (resp. COLUMNS) is the number of exportable
4942 rows (resp. columns)."
4943 (let (first-row (columns 0) (rows 0))
4944 ;; Set number of rows, and extract first one.
4945 (org-element-map table 'table-row
4946 (lambda (row)
4947 (when (eq (org-element-property :type row) 'standard)
4948 (incf rows)
4949 (unless first-row (setq first-row row)))) info)
4950 ;; Set number of columns.
4951 (org-element-map first-row 'table-cell (lambda (cell) (incf columns)) info)
4952 ;; Return value.
4953 (cons rows columns)))
4955 (defun org-export-table-cell-address (table-cell info)
4956 "Return address of a regular TABLE-CELL object.
4958 TABLE-CELL is the cell considered. INFO is a plist used as
4959 a communication channel.
4961 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
4962 zero-based index. Only exportable cells are considered. The
4963 function returns nil for other cells."
4964 (let* ((table-row (org-export-get-parent table-cell))
4965 (row-number (org-export-table-row-number table-row info)))
4966 (when row-number
4967 (cons row-number
4968 (let ((col-count 0))
4969 (org-element-map table-row 'table-cell
4970 (lambda (cell)
4971 (if (eq cell table-cell) col-count (incf col-count) nil))
4972 info 'first-match))))))
4974 (defun org-export-get-table-cell-at (address table info)
4975 "Return regular table-cell object at ADDRESS in TABLE.
4977 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
4978 zero-based index. TABLE is a table type element. INFO is
4979 a plist used as a communication channel.
4981 If no table-cell, among exportable cells, is found at ADDRESS,
4982 return nil."
4983 (let ((column-pos (cdr address)) (column-count 0))
4984 (org-element-map
4985 ;; Row at (car address) or nil.
4986 (let ((row-pos (car address)) (row-count 0))
4987 (org-element-map table 'table-row
4988 (lambda (row)
4989 (cond ((eq (org-element-property :type row) 'rule) nil)
4990 ((= row-count row-pos) row)
4991 (t (incf row-count) nil)))
4992 info 'first-match))
4993 'table-cell
4994 (lambda (cell)
4995 (if (= column-count column-pos) cell
4996 (incf column-count) nil))
4997 info 'first-match)))
5000 ;;;; For Tables Of Contents
5002 ;; `org-export-collect-headlines' builds a list of all exportable
5003 ;; headline elements, maybe limited to a certain depth. One can then
5004 ;; easily parse it and transcode it.
5006 ;; Building lists of tables, figures or listings is quite similar.
5007 ;; Once the generic function `org-export-collect-elements' is defined,
5008 ;; `org-export-collect-tables', `org-export-collect-figures' and
5009 ;; `org-export-collect-listings' can be derived from it.
5011 (defun org-export-collect-headlines (info &optional n)
5012 "Collect headlines in order to build a table of contents.
5014 INFO is a plist used as a communication channel.
5016 When optional argument N is an integer, it specifies the depth of
5017 the table of contents. Otherwise, it is set to the value of the
5018 last headline level. See `org-export-headline-levels' for more
5019 information.
5021 Return a list of all exportable headlines as parsed elements.
5022 Footnote sections, if any, will be ignored."
5023 (let ((limit (plist-get info :headline-levels)))
5024 (setq n (if (wholenump n) (min n limit) limit))
5025 (org-element-map (plist-get info :parse-tree) 'headline
5026 #'(lambda (headline)
5027 (unless (org-element-property :footnote-section-p headline)
5028 (let ((level (org-export-get-relative-level headline info)))
5029 (and (<= level n) headline))))
5030 info)))
5032 (defun org-export-collect-elements (type info &optional predicate)
5033 "Collect referenceable elements of a determined type.
5035 TYPE can be a symbol or a list of symbols specifying element
5036 types to search. Only elements with a caption are collected.
5038 INFO is a plist used as a communication channel.
5040 When non-nil, optional argument PREDICATE is a function accepting
5041 one argument, an element of type TYPE. It returns a non-nil
5042 value when that element should be collected.
5044 Return a list of all elements found, in order of appearance."
5045 (org-element-map (plist-get info :parse-tree) type
5046 (lambda (element)
5047 (and (org-element-property :caption element)
5048 (or (not predicate) (funcall predicate element))
5049 element))
5050 info))
5052 (defun org-export-collect-tables (info)
5053 "Build a list of tables.
5054 INFO is a plist used as a communication channel.
5056 Return a list of table elements with a caption."
5057 (org-export-collect-elements 'table info))
5059 (defun org-export-collect-figures (info predicate)
5060 "Build a list of figures.
5062 INFO is a plist used as a communication channel. PREDICATE is
5063 a function which accepts one argument: a paragraph element and
5064 whose return value is non-nil when that element should be
5065 collected.
5067 A figure is a paragraph type element, with a caption, verifying
5068 PREDICATE. The latter has to be provided since a \"figure\" is
5069 a vague concept that may depend on back-end.
5071 Return a list of elements recognized as figures."
5072 (org-export-collect-elements 'paragraph info predicate))
5074 (defun org-export-collect-listings (info)
5075 "Build a list of src blocks.
5077 INFO is a plist used as a communication channel.
5079 Return a list of src-block elements with a caption."
5080 (org-export-collect-elements 'src-block info))
5083 ;;;; Smart Quotes
5085 ;; The main function for the smart quotes sub-system is
5086 ;; `org-export-activate-smart-quotes', which replaces every quote in
5087 ;; a given string from the parse tree with its "smart" counterpart.
5089 ;; Dictionary for smart quotes is stored in
5090 ;; `org-export-smart-quotes-alist'.
5092 ;; Internally, regexps matching potential smart quotes (checks at
5093 ;; string boundaries are also necessary) are defined in
5094 ;; `org-export-smart-quotes-regexps'.
5096 (defconst org-export-smart-quotes-alist
5097 '(("da"
5098 ;; one may use: »...«, "...", ›...‹, or '...'.
5099 ;; http://sproget.dk/raad-og-regler/retskrivningsregler/retskrivningsregler/a7-40-60/a7-58-anforselstegn/
5100 ;; LaTeX quotes require Babel!
5101 (opening-double-quote :utf-8 "»" :html "&raquo;" :latex ">>"
5102 :texinfo "@guillemetright{}")
5103 (closing-double-quote :utf-8 "«" :html "&laquo;" :latex "<<"
5104 :texinfo "@guillemetleft{}")
5105 (opening-single-quote :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}"
5106 :texinfo "@guilsinglright{}")
5107 (closing-single-quote :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}"
5108 :texinfo "@guilsingleft{}")
5109 (apostrophe :utf-8 "’" :html "&rsquo;"))
5110 ("de"
5111 (opening-double-quote :utf-8 "„" :html "&bdquo;" :latex "\"`"
5112 :texinfo "@quotedblbase{}")
5113 (closing-double-quote :utf-8 "“" :html "&ldquo;" :latex "\"'"
5114 :texinfo "@quotedblleft{}")
5115 (opening-single-quote :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}"
5116 :texinfo "@quotesinglbase{}")
5117 (closing-single-quote :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}"
5118 :texinfo "@quoteleft{}")
5119 (apostrophe :utf-8 "’" :html "&rsquo;"))
5120 ("en"
5121 (opening-double-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5122 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5123 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5124 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5125 (apostrophe :utf-8 "’" :html "&rsquo;"))
5126 ("es"
5127 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5128 :texinfo "@guillemetleft{}")
5129 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5130 :texinfo "@guillemetright{}")
5131 (opening-single-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5132 (closing-single-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5133 (apostrophe :utf-8 "’" :html "&rsquo;"))
5134 ("fr"
5135 (opening-double-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5136 :texinfo "@guillemetleft{}@tie{}")
5137 (closing-double-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5138 :texinfo "@tie{}@guillemetright{}")
5139 (opening-single-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5140 :texinfo "@guillemetleft{}@tie{}")
5141 (closing-single-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5142 :texinfo "@tie{}@guillemetright{}")
5143 (apostrophe :utf-8 "’" :html "&rsquo;"))
5144 ("no"
5145 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5146 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5147 :texinfo "@guillemetleft{}")
5148 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5149 :texinfo "@guillemetright{}")
5150 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5151 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5152 (apostrophe :utf-8 "’" :html "&rsquo;"))
5153 ("nb"
5154 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5155 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5156 :texinfo "@guillemetleft{}")
5157 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5158 :texinfo "@guillemetright{}")
5159 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5160 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5161 (apostrophe :utf-8 "’" :html "&rsquo;"))
5162 ("nn"
5163 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5164 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5165 :texinfo "@guillemetleft{}")
5166 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5167 :texinfo "@guillemetright{}")
5168 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5169 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5170 (apostrophe :utf-8 "’" :html "&rsquo;"))
5171 ("ru"
5172 ;; 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
5173 ;; http://www.artlebedev.ru/kovodstvo/sections/104/
5174 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "{}<<"
5175 :texinfo "@guillemetleft{}")
5176 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex ">>{}"
5177 :texinfo "@guillemetright{}")
5178 (opening-single-quote :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}"
5179 :texinfo "@quotedblbase{}")
5180 (closing-single-quote :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}"
5181 :texinfo "@quotedblleft{}")
5182 (apostrophe :utf-8 "’" :html: "&#39;"))
5183 ("sv"
5184 ;; based on https://sv.wikipedia.org/wiki/Citattecken
5185 (opening-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5186 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5187 (opening-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`")
5188 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'")
5189 (apostrophe :utf-8 "’" :html "&rsquo;"))
5191 "Smart quotes translations.
5193 Alist whose CAR is a language string and CDR is an alist with
5194 quote type as key and a plist associating various encodings to
5195 their translation as value.
5197 A quote type can be any symbol among `opening-double-quote',
5198 `closing-double-quote', `opening-single-quote',
5199 `closing-single-quote' and `apostrophe'.
5201 Valid encodings include `:utf-8', `:html', `:latex' and
5202 `:texinfo'.
5204 If no translation is found, the quote character is left as-is.")
5206 (defconst org-export-smart-quotes-regexps
5207 (list
5208 ;; Possible opening quote at beginning of string.
5209 "\\`\\([\"']\\)\\(\\w\\|\\s.\\|\\s_\\|\\s(\\)"
5210 ;; Possible closing quote at beginning of string.
5211 "\\`\\([\"']\\)\\(\\s-\\|\\s)\\|\\s.\\)"
5212 ;; Possible apostrophe at beginning of string.
5213 "\\`\\('\\)\\S-"
5214 ;; Opening single and double quotes.
5215 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\(?:\\w\\|\\s.\\|\\s_\\)"
5216 ;; Closing single and double quotes.
5217 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\(?:\\s-\\|\\s)\\|\\s.\\)"
5218 ;; Apostrophe.
5219 "\\S-\\('\\)\\S-"
5220 ;; Possible opening quote at end of string.
5221 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\'"
5222 ;; Possible closing quote at end of string.
5223 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\'"
5224 ;; Possible apostrophe at end of string.
5225 "\\S-\\('\\)\\'")
5226 "List of regexps matching a quote or an apostrophe.
5227 In every regexp, quote or apostrophe matched is put in group 1.")
5229 (defun org-export-activate-smart-quotes (s encoding info &optional original)
5230 "Replace regular quotes with \"smart\" quotes in string S.
5232 ENCODING is a symbol among `:html', `:latex', `:texinfo' and
5233 `:utf-8'. INFO is a plist used as a communication channel.
5235 The function has to retrieve information about string
5236 surroundings in parse tree. It can only happen with an
5237 unmodified string. Thus, if S has already been through another
5238 process, a non-nil ORIGINAL optional argument will provide that
5239 original string.
5241 Return the new string."
5242 (if (equal s "") ""
5243 (let* ((prev (org-export-get-previous-element (or original s) info))
5244 ;; Try to be flexible when computing number of blanks
5245 ;; before object. The previous object may be a string
5246 ;; introduced by the back-end and not completely parsed.
5247 (pre-blank (and prev
5248 (or (org-element-property :post-blank prev)
5249 ;; A string with missing `:post-blank'
5250 ;; property.
5251 (and (stringp prev)
5252 (string-match " *\\'" prev)
5253 (length (match-string 0 prev)))
5254 ;; Fallback value.
5255 0)))
5256 (next (org-export-get-next-element (or original s) info))
5257 (get-smart-quote
5258 (lambda (q type)
5259 ;; Return smart quote associated to a give quote Q, as
5260 ;; a string. TYPE is a symbol among `open', `close' and
5261 ;; `apostrophe'.
5262 (let ((key (case type
5263 (apostrophe 'apostrophe)
5264 (open (if (equal "'" q) 'opening-single-quote
5265 'opening-double-quote))
5266 (otherwise (if (equal "'" q) 'closing-single-quote
5267 'closing-double-quote)))))
5268 (or (plist-get
5269 (cdr (assq key
5270 (cdr (assoc (plist-get info :language)
5271 org-export-smart-quotes-alist))))
5272 encoding)
5273 q)))))
5274 (if (or (equal "\"" s) (equal "'" s))
5275 ;; Only a quote: no regexp can match. We have to check both
5276 ;; sides and decide what to do.
5277 (cond ((and (not prev) (not next)) s)
5278 ((not prev) (funcall get-smart-quote s 'open))
5279 ((and (not next) (zerop pre-blank))
5280 (funcall get-smart-quote s 'close))
5281 ((not next) s)
5282 ((zerop pre-blank) (funcall get-smart-quote s 'apostrophe))
5283 (t (funcall get-smart-quote 'open)))
5284 ;; 1. Replace quote character at the beginning of S.
5285 (cond
5286 ;; Apostrophe?
5287 ((and prev (zerop pre-blank)
5288 (string-match (nth 2 org-export-smart-quotes-regexps) s))
5289 (setq s (replace-match
5290 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5291 nil t s 1)))
5292 ;; Closing quote?
5293 ((and prev (zerop pre-blank)
5294 (string-match (nth 1 org-export-smart-quotes-regexps) s))
5295 (setq s (replace-match
5296 (funcall get-smart-quote (match-string 1 s) 'close)
5297 nil t s 1)))
5298 ;; Opening quote?
5299 ((and (or (not prev) (> pre-blank 0))
5300 (string-match (nth 0 org-export-smart-quotes-regexps) s))
5301 (setq s (replace-match
5302 (funcall get-smart-quote (match-string 1 s) 'open)
5303 nil t s 1))))
5304 ;; 2. Replace quotes in the middle of the string.
5305 (setq s (replace-regexp-in-string
5306 ;; Opening quotes.
5307 (nth 3 org-export-smart-quotes-regexps)
5308 (lambda (text)
5309 (funcall get-smart-quote (match-string 1 text) 'open))
5310 s nil t 1))
5311 (setq s (replace-regexp-in-string
5312 ;; Closing quotes.
5313 (nth 4 org-export-smart-quotes-regexps)
5314 (lambda (text)
5315 (funcall get-smart-quote (match-string 1 text) 'close))
5316 s nil t 1))
5317 (setq s (replace-regexp-in-string
5318 ;; Apostrophes.
5319 (nth 5 org-export-smart-quotes-regexps)
5320 (lambda (text)
5321 (funcall get-smart-quote (match-string 1 text) 'apostrophe))
5322 s nil t 1))
5323 ;; 3. Replace quote character at the end of S.
5324 (cond
5325 ;; Apostrophe?
5326 ((and next (string-match (nth 8 org-export-smart-quotes-regexps) s))
5327 (setq s (replace-match
5328 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5329 nil t s 1)))
5330 ;; Closing quote?
5331 ((and (not next)
5332 (string-match (nth 7 org-export-smart-quotes-regexps) s))
5333 (setq s (replace-match
5334 (funcall get-smart-quote (match-string 1 s) 'close)
5335 nil t s 1)))
5336 ;; Opening quote?
5337 ((and next (string-match (nth 6 org-export-smart-quotes-regexps) s))
5338 (setq s (replace-match
5339 (funcall get-smart-quote (match-string 1 s) 'open)
5340 nil t s 1))))
5341 ;; Return string with smart quotes.
5342 s))))
5344 ;;;; Topology
5346 ;; Here are various functions to retrieve information about the
5347 ;; neighborhood of a given element or object. Neighbors of interest
5348 ;; are direct parent (`org-export-get-parent'), parent headline
5349 ;; (`org-export-get-parent-headline'), first element containing an
5350 ;; object, (`org-export-get-parent-element'), parent table
5351 ;; (`org-export-get-parent-table'), previous element or object
5352 ;; (`org-export-get-previous-element') and next element or object
5353 ;; (`org-export-get-next-element').
5355 ;; `org-export-get-genealogy' returns the full genealogy of a given
5356 ;; element or object, from closest parent to full parse tree.
5358 ;; defsubst org-export-get-parent must be defined before first use
5360 (defun org-export-get-genealogy (blob)
5361 "Return full genealogy relative to a given element or object.
5363 BLOB is the element or object being considered.
5365 Ancestors are returned from closest to farthest, the last one
5366 being the full parse tree."
5367 (let (genealogy (parent blob))
5368 (while (setq parent (org-element-property :parent parent))
5369 (push parent genealogy))
5370 (nreverse genealogy)))
5372 (defun org-export-get-parent-headline (blob)
5373 "Return BLOB parent headline or nil.
5374 BLOB is the element or object being considered."
5375 (let ((parent blob))
5376 (while (and (setq parent (org-element-property :parent parent))
5377 (not (eq (org-element-type parent) 'headline))))
5378 parent))
5380 (defun org-export-get-parent-element (object)
5381 "Return first element containing OBJECT or nil.
5382 OBJECT is the object to consider."
5383 (let ((parent object))
5384 (while (and (setq parent (org-element-property :parent parent))
5385 (memq (org-element-type parent) org-element-all-objects)))
5386 parent))
5388 (defun org-export-get-parent-table (object)
5389 "Return OBJECT parent table or nil.
5390 OBJECT is either a `table-cell' or `table-element' type object."
5391 (let ((parent object))
5392 (while (and (setq parent (org-element-property :parent parent))
5393 (not (eq (org-element-type parent) 'table))))
5394 parent))
5396 (defun org-export-get-previous-element (blob info &optional n)
5397 "Return previous element or object.
5399 BLOB is an element or object. INFO is a plist used as
5400 a communication channel. Return previous exportable element or
5401 object, a string, or nil.
5403 When optional argument N is a positive integer, return a list
5404 containing up to N siblings before BLOB, from farthest to
5405 closest. With any other non-nil value, return a list containing
5406 all of them."
5407 (let* ((secondary (org-element-secondary-p blob))
5408 (parent (org-export-get-parent blob))
5409 (siblings
5410 (if secondary (org-element-property secondary parent)
5411 (org-element-contents parent)))
5412 prev)
5413 (catch 'exit
5414 (dolist (obj (cdr (memq blob (reverse siblings))) prev)
5415 (cond ((memq obj (plist-get info :ignore-list)))
5416 ((null n) (throw 'exit obj))
5417 ((not (wholenump n)) (push obj prev))
5418 ((zerop n) (throw 'exit prev))
5419 (t (decf n) (push obj prev)))))))
5421 (defun org-export-get-next-element (blob info &optional n)
5422 "Return next element or object.
5424 BLOB is an element or object. INFO is a plist used as
5425 a communication channel. Return next exportable element or
5426 object, a string, or nil.
5428 When optional argument N is a positive integer, return a list
5429 containing up to N siblings after BLOB, from closest to farthest.
5430 With any other non-nil value, return a list containing all of
5431 them."
5432 (let* ((secondary (org-element-secondary-p blob))
5433 (parent (org-export-get-parent blob))
5434 (siblings
5435 (cdr (memq blob
5436 (if secondary (org-element-property secondary parent)
5437 (org-element-contents parent)))))
5438 next)
5439 (catch 'exit
5440 (dolist (obj siblings (nreverse next))
5441 (cond ((memq obj (plist-get info :ignore-list)))
5442 ((null n) (throw 'exit obj))
5443 ((not (wholenump n)) (push obj next))
5444 ((zerop n) (throw 'exit (nreverse next)))
5445 (t (decf n) (push obj next)))))))
5448 ;;;; Translation
5450 ;; `org-export-translate' translates a string according to the language
5451 ;; specified by the LANGUAGE keyword. `org-export-dictionary' contains
5452 ;; the dictionary used for the translation.
5454 (defconst org-export-dictionary
5455 '(("%e %n: %c"
5456 ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c"))
5457 ("Author"
5458 ("ca" :default "Autor")
5459 ("cs" :default "Autor")
5460 ("da" :default "Forfatter")
5461 ("de" :default "Autor")
5462 ("eo" :html "A&#365;toro")
5463 ("es" :default "Autor")
5464 ("et" :default "Autor")
5465 ("fi" :html "Tekij&auml;")
5466 ("fr" :default "Auteur")
5467 ("hu" :default "Szerz&otilde;")
5468 ("is" :html "H&ouml;fundur")
5469 ("it" :default "Autore")
5470 ("ja" :default "著者" :html "&#33879;&#32773;")
5471 ("nl" :default "Auteur")
5472 ("no" :default "Forfatter")
5473 ("nb" :default "Forfatter")
5474 ("nn" :default "Forfattar")
5475 ("pl" :default "Autor")
5476 ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5477 ("sv" :html "F&ouml;rfattare")
5478 ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5479 ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者")
5480 ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者"))
5481 ("Continued from previous page"
5482 ("de" :default "Fortsetzung von vorheriger Seite")
5483 ("es" :default "Continúa de la página anterior")
5484 ("fr" :default "Suite de la page précédente")
5485 ("it" :default "Continua da pagina precedente")
5486 ("ja" :default "前ページからの続き")
5487 ("nl" :default "Vervolg van vorige pagina")
5488 ("pt" :default "Continuação da página anterior")
5489 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)"
5490 :utf-8 "(Продолжение)"))
5491 ("Continued on next page"
5492 ("de" :default "Fortsetzung nächste Seite")
5493 ("es" :default "Continúa en la siguiente página")
5494 ("fr" :default "Suite page suivante")
5495 ("it" :default "Continua alla pagina successiva")
5496 ("ja" :default "次ページに続く")
5497 ("nl" :default "Vervolg op volgende pagina")
5498 ("pt" :default "Continua na página seguinte")
5499 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)"
5500 :utf-8 "(Продолжение следует)"))
5501 ("Date"
5502 ("ca" :default "Data")
5503 ("cs" :default "Datum")
5504 ("da" :default "Dato")
5505 ("de" :default "Datum")
5506 ("eo" :default "Dato")
5507 ("es" :default "Fecha")
5508 ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev")
5509 ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;")
5510 ("hu" :html "D&aacute;tum")
5511 ("is" :default "Dagsetning")
5512 ("it" :default "Data")
5513 ("ja" :default "日付" :html "&#26085;&#20184;")
5514 ("nl" :default "Datum")
5515 ("no" :default "Dato")
5516 ("nb" :default "Dato")
5517 ("nn" :default "Dato")
5518 ("pl" :default "Data")
5519 ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5520 ("sv" :default "Datum")
5521 ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5522 ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期")
5523 ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期"))
5524 ("Equation"
5525 ("da" :default "Ligning")
5526 ("de" :default "Gleichung")
5527 ("es" :html "Ecuaci&oacute;n" :default "Ecuación")
5528 ("et" :html "V&#245;rrand" :utf-8 "Võrrand")
5529 ("fr" :ascii "Equation" :default "Équation")
5530 ("ja" :default "方程式")
5531 ("no" :default "Ligning")
5532 ("nb" :default "Ligning")
5533 ("nn" :default "Likning")
5534 ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;"
5535 :utf-8 "Уравнение")
5536 ("sv" :default "Ekvation")
5537 ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程"))
5538 ("Figure"
5539 ("da" :default "Figur")
5540 ("de" :default "Abbildung")
5541 ("es" :default "Figura")
5542 ("et" :default "Joonis")
5543 ("ja" :default "図" :html "&#22259;")
5544 ("no" :default "Illustrasjon")
5545 ("nb" :default "Illustrasjon")
5546 ("nn" :default "Illustrasjon")
5547 ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок")
5548 ("sv" :default "Illustration")
5549 ("zh-CN" :html "&#22270;" :utf-8 "图"))
5550 ("Figure %d:"
5551 ("da" :default "Figur %d")
5552 ("de" :default "Abbildung %d:")
5553 ("es" :default "Figura %d:")
5554 ("et" :default "Joonis %d:")
5555 ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:")
5556 ("ja" :default "図%d: " :html "&#22259;%d: ")
5557 ("no" :default "Illustrasjon %d")
5558 ("nb" :default "Illustrasjon %d")
5559 ("nn" :default "Illustrasjon %d")
5560 ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:")
5561 ("sv" :default "Illustration %d")
5562 ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d "))
5563 ("Footnotes"
5564 ("ca" :html "Peus de p&agrave;gina")
5565 ("cs" :default "Pozn\xe1mky pod carou")
5566 ("da" :default "Fodnoter")
5567 ("de" :html "Fu&szlig;noten" :default "Fußnoten")
5568 ("eo" :default "Piednotoj")
5569 ("es" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página")
5570 ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused")
5571 ("fi" :default "Alaviitteet")
5572 ("fr" :default "Notes de bas de page")
5573 ("hu" :html "L&aacute;bjegyzet")
5574 ("is" :html "Aftanm&aacute;lsgreinar")
5575 ("it" :html "Note a pi&egrave; di pagina")
5576 ("ja" :default "脚注" :html "&#33050;&#27880;")
5577 ("nl" :default "Voetnoten")
5578 ("no" :default "Fotnoter")
5579 ("nb" :default "Fotnoter")
5580 ("nn" :default "Fotnotar")
5581 ("pl" :default "Przypis")
5582 ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски")
5583 ("sv" :default "Fotnoter")
5584 ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;"
5585 :utf-8 "Примітки")
5586 ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注")
5587 ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註"))
5588 ("List of Listings"
5589 ("da" :default "Programmer")
5590 ("de" :default "Programmauflistungsverzeichnis")
5591 ("es" :default "Indice de Listados de programas")
5592 ("et" :default "Loendite nimekiri")
5593 ("fr" :default "Liste des programmes")
5594 ("ja" :default "ソースコード目次")
5595 ("no" :default "Dataprogrammer")
5596 ("nb" :default "Dataprogrammer")
5597 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;"
5598 :utf-8 "Список распечаток")
5599 ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录"))
5600 ("List of Tables"
5601 ("da" :default "Tabeller")
5602 ("de" :default "Tabellenverzeichnis")
5603 ("es" :default "Indice de tablas")
5604 ("et" :default "Tabelite nimekiri")
5605 ("fr" :default "Liste des tableaux")
5606 ("ja" :default "表目次")
5607 ("no" :default "Tabeller")
5608 ("nb" :default "Tabeller")
5609 ("nn" :default "Tabeller")
5610 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;"
5611 :utf-8 "Список таблиц")
5612 ("sv" :default "Tabeller")
5613 ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录"))
5614 ("Listing %d:"
5615 ("da" :default "Program %d")
5616 ("de" :default "Programmlisting %d")
5617 ("es" :default "Listado de programa %d")
5618 ("et" :default "Loend %d")
5619 ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:")
5620 ("ja" :default "ソースコード%d:")
5621 ("no" :default "Dataprogram %d")
5622 ("nb" :default "Dataprogram %d")
5623 ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:"
5624 :utf-8 "Распечатка %d.:")
5625 ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d "))
5626 ("References"
5627 ("fr" :ascii "References" :default "Références")
5628 ("de" :default "Quellen"))
5629 ("See section %s"
5630 ("da" :default "jævnfør afsnit %s")
5631 ("de" :default "siehe Abschnitt %s")
5632 ("es" :default "vea seccion %s")
5633 ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s")
5634 ("fr" :default "cf. section %s")
5635 ("ja" :default "セクション %s を参照")
5636 ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s"
5637 :utf-8 "См. раздел %s")
5638 ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节"))
5639 ("Table"
5640 ("de" :default "Tabelle")
5641 ("es" :default "Tabla")
5642 ("et" :default "Tabel")
5643 ("fr" :default "Tableau")
5644 ("ja" :default "表" :html "&#34920;")
5645 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица")
5646 ("zh-CN" :html "&#34920;" :utf-8 "表"))
5647 ("Table %d:"
5648 ("da" :default "Tabel %d")
5649 ("de" :default "Tabelle %d")
5650 ("es" :default "Tabla %d")
5651 ("et" :default "Tabel %d")
5652 ("fr" :default "Tableau %d :")
5653 ("ja" :default "表%d:" :html "&#34920;%d:")
5654 ("no" :default "Tabell %d")
5655 ("nb" :default "Tabell %d")
5656 ("nn" :default "Tabell %d")
5657 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:"
5658 :utf-8 "Таблица %d.:")
5659 ("sv" :default "Tabell %d")
5660 ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d "))
5661 ("Table of Contents"
5662 ("ca" :html "&Iacute;ndex")
5663 ("cs" :default "Obsah")
5664 ("da" :default "Indhold")
5665 ("de" :default "Inhaltsverzeichnis")
5666 ("eo" :default "Enhavo")
5667 ("es" :html "&Iacute;ndice")
5668 ("et" :default "Sisukord")
5669 ("fi" :html "Sis&auml;llysluettelo")
5670 ("fr" :ascii "Sommaire" :default "Table des matières")
5671 ("hu" :html "Tartalomjegyz&eacute;k")
5672 ("is" :default "Efnisyfirlit")
5673 ("it" :default "Indice")
5674 ("ja" :default "目次" :html "&#30446;&#27425;")
5675 ("nl" :default "Inhoudsopgave")
5676 ("no" :default "Innhold")
5677 ("nb" :default "Innhold")
5678 ("nn" :default "Innhald")
5679 ("pl" :html "Spis tre&#x015b;ci")
5680 ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;"
5681 :utf-8 "Содержание")
5682 ("sv" :html "Inneh&aring;ll")
5683 ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст")
5684 ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录")
5685 ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄"))
5686 ("Unknown reference"
5687 ("da" :default "ukendt reference")
5688 ("de" :default "Unbekannter Verweis")
5689 ("es" :default "referencia desconocida")
5690 ("et" :default "Tundmatu viide")
5691 ("fr" :ascii "Destination inconnue" :default "Référence inconnue")
5692 ("ja" :default "不明な参照先")
5693 ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;"
5694 :utf-8 "Неизвестная ссылка")
5695 ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))
5696 "Dictionary for export engine.
5698 Alist whose CAR is the string to translate and CDR is an alist
5699 whose CAR is the language string and CDR is a plist whose
5700 properties are possible charsets and values translated terms.
5702 It is used as a database for `org-export-translate'. Since this
5703 function returns the string as-is if no translation was found,
5704 the variable only needs to record values different from the
5705 entry.")
5707 (defun org-export-translate (s encoding info)
5708 "Translate string S according to language specification.
5710 ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
5711 and `:utf-8'. INFO is a plist used as a communication channel.
5713 Translation depends on `:language' property. Return the
5714 translated string. If no translation is found, try to fall back
5715 to `:default' encoding. If it fails, return S."
5716 (let* ((lang (plist-get info :language))
5717 (translations (cdr (assoc lang
5718 (cdr (assoc s org-export-dictionary))))))
5719 (or (plist-get translations encoding)
5720 (plist-get translations :default)
5721 s)))
5725 ;;; Asynchronous Export
5727 ;; `org-export-async-start' is the entry point for asynchronous
5728 ;; export. It recreates current buffer (including visibility,
5729 ;; narrowing and visited file) in an external Emacs process, and
5730 ;; evaluates a command there. It then applies a function on the
5731 ;; returned results in the current process.
5733 ;; At a higher level, `org-export-to-buffer' and `org-export-to-file'
5734 ;; allow to export to a buffer or a file, asynchronously or not.
5736 ;; `org-export-output-file-name' is an auxiliary function meant to be
5737 ;; used with `org-export-to-file'. With a given extension, it tries
5738 ;; to provide a canonical file name to write export output to.
5740 ;; Asynchronously generated results are never displayed directly.
5741 ;; Instead, they are stored in `org-export-stack-contents'. They can
5742 ;; then be retrieved by calling `org-export-stack'.
5744 ;; Export Stack is viewed through a dedicated major mode
5745 ;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
5746 ;;`org-export-stack-delete', `org-export-stack-view' and
5747 ;;`org-export-stack-clear'.
5749 ;; For back-ends, `org-export-add-to-stack' add a new source to stack.
5750 ;; It should be used whenever `org-export-async-start' is called.
5752 (defmacro org-export-async-start (fun &rest body)
5753 "Call function FUN on the results returned by BODY evaluation.
5755 BODY evaluation happens in an asynchronous process, from a buffer
5756 which is an exact copy of the current one.
5758 Use `org-export-add-to-stack' in FUN in order to register results
5759 in the stack.
5761 This is a low level function. See also `org-export-to-buffer'
5762 and `org-export-to-file' for more specialized functions."
5763 (declare (indent 1) (debug t))
5764 (org-with-gensyms (process temp-file copy-fun proc-buffer coding)
5765 ;; Write the full sexp evaluating BODY in a copy of the current
5766 ;; buffer to a temporary file, as it may be too long for program
5767 ;; args in `start-process'.
5768 `(with-temp-message "Initializing asynchronous export process"
5769 (let ((,copy-fun (org-export--generate-copy-script (current-buffer)))
5770 (,temp-file (make-temp-file "org-export-process"))
5771 (,coding buffer-file-coding-system))
5772 (with-temp-file ,temp-file
5773 (insert
5774 ;; Null characters (from variable values) are inserted
5775 ;; within the file. As a consequence, coding system for
5776 ;; buffer contents will not be recognized properly. So,
5777 ;; we make sure it is the same as the one used to display
5778 ;; the original buffer.
5779 (format ";; -*- coding: %s; -*-\n%S"
5780 ,coding
5781 `(with-temp-buffer
5782 (when org-export-async-debug '(setq debug-on-error t))
5783 ;; Ignore `kill-emacs-hook' and code evaluation
5784 ;; queries from Babel as we need a truly
5785 ;; non-interactive process.
5786 (setq kill-emacs-hook nil
5787 org-babel-confirm-evaluate-answer-no t)
5788 ;; Initialize export framework.
5789 (require 'ox)
5790 ;; Re-create current buffer there.
5791 (funcall ,,copy-fun)
5792 (restore-buffer-modified-p nil)
5793 ;; Sexp to evaluate in the buffer.
5794 (print (progn ,,@body))))))
5795 ;; Start external process.
5796 (let* ((process-connection-type nil)
5797 (,proc-buffer (generate-new-buffer-name "*Org Export Process*"))
5798 (,process
5799 (apply
5800 #'start-process
5801 (append
5802 (list "org-export-process"
5803 ,proc-buffer
5804 (expand-file-name invocation-name invocation-directory)
5805 "--batch")
5806 (if org-export-async-init-file
5807 (list "-Q" "-l" org-export-async-init-file)
5808 (list "-l" user-init-file))
5809 (list "-l" ,temp-file)))))
5810 ;; Register running process in stack.
5811 (org-export-add-to-stack (get-buffer ,proc-buffer) nil ,process)
5812 ;; Set-up sentinel in order to catch results.
5813 (let ((handler ,fun))
5814 (set-process-sentinel
5815 ,process
5816 `(lambda (p status)
5817 (let ((proc-buffer (process-buffer p)))
5818 (when (eq (process-status p) 'exit)
5819 (unwind-protect
5820 (if (zerop (process-exit-status p))
5821 (unwind-protect
5822 (let ((results
5823 (with-current-buffer proc-buffer
5824 (goto-char (point-max))
5825 (backward-sexp)
5826 (read (current-buffer)))))
5827 (funcall ,handler results))
5828 (unless org-export-async-debug
5829 (and (get-buffer proc-buffer)
5830 (kill-buffer proc-buffer))))
5831 (org-export-add-to-stack proc-buffer nil p)
5832 (ding)
5833 (message "Process '%s' exited abnormally" p))
5834 (unless org-export-async-debug
5835 (delete-file ,,temp-file)))))))))))))
5837 ;;;###autoload
5838 (defun org-export-to-buffer
5839 (backend buffer
5840 &optional async subtreep visible-only body-only ext-plist
5841 post-process)
5842 "Call `org-export-as' with output to a specified buffer.
5844 BACKEND is either an export back-end, as returned by, e.g.,
5845 `org-export-create-backend', or a symbol referring to
5846 a registered back-end.
5848 BUFFER is the name of the output buffer. If it already exists,
5849 it will be erased first, otherwise, it will be created.
5851 A non-nil optional argument ASYNC means the process should happen
5852 asynchronously. The resulting buffer should then be accessible
5853 through the `org-export-stack' interface. When ASYNC is nil, the
5854 buffer is displayed if `org-export-show-temporary-export-buffer'
5855 is non-nil.
5857 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5858 EXT-PLIST are similar to those used in `org-export-as', which
5859 see.
5861 Optional argument POST-PROCESS is a function which should accept
5862 no argument. It is always called within the current process,
5863 from BUFFER, with point at its beginning. Export back-ends can
5864 use it to set a major mode there, e.g,
5866 \(defun org-latex-export-as-latex
5867 \(&optional async subtreep visible-only body-only ext-plist)
5868 \(interactive)
5869 \(org-export-to-buffer 'latex \"*Org LATEX Export*\"
5870 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
5872 This function returns BUFFER."
5873 (declare (indent 2))
5874 (if async
5875 (org-export-async-start
5876 `(lambda (output)
5877 (with-current-buffer (get-buffer-create ,buffer)
5878 (erase-buffer)
5879 (setq buffer-file-coding-system ',buffer-file-coding-system)
5880 (insert output)
5881 (goto-char (point-min))
5882 (org-export-add-to-stack (current-buffer) ',backend)
5883 (ignore-errors (funcall ,post-process))))
5884 `(org-export-as
5885 ',backend ,subtreep ,visible-only ,body-only ',ext-plist))
5886 (let ((output
5887 (org-export-as backend subtreep visible-only body-only ext-plist))
5888 (buffer (get-buffer-create buffer))
5889 (encoding buffer-file-coding-system))
5890 (when (and (org-string-nw-p output) (org-export--copy-to-kill-ring-p))
5891 (org-kill-new output))
5892 (with-current-buffer buffer
5893 (erase-buffer)
5894 (setq buffer-file-coding-system encoding)
5895 (insert output)
5896 (goto-char (point-min))
5897 (and (functionp post-process) (funcall post-process)))
5898 (when org-export-show-temporary-export-buffer
5899 (switch-to-buffer-other-window buffer))
5900 buffer)))
5902 ;;;###autoload
5903 (defun org-export-to-file
5904 (backend file &optional async subtreep visible-only body-only ext-plist
5905 post-process)
5906 "Call `org-export-as' with output to a specified file.
5908 BACKEND is either an export back-end, as returned by, e.g.,
5909 `org-export-create-backend', or a symbol referring to
5910 a registered back-end. FILE is the name of the output file, as
5911 a string.
5913 A non-nil optional argument ASYNC means the process should happen
5914 asynchronously. The resulting buffer will then be accessible
5915 through the `org-export-stack' interface.
5917 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5918 EXT-PLIST are similar to those used in `org-export-as', which
5919 see.
5921 Optional argument POST-PROCESS is called with FILE as its
5922 argument and happens asynchronously when ASYNC is non-nil. It
5923 has to return a file name, or nil. Export back-ends can use this
5924 to send the output file through additional processing, e.g,
5926 \(defun org-latex-export-to-latex
5927 \(&optional async subtreep visible-only body-only ext-plist)
5928 \(interactive)
5929 \(let ((outfile (org-export-output-file-name \".tex\" subtreep)))
5930 \(org-export-to-file 'latex outfile
5931 async subtreep visible-only body-only ext-plist
5932 \(lambda (file) (org-latex-compile file)))
5934 The function returns either a file name returned by POST-PROCESS,
5935 or FILE."
5936 (declare (indent 2))
5937 (if (not (file-writable-p file)) (error "Output file not writable")
5938 (let ((ext-plist (org-combine-plists `(:output-file ,file) ext-plist))
5939 (encoding (or org-export-coding-system buffer-file-coding-system)))
5940 (if async
5941 (org-export-async-start
5942 `(lambda (file)
5943 (org-export-add-to-stack (expand-file-name file) ',backend))
5944 `(let ((output
5945 (org-export-as
5946 ',backend ,subtreep ,visible-only ,body-only
5947 ',ext-plist)))
5948 (with-temp-buffer
5949 (insert output)
5950 (let ((coding-system-for-write ',encoding))
5951 (write-file ,file)))
5952 (or (ignore-errors (funcall ',post-process ,file)) ,file)))
5953 (let ((output (org-export-as
5954 backend subtreep visible-only body-only ext-plist)))
5955 (with-temp-buffer
5956 (insert output)
5957 (let ((coding-system-for-write encoding))
5958 (write-file file)))
5959 (when (and (org-export--copy-to-kill-ring-p) (org-string-nw-p output))
5960 (org-kill-new output))
5961 ;; Get proper return value.
5962 (or (and (functionp post-process) (funcall post-process file))
5963 file))))))
5965 (defun org-export-output-file-name (extension &optional subtreep pub-dir)
5966 "Return output file's name according to buffer specifications.
5968 EXTENSION is a string representing the output file extension,
5969 with the leading dot.
5971 With a non-nil optional argument SUBTREEP, try to determine
5972 output file's name by looking for \"EXPORT_FILE_NAME\" property
5973 of subtree at point.
5975 When optional argument PUB-DIR is set, use it as the publishing
5976 directory.
5978 When optional argument VISIBLE-ONLY is non-nil, don't export
5979 contents of hidden elements.
5981 Return file name as a string."
5982 (let* ((visited-file (buffer-file-name (buffer-base-buffer)))
5983 (base-name
5984 ;; File name may come from EXPORT_FILE_NAME subtree
5985 ;; property, assuming point is at beginning of said
5986 ;; sub-tree.
5987 (file-name-sans-extension
5988 (or (and subtreep
5989 (org-entry-get
5990 (save-excursion
5991 (ignore-errors (org-back-to-heading) (point)))
5992 "EXPORT_FILE_NAME" t))
5993 ;; File name may be extracted from buffer's associated
5994 ;; file, if any.
5995 (and visited-file (file-name-nondirectory visited-file))
5996 ;; Can't determine file name on our own: Ask user.
5997 (let ((read-file-name-function
5998 (and org-completion-use-ido 'ido-read-file-name)))
5999 (read-file-name
6000 "Output file: " pub-dir nil nil nil
6001 (lambda (name)
6002 (string= (file-name-extension name t) extension)))))))
6003 (output-file
6004 ;; Build file name. Enforce EXTENSION over whatever user
6005 ;; may have come up with. PUB-DIR, if defined, always has
6006 ;; precedence over any provided path.
6007 (cond
6008 (pub-dir
6009 (concat (file-name-as-directory pub-dir)
6010 (file-name-nondirectory base-name)
6011 extension))
6012 ((file-name-absolute-p base-name) (concat base-name extension))
6013 (t (concat (file-name-as-directory ".") base-name extension)))))
6014 ;; If writing to OUTPUT-FILE would overwrite original file, append
6015 ;; EXTENSION another time to final name.
6016 (if (and visited-file (org-file-equal-p visited-file output-file))
6017 (concat output-file extension)
6018 output-file)))
6020 (defun org-export-add-to-stack (source backend &optional process)
6021 "Add a new result to export stack if not present already.
6023 SOURCE is a buffer or a file name containing export results.
6024 BACKEND is a symbol representing export back-end used to generate
6027 Entries already pointing to SOURCE and unavailable entries are
6028 removed beforehand. Return the new stack."
6029 (setq org-export-stack-contents
6030 (cons (list source backend (or process (current-time)))
6031 (org-export-stack-remove source))))
6033 (defun org-export-stack ()
6034 "Menu for asynchronous export results and running processes."
6035 (interactive)
6036 (let ((buffer (get-buffer-create "*Org Export Stack*")))
6037 (set-buffer buffer)
6038 (when (zerop (buffer-size)) (org-export-stack-mode))
6039 (org-export-stack-refresh)
6040 (pop-to-buffer buffer))
6041 (message "Type \"q\" to quit, \"?\" for help"))
6043 (defun org-export--stack-source-at-point ()
6044 "Return source from export results at point in stack."
6045 (let ((source (car (nth (1- (org-current-line)) org-export-stack-contents))))
6046 (if (not source) (error "Source unavailable, please refresh buffer")
6047 (let ((source-name (if (stringp source) source (buffer-name source))))
6048 (if (save-excursion
6049 (beginning-of-line)
6050 (looking-at (concat ".* +" (regexp-quote source-name) "$")))
6051 source
6052 ;; SOURCE is not consistent with current line. The stack
6053 ;; view is outdated.
6054 (error "Source unavailable; type `g' to update buffer"))))))
6056 (defun org-export-stack-clear ()
6057 "Remove all entries from export stack."
6058 (interactive)
6059 (setq org-export-stack-contents nil))
6061 (defun org-export-stack-refresh (&rest dummy)
6062 "Refresh the asynchronous export stack.
6063 DUMMY is ignored. Unavailable sources are removed from the list.
6064 Return the new stack."
6065 (let ((inhibit-read-only t))
6066 (org-preserve-lc
6067 (erase-buffer)
6068 (insert (concat
6069 (let ((counter 0))
6070 (mapconcat
6071 (lambda (entry)
6072 (let ((proc-p (processp (nth 2 entry))))
6073 (concat
6074 ;; Back-end.
6075 (format " %-12s " (or (nth 1 entry) ""))
6076 ;; Age.
6077 (let ((data (nth 2 entry)))
6078 (if proc-p (format " %6s " (process-status data))
6079 ;; Compute age of the results.
6080 (org-format-seconds
6081 "%4h:%.2m "
6082 (float-time (time-since data)))))
6083 ;; Source.
6084 (format " %s"
6085 (let ((source (car entry)))
6086 (if (stringp source) source
6087 (buffer-name source)))))))
6088 ;; Clear stack from exited processes, dead buffers or
6089 ;; non-existent files.
6090 (setq org-export-stack-contents
6091 (org-remove-if-not
6092 (lambda (el)
6093 (if (processp (nth 2 el))
6094 (buffer-live-p (process-buffer (nth 2 el)))
6095 (let ((source (car el)))
6096 (if (bufferp source) (buffer-live-p source)
6097 (file-exists-p source)))))
6098 org-export-stack-contents)) "\n")))))))
6100 (defun org-export-stack-remove (&optional source)
6101 "Remove export results at point from stack.
6102 If optional argument SOURCE is non-nil, remove it instead."
6103 (interactive)
6104 (let ((source (or source (org-export--stack-source-at-point))))
6105 (setq org-export-stack-contents
6106 (org-remove-if (lambda (el) (equal (car el) source))
6107 org-export-stack-contents))))
6109 (defun org-export-stack-view (&optional in-emacs)
6110 "View export results at point in stack.
6111 With an optional prefix argument IN-EMACS, force viewing files
6112 within Emacs."
6113 (interactive "P")
6114 (let ((source (org-export--stack-source-at-point)))
6115 (cond ((processp source)
6116 (org-switch-to-buffer-other-window (process-buffer source)))
6117 ((bufferp source) (org-switch-to-buffer-other-window source))
6118 (t (org-open-file source in-emacs)))))
6120 (defvar org-export-stack-mode-map
6121 (let ((km (make-sparse-keymap)))
6122 (define-key km " " 'next-line)
6123 (define-key km "n" 'next-line)
6124 (define-key km "\C-n" 'next-line)
6125 (define-key km [down] 'next-line)
6126 (define-key km "p" 'previous-line)
6127 (define-key km "\C-p" 'previous-line)
6128 (define-key km "\C-?" 'previous-line)
6129 (define-key km [up] 'previous-line)
6130 (define-key km "C" 'org-export-stack-clear)
6131 (define-key km "v" 'org-export-stack-view)
6132 (define-key km (kbd "RET") 'org-export-stack-view)
6133 (define-key km "d" 'org-export-stack-remove)
6135 "Keymap for Org Export Stack.")
6137 (define-derived-mode org-export-stack-mode special-mode "Org-Stack"
6138 "Mode for displaying asynchronous export stack.
6140 Type \\[org-export-stack] to visualize the asynchronous export
6141 stack.
6143 In an Org Export Stack buffer, use \\<org-export-stack-mode-map>\\[org-export-stack-view] to view export output
6144 on current line, \\[org-export-stack-remove] to remove it from the stack and \\[org-export-stack-clear] to clear
6145 stack completely.
6147 Removing entries in an Org Export Stack buffer doesn't affect
6148 files or buffers, only the display.
6150 \\{org-export-stack-mode-map}"
6151 (abbrev-mode 0)
6152 (auto-fill-mode 0)
6153 (setq buffer-read-only t
6154 buffer-undo-list t
6155 truncate-lines t
6156 header-line-format
6157 '(:eval
6158 (format " %-12s | %6s | %s" "Back-End" "Age" "Source")))
6159 (org-add-hook 'post-command-hook 'org-export-stack-refresh nil t)
6160 (set (make-local-variable 'revert-buffer-function)
6161 'org-export-stack-refresh))
6165 ;;; The Dispatcher
6167 ;; `org-export-dispatch' is the standard interactive way to start an
6168 ;; export process. It uses `org-export--dispatch-ui' as a subroutine
6169 ;; for its interface, which, in turn, delegates response to key
6170 ;; pressed to `org-export--dispatch-action'.
6172 ;;;###autoload
6173 (defun org-export-dispatch (&optional arg)
6174 "Export dispatcher for Org mode.
6176 It provides an access to common export related tasks in a buffer.
6177 Its interface comes in two flavors: standard and expert.
6179 While both share the same set of bindings, only the former
6180 displays the valid keys associations in a dedicated buffer.
6181 Scrolling (resp. line-wise motion) in this buffer is done with
6182 SPC and DEL (resp. C-n and C-p) keys.
6184 Set variable `org-export-dispatch-use-expert-ui' to switch to one
6185 flavor or the other.
6187 When ARG is \\[universal-argument], repeat the last export action, with the same set
6188 of options used back then, on the current buffer.
6190 When ARG is \\[universal-argument] \\[universal-argument], display the asynchronous export stack."
6191 (interactive "P")
6192 (let* ((input
6193 (cond ((equal arg '(16)) '(stack))
6194 ((and arg org-export-dispatch-last-action))
6195 (t (save-window-excursion
6196 (unwind-protect
6197 (progn
6198 ;; Remember where we are
6199 (move-marker org-export-dispatch-last-position
6200 (point)
6201 (org-base-buffer (current-buffer)))
6202 ;; Get and store an export command
6203 (setq org-export-dispatch-last-action
6204 (org-export--dispatch-ui
6205 (list org-export-initial-scope
6206 (and org-export-in-background 'async))
6208 org-export-dispatch-use-expert-ui)))
6209 (and (get-buffer "*Org Export Dispatcher*")
6210 (kill-buffer "*Org Export Dispatcher*")))))))
6211 (action (car input))
6212 (optns (cdr input)))
6213 (unless (memq 'subtree optns)
6214 (move-marker org-export-dispatch-last-position nil))
6215 (case action
6216 ;; First handle special hard-coded actions.
6217 (template (org-export-insert-default-template nil optns))
6218 (stack (org-export-stack))
6219 (publish-current-file
6220 (org-publish-current-file (memq 'force optns) (memq 'async optns)))
6221 (publish-current-project
6222 (org-publish-current-project (memq 'force optns) (memq 'async optns)))
6223 (publish-choose-project
6224 (org-publish (assoc (org-icompleting-read
6225 "Publish project: "
6226 org-publish-project-alist nil t)
6227 org-publish-project-alist)
6228 (memq 'force optns)
6229 (memq 'async optns)))
6230 (publish-all (org-publish-all (memq 'force optns) (memq 'async optns)))
6231 (otherwise
6232 (save-excursion
6233 (when arg
6234 ;; Repeating command, maybe move cursor to restore subtree
6235 ;; context.
6236 (if (eq (marker-buffer org-export-dispatch-last-position)
6237 (org-base-buffer (current-buffer)))
6238 (goto-char org-export-dispatch-last-position)
6239 ;; We are in a different buffer, forget position.
6240 (move-marker org-export-dispatch-last-position nil)))
6241 (funcall action
6242 ;; Return a symbol instead of a list to ease
6243 ;; asynchronous export macro use.
6244 (and (memq 'async optns) t)
6245 (and (memq 'subtree optns) t)
6246 (and (memq 'visible optns) t)
6247 (and (memq 'body optns) t)))))))
6249 (defun org-export--dispatch-ui (options first-key expertp)
6250 "Handle interface for `org-export-dispatch'.
6252 OPTIONS is a list containing current interactive options set for
6253 export. It can contain any of the following symbols:
6254 `body' toggles a body-only export
6255 `subtree' restricts export to current subtree
6256 `visible' restricts export to visible part of buffer.
6257 `force' force publishing files.
6258 `async' use asynchronous export process
6260 FIRST-KEY is the key pressed to select the first level menu. It
6261 is nil when this menu hasn't been selected yet.
6263 EXPERTP, when non-nil, triggers expert UI. In that case, no help
6264 buffer is provided, but indications about currently active
6265 options are given in the prompt. Moreover, \[?] allows to switch
6266 back to standard interface."
6267 (let* ((fontify-key
6268 (lambda (key &optional access-key)
6269 ;; Fontify KEY string. Optional argument ACCESS-KEY, when
6270 ;; non-nil is the required first-level key to activate
6271 ;; KEY. When its value is t, activate KEY independently
6272 ;; on the first key, if any. A nil value means KEY will
6273 ;; only be activated at first level.
6274 (if (or (eq access-key t) (eq access-key first-key))
6275 (org-propertize key 'face 'org-warning)
6276 key)))
6277 (fontify-value
6278 (lambda (value)
6279 ;; Fontify VALUE string.
6280 (org-propertize value 'face 'font-lock-variable-name-face)))
6281 ;; Prepare menu entries by extracting them from registered
6282 ;; back-ends and sorting them by access key and by ordinal,
6283 ;; if any.
6284 (entries
6285 (sort (sort (delq nil
6286 (mapcar 'org-export-backend-menu
6287 org-export--registered-backends))
6288 (lambda (a b)
6289 (let ((key-a (nth 1 a))
6290 (key-b (nth 1 b)))
6291 (cond ((and (numberp key-a) (numberp key-b))
6292 (< key-a key-b))
6293 ((numberp key-b) t)))))
6294 'car-less-than-car))
6295 ;; Compute a list of allowed keys based on the first key
6296 ;; pressed, if any. Some keys
6297 ;; (?^B, ?^V, ?^S, ?^F, ?^A, ?&, ?# and ?q) are always
6298 ;; available.
6299 (allowed-keys
6300 (nconc (list 2 22 19 6 1)
6301 (if (not first-key) (org-uniquify (mapcar 'car entries))
6302 (let (sub-menu)
6303 (dolist (entry entries (sort (mapcar 'car sub-menu) '<))
6304 (when (eq (car entry) first-key)
6305 (setq sub-menu (append (nth 2 entry) sub-menu))))))
6306 (cond ((eq first-key ?P) (list ?f ?p ?x ?a))
6307 ((not first-key) (list ?P)))
6308 (list ?& ?#)
6309 (when expertp (list ??))
6310 (list ?q)))
6311 ;; Build the help menu for standard UI.
6312 (help
6313 (unless expertp
6314 (concat
6315 ;; Options are hard-coded.
6316 (format "[%s] Body only: %s [%s] Visible only: %s
6317 \[%s] Export scope: %s [%s] Force publishing: %s
6318 \[%s] Async export: %s\n\n"
6319 (funcall fontify-key "C-b" t)
6320 (funcall fontify-value
6321 (if (memq 'body options) "On " "Off"))
6322 (funcall fontify-key "C-v" t)
6323 (funcall fontify-value
6324 (if (memq 'visible options) "On " "Off"))
6325 (funcall fontify-key "C-s" t)
6326 (funcall fontify-value
6327 (if (memq 'subtree options) "Subtree" "Buffer "))
6328 (funcall fontify-key "C-f" t)
6329 (funcall fontify-value
6330 (if (memq 'force options) "On " "Off"))
6331 (funcall fontify-key "C-a" t)
6332 (funcall fontify-value
6333 (if (memq 'async options) "On " "Off")))
6334 ;; Display registered back-end entries. When a key
6335 ;; appears for the second time, do not create another
6336 ;; entry, but append its sub-menu to existing menu.
6337 (let (last-key)
6338 (mapconcat
6339 (lambda (entry)
6340 (let ((top-key (car entry)))
6341 (concat
6342 (unless (eq top-key last-key)
6343 (setq last-key top-key)
6344 (format "\n[%s] %s\n"
6345 (funcall fontify-key (char-to-string top-key))
6346 (nth 1 entry)))
6347 (let ((sub-menu (nth 2 entry)))
6348 (unless (functionp sub-menu)
6349 ;; Split sub-menu into two columns.
6350 (let ((index -1))
6351 (concat
6352 (mapconcat
6353 (lambda (sub-entry)
6354 (incf index)
6355 (format
6356 (if (zerop (mod index 2)) " [%s] %-26s"
6357 "[%s] %s\n")
6358 (funcall fontify-key
6359 (char-to-string (car sub-entry))
6360 top-key)
6361 (nth 1 sub-entry)))
6362 sub-menu "")
6363 (when (zerop (mod index 2)) "\n"))))))))
6364 entries ""))
6365 ;; Publishing menu is hard-coded.
6366 (format "\n[%s] Publish
6367 [%s] Current file [%s] Current project
6368 [%s] Choose project [%s] All projects\n\n\n"
6369 (funcall fontify-key "P")
6370 (funcall fontify-key "f" ?P)
6371 (funcall fontify-key "p" ?P)
6372 (funcall fontify-key "x" ?P)
6373 (funcall fontify-key "a" ?P))
6374 (format "[%s] Export stack [%s] Insert template\n"
6375 (funcall fontify-key "&" t)
6376 (funcall fontify-key "#" t))
6377 (format "[%s] %s"
6378 (funcall fontify-key "q" t)
6379 (if first-key "Main menu" "Exit")))))
6380 ;; Build prompts for both standard and expert UI.
6381 (standard-prompt (unless expertp "Export command: "))
6382 (expert-prompt
6383 (when expertp
6384 (format
6385 "Export command (C-%s%s%s%s%s) [%s]: "
6386 (if (memq 'body options) (funcall fontify-key "b" t) "b")
6387 (if (memq 'visible options) (funcall fontify-key "v" t) "v")
6388 (if (memq 'subtree options) (funcall fontify-key "s" t) "s")
6389 (if (memq 'force options) (funcall fontify-key "f" t) "f")
6390 (if (memq 'async options) (funcall fontify-key "a" t) "a")
6391 (mapconcat (lambda (k)
6392 ;; Strip control characters.
6393 (unless (< k 27) (char-to-string k)))
6394 allowed-keys "")))))
6395 ;; With expert UI, just read key with a fancy prompt. In standard
6396 ;; UI, display an intrusive help buffer.
6397 (if expertp
6398 (org-export--dispatch-action
6399 expert-prompt allowed-keys entries options first-key expertp)
6400 ;; At first call, create frame layout in order to display menu.
6401 (unless (get-buffer "*Org Export Dispatcher*")
6402 (delete-other-windows)
6403 (org-switch-to-buffer-other-window
6404 (get-buffer-create "*Org Export Dispatcher*"))
6405 (setq cursor-type nil
6406 header-line-format "Use SPC, DEL, C-n or C-p to navigate.")
6407 ;; Make sure that invisible cursor will not highlight square
6408 ;; brackets.
6409 (set-syntax-table (copy-syntax-table))
6410 (modify-syntax-entry ?\[ "w"))
6411 ;; At this point, the buffer containing the menu exists and is
6412 ;; visible in the current window. So, refresh it.
6413 (with-current-buffer "*Org Export Dispatcher*"
6414 ;; Refresh help. Maintain display continuity by re-visiting
6415 ;; previous window position.
6416 (let ((pos (window-start)))
6417 (erase-buffer)
6418 (insert help)
6419 (set-window-start nil pos)))
6420 (org-fit-window-to-buffer)
6421 (org-export--dispatch-action
6422 standard-prompt allowed-keys entries options first-key expertp))))
6424 (defun org-export--dispatch-action
6425 (prompt allowed-keys entries options first-key expertp)
6426 "Read a character from command input and act accordingly.
6428 PROMPT is the displayed prompt, as a string. ALLOWED-KEYS is
6429 a list of characters available at a given step in the process.
6430 ENTRIES is a list of menu entries. OPTIONS, FIRST-KEY and
6431 EXPERTP are the same as defined in `org-export--dispatch-ui',
6432 which see.
6434 Toggle export options when required. Otherwise, return value is
6435 a list with action as CAR and a list of interactive export
6436 options as CDR."
6437 (let (key)
6438 ;; Scrolling: when in non-expert mode, act on motion keys (C-n,
6439 ;; C-p, SPC, DEL).
6440 (while (and (setq key (read-char-exclusive prompt))
6441 (not expertp)
6442 (memq key '(14 16 ?\s ?\d)))
6443 (case key
6444 (14 (if (not (pos-visible-in-window-p (point-max)))
6445 (ignore-errors (scroll-up 1))
6446 (message "End of buffer")
6447 (sit-for 1)))
6448 (16 (if (not (pos-visible-in-window-p (point-min)))
6449 (ignore-errors (scroll-down 1))
6450 (message "Beginning of buffer")
6451 (sit-for 1)))
6452 (?\s (if (not (pos-visible-in-window-p (point-max)))
6453 (scroll-up nil)
6454 (message "End of buffer")
6455 (sit-for 1)))
6456 (?\d (if (not (pos-visible-in-window-p (point-min)))
6457 (scroll-down nil)
6458 (message "Beginning of buffer")
6459 (sit-for 1)))))
6460 (cond
6461 ;; Ignore undefined associations.
6462 ((not (memq key allowed-keys))
6463 (ding)
6464 (unless expertp (message "Invalid key") (sit-for 1))
6465 (org-export--dispatch-ui options first-key expertp))
6466 ;; q key at first level aborts export. At second level, cancel
6467 ;; first key instead.
6468 ((eq key ?q) (if (not first-key) (error "Export aborted")
6469 (org-export--dispatch-ui options nil expertp)))
6470 ;; Help key: Switch back to standard interface if expert UI was
6471 ;; active.
6472 ((eq key ??) (org-export--dispatch-ui options first-key nil))
6473 ;; Send request for template insertion along with export scope.
6474 ((eq key ?#) (cons 'template (memq 'subtree options)))
6475 ;; Switch to asynchronous export stack.
6476 ((eq key ?&) '(stack))
6477 ;; Toggle options: C-b (2) C-v (22) C-s (19) C-f (6) C-a (1).
6478 ((memq key '(2 22 19 6 1))
6479 (org-export--dispatch-ui
6480 (let ((option (case key (2 'body) (22 'visible) (19 'subtree)
6481 (6 'force) (1 'async))))
6482 (if (memq option options) (remq option options)
6483 (cons option options)))
6484 first-key expertp))
6485 ;; Action selected: Send key and options back to
6486 ;; `org-export-dispatch'.
6487 ((or first-key (functionp (nth 2 (assq key entries))))
6488 (cons (cond
6489 ((not first-key) (nth 2 (assq key entries)))
6490 ;; Publishing actions are hard-coded. Send a special
6491 ;; signal to `org-export-dispatch'.
6492 ((eq first-key ?P)
6493 (case key
6494 (?f 'publish-current-file)
6495 (?p 'publish-current-project)
6496 (?x 'publish-choose-project)
6497 (?a 'publish-all)))
6498 ;; Return first action associated to FIRST-KEY + KEY
6499 ;; path. Indeed, derived backends can share the same
6500 ;; FIRST-KEY.
6501 (t (catch 'found
6502 (mapc (lambda (entry)
6503 (let ((match (assq key (nth 2 entry))))
6504 (when match (throw 'found (nth 2 match)))))
6505 (member (assq first-key entries) entries)))))
6506 options))
6507 ;; Otherwise, enter sub-menu.
6508 (t (org-export--dispatch-ui options key expertp)))))
6512 (provide 'ox)
6514 ;; Local variables:
6515 ;; generated-autoload-file: "org-loaddefs.el"
6516 ;; End:
6518 ;;; ox.el ends here