Merge branch 'maint'
[org-mode.git] / lisp / ox.el
blob0da9bc25aa0a8fcd3d3ceca4af3b5e7fbd0170b9
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 :unnumbered-headline-id ,(org-export--collect-unnumbered-headline-id data info)
1978 :exported-data ,(make-hash-table :test 'eq :size 4001))
1979 info))
1981 (defun org-export--get-min-level (data options)
1982 "Return minimum exportable headline's level in DATA.
1983 DATA is parsed tree as returned by `org-element-parse-buffer'.
1984 OPTIONS is a plist holding export options."
1985 (catch 'exit
1986 (let ((min-level 10000))
1987 (mapc
1988 (lambda (blob)
1989 (when (and (eq (org-element-type blob) 'headline)
1990 (not (org-element-property :footnote-section-p blob))
1991 (not (memq blob (plist-get options :ignore-list))))
1992 (setq min-level (min (org-element-property :level blob) min-level)))
1993 (when (= min-level 1) (throw 'exit 1)))
1994 (org-element-contents data))
1995 ;; If no headline was found, for the sake of consistency, set
1996 ;; minimum level to 1 nonetheless.
1997 (if (= min-level 10000) 1 min-level))))
1999 (defun org-export--collect-headline-numbering (data options)
2000 "Return numbering of all exportable, numbered headlines in a parse tree.
2002 DATA is the parse tree. OPTIONS is the plist holding export
2003 options.
2005 Return an alist whose key is a headline and value is its
2006 associated numbering \(in the shape of a list of numbers\) or nil
2007 for a footnotes section."
2008 (let ((numbering (make-vector org-export-max-depth 0)))
2009 (org-element-map data 'headline
2010 (lambda (headline)
2011 (when (and (org-export-numbered-headline-p headline options)
2012 (not (org-element-property :footnote-section-p headline)))
2013 (let ((relative-level
2014 (1- (org-export-get-relative-level headline options))))
2015 (cons
2016 headline
2017 (loop for n across numbering
2018 for idx from 0 to org-export-max-depth
2019 when (< idx relative-level) collect n
2020 when (= idx relative-level) collect (aset numbering idx (1+ n))
2021 when (> idx relative-level) do (aset numbering idx 0))))))
2022 options)))
2024 (defun org-export--collect-unnumbered-headline-id (data options)
2025 "Return numbering of all exportable, unnumbered headlines.
2026 DATA is the parse tree. OPTIONS is the plist holding export
2027 options. Unnumbered headlines are numbered as a function of
2028 occurrence."
2029 (let ((num 0))
2030 (org-element-map data 'headline
2031 (lambda (headline)
2032 (unless (org-export-numbered-headline-p headline options)
2033 (list headline (incf num)))))))
2035 (defun org-export--populate-ignore-list (data options)
2036 "Return list of elements and objects to ignore during export.
2037 DATA is the parse tree to traverse. OPTIONS is the plist holding
2038 export options."
2039 (let* (walk-data
2040 ;; First find trees containing a select tag, if any.
2041 (selected (org-export--selected-trees data options))
2042 ;; If a select tag is active, also ignore the section before
2043 ;; the first headline, if any.
2044 (ignore (and selected
2045 (let ((first-element (car (org-element-contents data))))
2046 (and (eq (org-element-type first-element) 'section)
2047 first-element))))
2048 (walk-data
2049 (lambda (data)
2050 ;; Collect ignored elements or objects into IGNORE-LIST.
2051 (let ((type (org-element-type data)))
2052 (if (org-export--skip-p data options selected) (push data ignore)
2053 (if (and (eq type 'headline)
2054 (eq (plist-get options :with-archived-trees) 'headline)
2055 (org-element-property :archivedp data))
2056 ;; If headline is archived but tree below has
2057 ;; to be skipped, add it to ignore list.
2058 (dolist (element (org-element-contents data))
2059 (push element ignore))
2060 ;; Move into secondary string, if any.
2061 (let ((sec-prop
2062 (cdr (assq type org-element-secondary-value-alist))))
2063 (when sec-prop
2064 (mapc walk-data (org-element-property sec-prop data))))
2065 ;; Move into recursive objects/elements.
2066 (mapc walk-data (org-element-contents data))))))))
2067 ;; Main call.
2068 (funcall walk-data data)
2069 ;; Return value.
2070 ignore))
2072 (defun org-export--selected-trees (data info)
2073 "Return list of headlines and inlinetasks with a select tag in their tree.
2074 DATA is parsed data as returned by `org-element-parse-buffer'.
2075 INFO is a plist holding export options."
2076 (let* (selected-trees
2077 walk-data ; For byte-compiler.
2078 (walk-data
2079 (function
2080 (lambda (data genealogy)
2081 (let ((type (org-element-type data)))
2082 (cond
2083 ((memq type '(headline inlinetask))
2084 (let ((tags (org-element-property :tags data)))
2085 (if (loop for tag in (plist-get info :select-tags)
2086 thereis (member tag tags))
2087 ;; When a select tag is found, mark full
2088 ;; genealogy and every headline within the tree
2089 ;; as acceptable.
2090 (setq selected-trees
2091 (append
2092 genealogy
2093 (org-element-map data '(headline inlinetask)
2094 'identity)
2095 selected-trees))
2096 ;; If at a headline, continue searching in tree,
2097 ;; recursively.
2098 (when (eq type 'headline)
2099 (mapc (lambda (el)
2100 (funcall walk-data el (cons data genealogy)))
2101 (org-element-contents data))))))
2102 ((or (eq type 'org-data)
2103 (memq type org-element-greater-elements))
2104 (mapc (lambda (el) (funcall walk-data el genealogy))
2105 (org-element-contents data)))))))))
2106 (funcall walk-data data nil)
2107 selected-trees))
2109 (defun org-export--skip-p (blob options selected)
2110 "Non-nil when element or object BLOB should be skipped during export.
2111 OPTIONS is the plist holding export options. SELECTED, when
2112 non-nil, is a list of headlines or inlinetasks belonging to
2113 a tree with a select tag."
2114 (case (org-element-type blob)
2115 (clock (not (plist-get options :with-clocks)))
2116 (drawer
2117 (let ((with-drawers-p (plist-get options :with-drawers)))
2118 (or (not with-drawers-p)
2119 (and (consp with-drawers-p)
2120 ;; If `:with-drawers' value starts with `not', ignore
2121 ;; every drawer whose name belong to that list.
2122 ;; Otherwise, ignore drawers whose name isn't in that
2123 ;; list.
2124 (let ((name (org-element-property :drawer-name blob)))
2125 (if (eq (car with-drawers-p) 'not)
2126 (member-ignore-case name (cdr with-drawers-p))
2127 (not (member-ignore-case name with-drawers-p))))))))
2128 (fixed-width (not (plist-get options :with-fixed-width)))
2129 ((footnote-definition footnote-reference)
2130 (not (plist-get options :with-footnotes)))
2131 ((headline inlinetask)
2132 (let ((with-tasks (plist-get options :with-tasks))
2133 (todo (org-element-property :todo-keyword blob))
2134 (todo-type (org-element-property :todo-type blob))
2135 (archived (plist-get options :with-archived-trees))
2136 (tags (org-element-property :tags blob)))
2138 (and (eq (org-element-type blob) 'inlinetask)
2139 (not (plist-get options :with-inlinetasks)))
2140 ;; Ignore subtrees with an exclude tag.
2141 (loop for k in (plist-get options :exclude-tags)
2142 thereis (member k tags))
2143 ;; When a select tag is present in the buffer, ignore any tree
2144 ;; without it.
2145 (and selected (not (memq blob selected)))
2146 ;; Ignore commented sub-trees.
2147 (org-element-property :commentedp blob)
2148 ;; Ignore archived subtrees if `:with-archived-trees' is nil.
2149 (and (not archived) (org-element-property :archivedp blob))
2150 ;; Ignore tasks, if specified by `:with-tasks' property.
2151 (and todo
2152 (or (not with-tasks)
2153 (and (memq with-tasks '(todo done))
2154 (not (eq todo-type with-tasks)))
2155 (and (consp with-tasks) (not (member todo with-tasks))))))))
2156 ((latex-environment latex-fragment) (not (plist-get options :with-latex)))
2157 (node-property
2158 (let ((properties-set (plist-get options :with-properties)))
2159 (cond ((null properties-set) t)
2160 ((consp properties-set)
2161 (not (member-ignore-case (org-element-property :key blob)
2162 properties-set))))))
2163 (planning (not (plist-get options :with-planning)))
2164 (property-drawer (not (plist-get options :with-properties)))
2165 (statistics-cookie (not (plist-get options :with-statistics-cookies)))
2166 (table (not (plist-get options :with-tables)))
2167 (table-cell
2168 (and (org-export-table-has-special-column-p
2169 (org-export-get-parent-table blob))
2170 (not (org-export-get-previous-element blob options))))
2171 (table-row (org-export-table-row-is-special-p blob options))
2172 (timestamp
2173 ;; `:with-timestamps' only applies to isolated timestamps
2174 ;; objects, i.e. timestamp objects in a paragraph containing only
2175 ;; timestamps and whitespaces.
2176 (when (let ((parent (org-export-get-parent-element blob)))
2177 (and (memq (org-element-type parent) '(paragraph verse-block))
2178 (not (org-element-map parent
2179 (cons 'plain-text
2180 (remq 'timestamp org-element-all-objects))
2181 (lambda (obj)
2182 (or (not (stringp obj)) (org-string-nw-p obj)))
2183 options t))))
2184 (case (plist-get options :with-timestamps)
2185 ('nil t)
2186 (active
2187 (not (memq (org-element-property :type blob) '(active active-range))))
2188 (inactive
2189 (not (memq (org-element-property :type blob)
2190 '(inactive inactive-range)))))))))
2193 ;;; The Transcoder
2195 ;; `org-export-data' reads a parse tree (obtained with, i.e.
2196 ;; `org-element-parse-buffer') and transcodes it into a specified
2197 ;; back-end output. It takes care of filtering out elements or
2198 ;; objects according to export options and organizing the output blank
2199 ;; lines and white space are preserved. The function memoizes its
2200 ;; results, so it is cheap to call it within transcoders.
2202 ;; It is possible to modify locally the back-end used by
2203 ;; `org-export-data' or even use a temporary back-end by using
2204 ;; `org-export-data-with-backend'.
2206 ;; Internally, three functions handle the filtering of objects and
2207 ;; elements during the export. In particular,
2208 ;; `org-export-ignore-element' marks an element or object so future
2209 ;; parse tree traversals skip it and `org-export-expand' transforms
2210 ;; the others back into their original shape.
2212 ;; `org-export-transcoder' is an accessor returning appropriate
2213 ;; translator function for a given element or object.
2215 (defun org-export-transcoder (blob info)
2216 "Return appropriate transcoder for BLOB.
2217 INFO is a plist containing export directives."
2218 (let ((type (org-element-type blob)))
2219 ;; Return contents only for complete parse trees.
2220 (if (eq type 'org-data) (lambda (blob contents info) contents)
2221 (let ((transcoder (cdr (assq type (plist-get info :translate-alist)))))
2222 (and (functionp transcoder) transcoder)))))
2224 (defun org-export-data (data info)
2225 "Convert DATA into current back-end format.
2227 DATA is a parse tree, an element or an object or a secondary
2228 string. INFO is a plist holding export options.
2230 Return a string."
2231 (or (gethash data (plist-get info :exported-data))
2232 (let* ((type (org-element-type data))
2233 (results
2234 (cond
2235 ;; Ignored element/object.
2236 ((memq data (plist-get info :ignore-list)) nil)
2237 ;; Plain text.
2238 ((eq type 'plain-text)
2239 (org-export-filter-apply-functions
2240 (plist-get info :filter-plain-text)
2241 (let ((transcoder (org-export-transcoder data info)))
2242 (if transcoder (funcall transcoder data info) data))
2243 info))
2244 ;; Secondary string.
2245 ((not type)
2246 (mapconcat (lambda (obj) (org-export-data obj info)) data ""))
2247 ;; Element/Object without contents or, as a special
2248 ;; case, headline with archive tag and archived trees
2249 ;; restricted to title only.
2250 ((or (not (org-element-contents data))
2251 (and (eq type 'headline)
2252 (eq (plist-get info :with-archived-trees) 'headline)
2253 (org-element-property :archivedp data)))
2254 (let ((transcoder (org-export-transcoder data info)))
2255 (or (and (functionp transcoder)
2256 (funcall transcoder data nil info))
2257 ;; Export snippets never return a nil value so
2258 ;; that white spaces following them are never
2259 ;; ignored.
2260 (and (eq type 'export-snippet) ""))))
2261 ;; Element/Object with contents.
2263 (let ((transcoder (org-export-transcoder data info)))
2264 (when transcoder
2265 (let* ((greaterp (memq type org-element-greater-elements))
2266 (objectp
2267 (and (not greaterp)
2268 (memq type org-element-recursive-objects)))
2269 (contents
2270 (mapconcat
2271 (lambda (element) (org-export-data element info))
2272 (org-element-contents
2273 (if (or greaterp objectp) data
2274 ;; Elements directly containing
2275 ;; objects must have their indentation
2276 ;; normalized first.
2277 (org-element-normalize-contents
2278 data
2279 ;; When normalizing contents of the
2280 ;; first paragraph in an item or
2281 ;; a footnote definition, ignore
2282 ;; first line's indentation: there is
2283 ;; none and it might be misleading.
2284 (when (eq type 'paragraph)
2285 (let ((parent (org-export-get-parent data)))
2286 (and
2287 (eq (car (org-element-contents parent))
2288 data)
2289 (memq (org-element-type parent)
2290 '(footnote-definition item))))))))
2291 "")))
2292 (funcall transcoder data
2293 (if (not greaterp) contents
2294 (org-element-normalize-string contents))
2295 info))))))))
2296 ;; Final result will be memoized before being returned.
2297 (puthash
2298 data
2299 (cond
2300 ((not results) "")
2301 ((memq type '(org-data plain-text nil)) results)
2302 ;; Append the same white space between elements or objects
2303 ;; as in the original buffer, and call appropriate filters.
2305 (let ((results
2306 (org-export-filter-apply-functions
2307 (plist-get info (intern (format ":filter-%s" type)))
2308 (let ((post-blank (or (org-element-property :post-blank data)
2309 0)))
2310 (if (memq type org-element-all-elements)
2311 (concat (org-element-normalize-string results)
2312 (make-string post-blank ?\n))
2313 (concat results (make-string post-blank ?\s))))
2314 info)))
2315 results)))
2316 (plist-get info :exported-data)))))
2318 (defun org-export-data-with-backend (data backend info)
2319 "Convert DATA into BACKEND format.
2321 DATA is an element, an object, a secondary string or a string.
2322 BACKEND is a symbol. INFO is a plist used as a communication
2323 channel.
2325 Unlike to `org-export-with-backend', this function will
2326 recursively convert DATA using BACKEND translation table."
2327 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
2328 (org-export-data
2329 data
2330 ;; Set-up a new communication channel with translations defined in
2331 ;; BACKEND as the translate table and a new hash table for
2332 ;; memoization.
2333 (org-combine-plists
2334 info
2335 (list :back-end backend
2336 :translate-alist (org-export-get-all-transcoders backend)
2337 ;; Size of the hash table is reduced since this function
2338 ;; will probably be used on small trees.
2339 :exported-data (make-hash-table :test 'eq :size 401)))))
2341 (defun org-export-remove-uninterpreted-data (data info)
2342 "Change uninterpreted elements back into Org syntax.
2343 DATA is the parse tree. INFO is a plist containing export
2344 options. Each uninterpreted element or object is changed back
2345 into a string. Contents, if any, are not modified. The parse
2346 tree is modified by side effect and returned by the function."
2347 (org-export--remove-uninterpreted-data-1 data info)
2348 (dolist (prop '(:author :date :title))
2349 (plist-put info
2350 prop
2351 (org-export--remove-uninterpreted-data-1
2352 (plist-get info prop)
2353 info))))
2355 (defun org-export--remove-uninterpreted-data-1 (data info)
2356 "Change uninterpreted elements back into Org syntax.
2357 DATA is a parse tree or a secondary string. INFO is a plist
2358 containing export options. It is modified by side effect and
2359 returned by the function."
2360 (org-element-map data
2361 '(entity bold italic latex-environment latex-fragment strike-through
2362 subscript superscript underline)
2363 #'(lambda (blob)
2364 (let ((new
2365 (case (org-element-type blob)
2366 ;; ... entities...
2367 (entity
2368 (and (not (plist-get info :with-entities))
2369 (list (concat
2370 (org-export-expand blob nil)
2371 (make-string
2372 (or (org-element-property :post-blank blob) 0)
2373 ?\s)))))
2374 ;; ... emphasis...
2375 ((bold italic strike-through underline)
2376 (and (not (plist-get info :with-emphasize))
2377 (let ((marker (case (org-element-type blob)
2378 (bold "*")
2379 (italic "/")
2380 (strike-through "+")
2381 (underline "_"))))
2382 (append
2383 (list marker)
2384 (org-element-contents blob)
2385 (list (concat
2386 marker
2387 (make-string
2388 (or (org-element-property :post-blank blob)
2390 ?\s)))))))
2391 ;; ... LaTeX environments and fragments...
2392 ((latex-environment latex-fragment)
2393 (and (eq (plist-get info :with-latex) 'verbatim)
2394 (list (org-export-expand blob nil))))
2395 ;; ... sub/superscripts...
2396 ((subscript superscript)
2397 (let ((sub/super-p (plist-get info :with-sub-superscript))
2398 (bracketp (org-element-property :use-brackets-p blob)))
2399 (and (or (not sub/super-p)
2400 (and (eq sub/super-p '{}) (not bracketp)))
2401 (append
2402 (list (concat
2403 (if (eq (org-element-type blob) 'subscript)
2405 "^")
2406 (and bracketp "{")))
2407 (org-element-contents blob)
2408 (list (concat
2409 (and bracketp "}")
2410 (and (org-element-property :post-blank blob)
2411 (make-string
2412 (org-element-property :post-blank blob)
2413 ?\s)))))))))))
2414 (when new
2415 ;; Splice NEW at BLOB location in parse tree.
2416 (dolist (e new (org-element-extract-element blob))
2417 (unless (string= e "") (org-element-insert-before e blob))))))
2418 info)
2419 ;; Return modified parse tree.
2420 data)
2422 (defun org-export-expand (blob contents &optional with-affiliated)
2423 "Expand a parsed element or object to its original state.
2425 BLOB is either an element or an object. CONTENTS is its
2426 contents, as a string or nil.
2428 When optional argument WITH-AFFILIATED is non-nil, add affiliated
2429 keywords before output."
2430 (let ((type (org-element-type blob)))
2431 (concat (and with-affiliated (memq type org-element-all-elements)
2432 (org-element--interpret-affiliated-keywords blob))
2433 (funcall (intern (format "org-element-%s-interpreter" type))
2434 blob contents))))
2436 (defun org-export-ignore-element (element info)
2437 "Add ELEMENT to `:ignore-list' in INFO.
2439 Any element in `:ignore-list' will be skipped when using
2440 `org-element-map'. INFO is modified by side effects."
2441 (plist-put info :ignore-list (cons element (plist-get info :ignore-list))))
2445 ;;; The Filter System
2447 ;; Filters allow end-users to tweak easily the transcoded output.
2448 ;; They are the functional counterpart of hooks, as every filter in
2449 ;; a set is applied to the return value of the previous one.
2451 ;; Every set is back-end agnostic. Although, a filter is always
2452 ;; called, in addition to the string it applies to, with the back-end
2453 ;; used as argument, so it's easy for the end-user to add back-end
2454 ;; specific filters in the set. The communication channel, as
2455 ;; a plist, is required as the third argument.
2457 ;; From the developer side, filters sets can be installed in the
2458 ;; process with the help of `org-export-define-backend', which
2459 ;; internally stores filters as an alist. Each association has a key
2460 ;; among the following symbols and a function or a list of functions
2461 ;; as value.
2463 ;; - `:filter-options' applies to the property list containing export
2464 ;; options. Unlike to other filters, functions in this list accept
2465 ;; two arguments instead of three: the property list containing
2466 ;; export options and the back-end. Users can set its value through
2467 ;; `org-export-filter-options-functions' variable.
2469 ;; - `:filter-parse-tree' applies directly to the complete parsed
2470 ;; tree. Users can set it through
2471 ;; `org-export-filter-parse-tree-functions' variable.
2473 ;; - `:filter-body' applies to the body of the output, before template
2474 ;; translator chimes in. Users can set it through
2475 ;; `org-export-filter-body-functions' variable.
2477 ;; - `:filter-final-output' applies to the final transcoded string.
2478 ;; Users can set it with `org-export-filter-final-output-functions'
2479 ;; variable.
2481 ;; - `:filter-plain-text' applies to any string not recognized as Org
2482 ;; syntax. `org-export-filter-plain-text-functions' allows users to
2483 ;; configure it.
2485 ;; - `:filter-TYPE' applies on the string returned after an element or
2486 ;; object of type TYPE has been transcoded. A user can modify
2487 ;; `org-export-filter-TYPE-functions' to install these filters.
2489 ;; All filters sets are applied with
2490 ;; `org-export-filter-apply-functions' function. Filters in a set are
2491 ;; applied in a LIFO fashion. It allows developers to be sure that
2492 ;; their filters will be applied first.
2494 ;; Filters properties are installed in communication channel with
2495 ;; `org-export-install-filters' function.
2497 ;; Eventually, two hooks (`org-export-before-processing-hook' and
2498 ;; `org-export-before-parsing-hook') are run at the beginning of the
2499 ;; export process and just before parsing to allow for heavy structure
2500 ;; modifications.
2503 ;;;; Hooks
2505 (defvar org-export-before-processing-hook nil
2506 "Hook run at the beginning of the export process.
2508 This is run before include keywords and macros are expanded and
2509 Babel code blocks executed, on a copy of the original buffer
2510 being exported. Visibility and narrowing are preserved. Point
2511 is at the beginning of the buffer.
2513 Every function in this hook will be called with one argument: the
2514 back-end currently used, as a symbol.")
2516 (defvar org-export-before-parsing-hook nil
2517 "Hook run before parsing an export buffer.
2519 This is run after include keywords and macros have been expanded
2520 and Babel code blocks executed, on a copy of the original buffer
2521 being exported. Visibility and narrowing are preserved. Point
2522 is at the beginning of the buffer.
2524 Every function in this hook will be called with one argument: the
2525 back-end currently used, as a symbol.")
2528 ;;;; Special Filters
2530 (defvar org-export-filter-options-functions nil
2531 "List of functions applied to the export options.
2532 Each filter is called with two arguments: the export options, as
2533 a plist, and the back-end, as a symbol. It must return
2534 a property list containing export options.")
2536 (defvar org-export-filter-parse-tree-functions nil
2537 "List of functions applied to the parsed tree.
2538 Each filter is called with three arguments: the parse tree, as
2539 returned by `org-element-parse-buffer', the back-end, as
2540 a symbol, and the communication channel, as a plist. It must
2541 return the modified parse tree to transcode.")
2543 (defvar org-export-filter-plain-text-functions nil
2544 "List of functions applied to plain text.
2545 Each filter is called with three arguments: a string which
2546 contains no Org syntax, the back-end, as a symbol, and the
2547 communication channel, as a plist. It must return a string or
2548 nil.")
2550 (defvar org-export-filter-body-functions nil
2551 "List of functions applied to transcoded body.
2552 Each filter is called with three arguments: a string which
2553 contains no Org syntax, the back-end, as a symbol, and the
2554 communication channel, as a plist. It must return a string or
2555 nil.")
2557 (defvar org-export-filter-final-output-functions nil
2558 "List of functions applied to the transcoded string.
2559 Each filter is called with three arguments: the full transcoded
2560 string, the back-end, as a symbol, and the communication channel,
2561 as a plist. It must return a string that will be used as the
2562 final export output.")
2565 ;;;; Elements Filters
2567 (defvar org-export-filter-babel-call-functions nil
2568 "List of functions applied to a transcoded babel-call.
2569 Each filter is called with three arguments: the transcoded data,
2570 as a string, the back-end, as a symbol, and the communication
2571 channel, as a plist. It must return a string or nil.")
2573 (defvar org-export-filter-center-block-functions nil
2574 "List of functions applied to a transcoded center block.
2575 Each filter is called with three arguments: the transcoded data,
2576 as a string, the back-end, as a symbol, and the communication
2577 channel, as a plist. It must return a string or nil.")
2579 (defvar org-export-filter-clock-functions nil
2580 "List of functions applied to a transcoded clock.
2581 Each filter is called with three arguments: the transcoded data,
2582 as a string, the back-end, as a symbol, and the communication
2583 channel, as a plist. It must return a string or nil.")
2585 (defvar org-export-filter-comment-functions nil
2586 "List of functions applied to a transcoded comment.
2587 Each filter is called with three arguments: the transcoded data,
2588 as a string, the back-end, as a symbol, and the communication
2589 channel, as a plist. It must return a string or nil.")
2591 (defvar org-export-filter-comment-block-functions nil
2592 "List of functions applied to a transcoded comment-block.
2593 Each filter is called with three arguments: the transcoded data,
2594 as a string, the back-end, as a symbol, and the communication
2595 channel, as a plist. It must return a string or nil.")
2597 (defvar org-export-filter-diary-sexp-functions nil
2598 "List of functions applied to a transcoded diary-sexp.
2599 Each filter is called with three arguments: the transcoded data,
2600 as a string, the back-end, as a symbol, and the communication
2601 channel, as a plist. It must return a string or nil.")
2603 (defvar org-export-filter-drawer-functions nil
2604 "List of functions applied to a transcoded drawer.
2605 Each filter is called with three arguments: the transcoded data,
2606 as a string, the back-end, as a symbol, and the communication
2607 channel, as a plist. It must return a string or nil.")
2609 (defvar org-export-filter-dynamic-block-functions nil
2610 "List of functions applied to a transcoded dynamic-block.
2611 Each filter is called with three arguments: the transcoded data,
2612 as a string, the back-end, as a symbol, and the communication
2613 channel, as a plist. It must return a string or nil.")
2615 (defvar org-export-filter-example-block-functions nil
2616 "List of functions applied to a transcoded example-block.
2617 Each filter is called with three arguments: the transcoded data,
2618 as a string, the back-end, as a symbol, and the communication
2619 channel, as a plist. It must return a string or nil.")
2621 (defvar org-export-filter-export-block-functions nil
2622 "List of functions applied to a transcoded export-block.
2623 Each filter is called with three arguments: the transcoded data,
2624 as a string, the back-end, as a symbol, and the communication
2625 channel, as a plist. It must return a string or nil.")
2627 (defvar org-export-filter-fixed-width-functions nil
2628 "List of functions applied to a transcoded fixed-width.
2629 Each filter is called with three arguments: the transcoded data,
2630 as a string, the back-end, as a symbol, and the communication
2631 channel, as a plist. It must return a string or nil.")
2633 (defvar org-export-filter-footnote-definition-functions nil
2634 "List of functions applied to a transcoded footnote-definition.
2635 Each filter is called with three arguments: the transcoded data,
2636 as a string, the back-end, as a symbol, and the communication
2637 channel, as a plist. It must return a string or nil.")
2639 (defvar org-export-filter-headline-functions nil
2640 "List of functions applied to a transcoded headline.
2641 Each filter is called with three arguments: the transcoded data,
2642 as a string, the back-end, as a symbol, and the communication
2643 channel, as a plist. It must return a string or nil.")
2645 (defvar org-export-filter-horizontal-rule-functions nil
2646 "List of functions applied to a transcoded horizontal-rule.
2647 Each filter is called with three arguments: the transcoded data,
2648 as a string, the back-end, as a symbol, and the communication
2649 channel, as a plist. It must return a string or nil.")
2651 (defvar org-export-filter-inlinetask-functions nil
2652 "List of functions applied to a transcoded inlinetask.
2653 Each filter is called with three arguments: the transcoded data,
2654 as a string, the back-end, as a symbol, and the communication
2655 channel, as a plist. It must return a string or nil.")
2657 (defvar org-export-filter-item-functions nil
2658 "List of functions applied to a transcoded item.
2659 Each filter is called with three arguments: the transcoded data,
2660 as a string, the back-end, as a symbol, and the communication
2661 channel, as a plist. It must return a string or nil.")
2663 (defvar org-export-filter-keyword-functions nil
2664 "List of functions applied to a transcoded keyword.
2665 Each filter is called with three arguments: the transcoded data,
2666 as a string, the back-end, as a symbol, and the communication
2667 channel, as a plist. It must return a string or nil.")
2669 (defvar org-export-filter-latex-environment-functions nil
2670 "List of functions applied to a transcoded latex-environment.
2671 Each filter is called with three arguments: the transcoded data,
2672 as a string, the back-end, as a symbol, and the communication
2673 channel, as a plist. It must return a string or nil.")
2675 (defvar org-export-filter-node-property-functions nil
2676 "List of functions applied to a transcoded node-property.
2677 Each filter is called with three arguments: the transcoded data,
2678 as a string, the back-end, as a symbol, and the communication
2679 channel, as a plist. It must return a string or nil.")
2681 (defvar org-export-filter-paragraph-functions nil
2682 "List of functions applied to a transcoded paragraph.
2683 Each filter is called with three arguments: the transcoded data,
2684 as a string, the back-end, as a symbol, and the communication
2685 channel, as a plist. It must return a string or nil.")
2687 (defvar org-export-filter-plain-list-functions nil
2688 "List of functions applied to a transcoded plain-list.
2689 Each filter is called with three arguments: the transcoded data,
2690 as a string, the back-end, as a symbol, and the communication
2691 channel, as a plist. It must return a string or nil.")
2693 (defvar org-export-filter-planning-functions nil
2694 "List of functions applied to a transcoded planning.
2695 Each filter is called with three arguments: the transcoded data,
2696 as a string, the back-end, as a symbol, and the communication
2697 channel, as a plist. It must return a string or nil.")
2699 (defvar org-export-filter-property-drawer-functions nil
2700 "List of functions applied to a transcoded property-drawer.
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-quote-block-functions nil
2706 "List of functions applied to a transcoded quote block.
2707 Each filter is called with three arguments: the transcoded quote
2708 data, as a string, the back-end, as a symbol, and the
2709 communication channel, as a plist. It must return a string or
2710 nil.")
2712 (defvar org-export-filter-section-functions nil
2713 "List of functions applied to a transcoded section.
2714 Each filter is called with three arguments: the transcoded data,
2715 as a string, the back-end, as a symbol, and the communication
2716 channel, as a plist. It must return a string or nil.")
2718 (defvar org-export-filter-special-block-functions nil
2719 "List of functions applied to a transcoded special block.
2720 Each filter is called with three arguments: the transcoded data,
2721 as a string, the back-end, as a symbol, and the communication
2722 channel, as a plist. It must return a string or nil.")
2724 (defvar org-export-filter-src-block-functions nil
2725 "List of functions applied to a transcoded src-block.
2726 Each filter is called with three arguments: the transcoded data,
2727 as a string, the back-end, as a symbol, and the communication
2728 channel, as a plist. It must return a string or nil.")
2730 (defvar org-export-filter-table-functions nil
2731 "List of functions applied to a transcoded table.
2732 Each filter is called with three arguments: the transcoded data,
2733 as a string, the back-end, as a symbol, and the communication
2734 channel, as a plist. It must return a string or nil.")
2736 (defvar org-export-filter-table-cell-functions nil
2737 "List of functions applied to a transcoded table-cell.
2738 Each filter is called with three arguments: the transcoded data,
2739 as a string, the back-end, as a symbol, and the communication
2740 channel, as a plist. It must return a string or nil.")
2742 (defvar org-export-filter-table-row-functions nil
2743 "List of functions applied to a transcoded table-row.
2744 Each filter is called with three arguments: the transcoded data,
2745 as a string, the back-end, as a symbol, and the communication
2746 channel, as a plist. It must return a string or nil.")
2748 (defvar org-export-filter-verse-block-functions nil
2749 "List of functions applied to a transcoded verse block.
2750 Each filter is called with three arguments: the transcoded data,
2751 as a string, the back-end, as a symbol, and the communication
2752 channel, as a plist. It must return a string or nil.")
2755 ;;;; Objects Filters
2757 (defvar org-export-filter-bold-functions nil
2758 "List of functions applied to transcoded bold text.
2759 Each filter is called with three arguments: the transcoded data,
2760 as a string, the back-end, as a symbol, and the communication
2761 channel, as a plist. It must return a string or nil.")
2763 (defvar org-export-filter-code-functions nil
2764 "List of functions applied to transcoded code text.
2765 Each filter is called with three arguments: the transcoded data,
2766 as a string, the back-end, as a symbol, and the communication
2767 channel, as a plist. It must return a string or nil.")
2769 (defvar org-export-filter-entity-functions nil
2770 "List of functions applied to a transcoded entity.
2771 Each filter is called with three arguments: the transcoded data,
2772 as a string, the back-end, as a symbol, and the communication
2773 channel, as a plist. It must return a string or nil.")
2775 (defvar org-export-filter-export-snippet-functions nil
2776 "List of functions applied to a transcoded export-snippet.
2777 Each filter is called with three arguments: the transcoded data,
2778 as a string, the back-end, as a symbol, and the communication
2779 channel, as a plist. It must return a string or nil.")
2781 (defvar org-export-filter-footnote-reference-functions nil
2782 "List of functions applied to a transcoded footnote-reference.
2783 Each filter is called with three arguments: the transcoded data,
2784 as a string, the back-end, as a symbol, and the communication
2785 channel, as a plist. It must return a string or nil.")
2787 (defvar org-export-filter-inline-babel-call-functions nil
2788 "List of functions applied to a transcoded inline-babel-call.
2789 Each filter is called with three arguments: the transcoded data,
2790 as a string, the back-end, as a symbol, and the communication
2791 channel, as a plist. It must return a string or nil.")
2793 (defvar org-export-filter-inline-src-block-functions nil
2794 "List of functions applied to a transcoded inline-src-block.
2795 Each filter is called with three arguments: the transcoded data,
2796 as a string, the back-end, as a symbol, and the communication
2797 channel, as a plist. It must return a string or nil.")
2799 (defvar org-export-filter-italic-functions nil
2800 "List of functions applied to transcoded italic text.
2801 Each filter is called with three arguments: the transcoded data,
2802 as a string, the back-end, as a symbol, and the communication
2803 channel, as a plist. It must return a string or nil.")
2805 (defvar org-export-filter-latex-fragment-functions nil
2806 "List of functions applied to a transcoded latex-fragment.
2807 Each filter is called with three arguments: the transcoded data,
2808 as a string, the back-end, as a symbol, and the communication
2809 channel, as a plist. It must return a string or nil.")
2811 (defvar org-export-filter-line-break-functions nil
2812 "List of functions applied to a transcoded line-break.
2813 Each filter is called with three arguments: the transcoded data,
2814 as a string, the back-end, as a symbol, and the communication
2815 channel, as a plist. It must return a string or nil.")
2817 (defvar org-export-filter-link-functions nil
2818 "List of functions applied to a transcoded link.
2819 Each filter is called with three arguments: the transcoded data,
2820 as a string, the back-end, as a symbol, and the communication
2821 channel, as a plist. It must return a string or nil.")
2823 (defvar org-export-filter-radio-target-functions nil
2824 "List of functions applied to a transcoded radio-target.
2825 Each filter is called with three arguments: the transcoded data,
2826 as a string, the back-end, as a symbol, and the communication
2827 channel, as a plist. It must return a string or nil.")
2829 (defvar org-export-filter-statistics-cookie-functions nil
2830 "List of functions applied to a transcoded statistics-cookie.
2831 Each filter is called with three arguments: the transcoded data,
2832 as a string, the back-end, as a symbol, and the communication
2833 channel, as a plist. It must return a string or nil.")
2835 (defvar org-export-filter-strike-through-functions nil
2836 "List of functions applied to transcoded strike-through text.
2837 Each filter is called with three arguments: the transcoded data,
2838 as a string, the back-end, as a symbol, and the communication
2839 channel, as a plist. It must return a string or nil.")
2841 (defvar org-export-filter-subscript-functions nil
2842 "List of functions applied to a transcoded subscript.
2843 Each filter is called with three arguments: the transcoded data,
2844 as a string, the back-end, as a symbol, and the communication
2845 channel, as a plist. It must return a string or nil.")
2847 (defvar org-export-filter-superscript-functions nil
2848 "List of functions applied to a transcoded superscript.
2849 Each filter is called with three arguments: the transcoded data,
2850 as a string, the back-end, as a symbol, and the communication
2851 channel, as a plist. It must return a string or nil.")
2853 (defvar org-export-filter-target-functions nil
2854 "List of functions applied to a transcoded target.
2855 Each filter is called with three arguments: the transcoded data,
2856 as a string, the back-end, as a symbol, and the communication
2857 channel, as a plist. It must return a string or nil.")
2859 (defvar org-export-filter-timestamp-functions nil
2860 "List of functions applied to a transcoded timestamp.
2861 Each filter is called with three arguments: the transcoded data,
2862 as a string, the back-end, as a symbol, and the communication
2863 channel, as a plist. It must return a string or nil.")
2865 (defvar org-export-filter-underline-functions nil
2866 "List of functions applied to transcoded underline text.
2867 Each filter is called with three arguments: the transcoded data,
2868 as a string, the back-end, as a symbol, and the communication
2869 channel, as a plist. It must return a string or nil.")
2871 (defvar org-export-filter-verbatim-functions nil
2872 "List of functions applied to transcoded verbatim text.
2873 Each filter is called with three arguments: the transcoded data,
2874 as a string, the back-end, as a symbol, and the communication
2875 channel, as a plist. It must return a string or nil.")
2878 ;;;; Filters Tools
2880 ;; Internal function `org-export-install-filters' installs filters
2881 ;; hard-coded in back-ends (developer filters) and filters from global
2882 ;; variables (user filters) in the communication channel.
2884 ;; Internal function `org-export-filter-apply-functions' takes care
2885 ;; about applying each filter in order to a given data. It ignores
2886 ;; filters returning a nil value but stops whenever a filter returns
2887 ;; an empty string.
2889 (defun org-export-filter-apply-functions (filters value info)
2890 "Call every function in FILTERS.
2892 Functions are called with arguments VALUE, current export
2893 back-end's name and INFO. A function returning a nil value will
2894 be skipped. If it returns the empty string, the process ends and
2895 VALUE is ignored.
2897 Call is done in a LIFO fashion, to be sure that developer
2898 specified filters, if any, are called first."
2899 (catch 'exit
2900 (let* ((backend (plist-get info :back-end))
2901 (backend-name (and backend (org-export-backend-name backend))))
2902 (dolist (filter filters value)
2903 (let ((result (funcall filter value backend-name info)))
2904 (cond ((not result) value)
2905 ((equal value "") (throw 'exit nil))
2906 (t (setq value result))))))))
2908 (defun org-export-install-filters (info)
2909 "Install filters properties in communication channel.
2910 INFO is a plist containing the current communication channel.
2911 Return the updated communication channel."
2912 (let (plist)
2913 ;; Install user-defined filters with `org-export-filters-alist'
2914 ;; and filters already in INFO (through ext-plist mechanism).
2915 (mapc (lambda (p)
2916 (let* ((prop (car p))
2917 (info-value (plist-get info prop))
2918 (default-value (symbol-value (cdr p))))
2919 (setq plist
2920 (plist-put plist prop
2921 ;; Filters in INFO will be called
2922 ;; before those user provided.
2923 (append (if (listp info-value) info-value
2924 (list info-value))
2925 default-value)))))
2926 org-export-filters-alist)
2927 ;; Prepend back-end specific filters to that list.
2928 (mapc (lambda (p)
2929 ;; Single values get consed, lists are appended.
2930 (let ((key (car p)) (value (cdr p)))
2931 (when value
2932 (setq plist
2933 (plist-put
2934 plist key
2935 (if (atom value) (cons value (plist-get plist key))
2936 (append value (plist-get plist key))))))))
2937 (org-export-get-all-filters (plist-get info :back-end)))
2938 ;; Return new communication channel.
2939 (org-combine-plists info plist)))
2943 ;;; Core functions
2945 ;; This is the room for the main function, `org-export-as', along with
2946 ;; its derivative, `org-export-string-as'.
2947 ;; `org-export--copy-to-kill-ring-p' determines if output of these
2948 ;; function should be added to kill ring.
2950 ;; Note that `org-export-as' doesn't really parse the current buffer,
2951 ;; but a copy of it (with the same buffer-local variables and
2952 ;; visibility), where macros and include keywords are expanded and
2953 ;; Babel blocks are executed, if appropriate.
2954 ;; `org-export-with-buffer-copy' macro prepares that copy.
2956 ;; File inclusion is taken care of by
2957 ;; `org-export-expand-include-keyword' and
2958 ;; `org-export--prepare-file-contents'. Structure wise, including
2959 ;; a whole Org file in a buffer often makes little sense. For
2960 ;; example, if the file contains a headline and the include keyword
2961 ;; was within an item, the item should contain the headline. That's
2962 ;; why file inclusion should be done before any structure can be
2963 ;; associated to the file, that is before parsing.
2965 ;; `org-export-insert-default-template' is a command to insert
2966 ;; a default template (or a back-end specific template) at point or in
2967 ;; current subtree.
2969 (defun org-export-copy-buffer ()
2970 "Return a copy of the current buffer.
2971 The copy preserves Org buffer-local variables, visibility and
2972 narrowing."
2973 (let ((copy-buffer-fun (org-export--generate-copy-script (current-buffer)))
2974 (new-buf (generate-new-buffer (buffer-name))))
2975 (with-current-buffer new-buf
2976 (funcall copy-buffer-fun)
2977 (set-buffer-modified-p nil))
2978 new-buf))
2980 (defmacro org-export-with-buffer-copy (&rest body)
2981 "Apply BODY in a copy of the current buffer.
2982 The copy preserves local variables, visibility and contents of
2983 the original buffer. Point is at the beginning of the buffer
2984 when BODY is applied."
2985 (declare (debug t))
2986 (org-with-gensyms (buf-copy)
2987 `(let ((,buf-copy (org-export-copy-buffer)))
2988 (unwind-protect
2989 (with-current-buffer ,buf-copy
2990 (goto-char (point-min))
2991 (progn ,@body))
2992 (and (buffer-live-p ,buf-copy)
2993 ;; Kill copy without confirmation.
2994 (progn (with-current-buffer ,buf-copy
2995 (restore-buffer-modified-p nil))
2996 (kill-buffer ,buf-copy)))))))
2998 (defun org-export--generate-copy-script (buffer)
2999 "Generate a function duplicating BUFFER.
3001 The copy will preserve local variables, visibility, contents and
3002 narrowing of the original buffer. If a region was active in
3003 BUFFER, contents will be narrowed to that region instead.
3005 The resulting function can be evaluated at a later time, from
3006 another buffer, effectively cloning the original buffer there.
3008 The function assumes BUFFER's major mode is `org-mode'."
3009 (with-current-buffer buffer
3010 `(lambda ()
3011 (let ((inhibit-modification-hooks t))
3012 ;; Set major mode. Ignore `org-mode-hook' as it has been run
3013 ;; already in BUFFER.
3014 (let ((org-mode-hook nil) (org-inhibit-startup t)) (org-mode))
3015 ;; Copy specific buffer local variables and variables set
3016 ;; through BIND keywords.
3017 ,@(let ((bound-variables (org-export--list-bound-variables))
3018 vars)
3019 (dolist (entry (buffer-local-variables (buffer-base-buffer)) vars)
3020 (when (consp entry)
3021 (let ((var (car entry))
3022 (val (cdr entry)))
3023 (and (not (memq var org-export-ignored-local-variables))
3024 (or (memq var
3025 '(default-directory
3026 buffer-file-name
3027 buffer-file-coding-system))
3028 (assq var bound-variables)
3029 (string-match "^\\(org-\\|orgtbl-\\)"
3030 (symbol-name var)))
3031 ;; Skip unreadable values, as they cannot be
3032 ;; sent to external process.
3033 (or (not val) (ignore-errors (read (format "%S" val))))
3034 (push `(set (make-local-variable (quote ,var))
3035 (quote ,val))
3036 vars))))))
3037 ;; Whole buffer contents.
3038 (insert
3039 ,(org-with-wide-buffer
3040 (buffer-substring-no-properties
3041 (point-min) (point-max))))
3042 ;; Narrowing.
3043 ,(if (org-region-active-p)
3044 `(narrow-to-region ,(region-beginning) ,(region-end))
3045 `(narrow-to-region ,(point-min) ,(point-max)))
3046 ;; Current position of point.
3047 (goto-char ,(point))
3048 ;; Overlays with invisible property.
3049 ,@(let (ov-set)
3050 (mapc
3051 (lambda (ov)
3052 (let ((invis-prop (overlay-get ov 'invisible)))
3053 (when invis-prop
3054 (push `(overlay-put
3055 (make-overlay ,(overlay-start ov)
3056 ,(overlay-end ov))
3057 'invisible (quote ,invis-prop))
3058 ov-set))))
3059 (overlays-in (point-min) (point-max)))
3060 ov-set)))))
3062 ;;;###autoload
3063 (defun org-export-as
3064 (backend &optional subtreep visible-only body-only ext-plist)
3065 "Transcode current Org buffer into BACKEND code.
3067 BACKEND is either an export back-end, as returned by, e.g.,
3068 `org-export-create-backend', or a symbol referring to
3069 a registered back-end.
3071 If narrowing is active in the current buffer, only transcode its
3072 narrowed part.
3074 If a region is active, transcode that region.
3076 When optional argument SUBTREEP is non-nil, transcode the
3077 sub-tree at point, extracting information from the headline
3078 properties first.
3080 When optional argument VISIBLE-ONLY is non-nil, don't export
3081 contents of hidden elements.
3083 When optional argument BODY-ONLY is non-nil, only return body
3084 code, without surrounding template.
3086 Optional argument EXT-PLIST, when provided, is a property list
3087 with external parameters overriding Org default settings, but
3088 still inferior to file-local settings.
3090 Return code as a string."
3091 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
3092 (org-export-barf-if-invalid-backend backend)
3093 (save-excursion
3094 (save-restriction
3095 ;; Narrow buffer to an appropriate region or subtree for
3096 ;; parsing. If parsing subtree, be sure to remove main headline
3097 ;; too.
3098 (cond ((org-region-active-p)
3099 (narrow-to-region (region-beginning) (region-end)))
3100 (subtreep
3101 (org-narrow-to-subtree)
3102 (goto-char (point-min))
3103 (forward-line)
3104 (narrow-to-region (point) (point-max))))
3105 ;; Initialize communication channel with original buffer
3106 ;; attributes, unavailable in its copy.
3107 (let* ((org-export-current-backend (org-export-backend-name backend))
3108 (info (org-combine-plists
3109 (list :export-options
3110 (delq nil
3111 (list (and subtreep 'subtree)
3112 (and visible-only 'visible-only)
3113 (and body-only 'body-only))))
3114 (org-export--get-buffer-attributes)))
3115 tree)
3116 ;; Update communication channel and get parse tree. Buffer
3117 ;; isn't parsed directly. Instead, a temporary copy is
3118 ;; created, where include keywords, macros are expanded and
3119 ;; code blocks are evaluated.
3120 (org-export-with-buffer-copy
3121 ;; Run first hook with current back-end's name as argument.
3122 (run-hook-with-args 'org-export-before-processing-hook
3123 (org-export-backend-name backend))
3124 (org-export-expand-include-keyword)
3125 ;; Update macro templates since #+INCLUDE keywords might have
3126 ;; added some new ones.
3127 (org-macro-initialize-templates)
3128 (org-macro-replace-all org-macro-templates)
3129 (org-export-execute-babel-code)
3130 ;; Update radio targets since keyword inclusion might have
3131 ;; added some more.
3132 (org-update-radio-target-regexp)
3133 ;; Run last hook with current back-end's name as argument.
3134 (goto-char (point-min))
3135 (save-excursion
3136 (run-hook-with-args 'org-export-before-parsing-hook
3137 (org-export-backend-name backend)))
3138 ;; Update communication channel with environment. Also
3139 ;; install user's and developer's filters.
3140 (setq info
3141 (org-export-install-filters
3142 (org-combine-plists
3143 info (org-export-get-environment backend subtreep ext-plist))))
3144 ;; Expand export-specific set of macros: {{{author}}},
3145 ;; {{{date}}}, {{{email}}} and {{{title}}}. It must be done
3146 ;; once regular macros have been expanded, since document
3147 ;; keywords may contain one of them.
3148 (org-macro-replace-all
3149 (list (cons "author"
3150 (org-element-interpret-data (plist-get info :author)))
3151 (cons "date"
3152 (org-element-interpret-data (plist-get info :date)))
3153 ;; EMAIL is not a parsed keyword: store it as-is.
3154 (cons "email" (or (plist-get info :email) ""))
3155 (cons "title"
3156 (org-element-interpret-data (plist-get info :title)))))
3157 ;; Parse buffer.
3158 (setq tree (org-element-parse-buffer nil visible-only))
3159 ;; Handle left-over uninterpreted elements or objects in
3160 ;; parse tree and communication channel.
3161 (org-export-remove-uninterpreted-data tree info)
3162 ;; Call options filters and update export options. We do not
3163 ;; use `org-export-filter-apply-functions' here since the
3164 ;; arity of such filters is different.
3165 (let ((backend-name (org-export-backend-name backend)))
3166 (dolist (filter (plist-get info :filter-options))
3167 (let ((result (funcall filter info backend-name)))
3168 (when result (setq info result)))))
3169 ;; Parse buffer, handle uninterpreted elements or objects,
3170 ;; then call parse-tree filters.
3171 (setq tree
3172 (org-export-filter-apply-functions
3173 (plist-get info :filter-parse-tree) tree info))
3174 ;; Now tree is complete, compute its properties and add them
3175 ;; to communication channel.
3176 (setq info
3177 (org-combine-plists
3178 info (org-export-collect-tree-properties tree info)))
3179 ;; Eventually transcode TREE. Wrap the resulting string into
3180 ;; a template.
3181 (let* ((body (org-element-normalize-string
3182 (or (org-export-data tree info) "")))
3183 (inner-template (cdr (assq 'inner-template
3184 (plist-get info :translate-alist))))
3185 (full-body (org-export-filter-apply-functions
3186 (plist-get info :filter-body)
3187 (if (not (functionp inner-template)) body
3188 (funcall inner-template body info))
3189 info))
3190 (template (cdr (assq 'template
3191 (plist-get info :translate-alist)))))
3192 ;; Remove all text properties since they cannot be
3193 ;; retrieved from an external process. Finally call
3194 ;; final-output filter and return result.
3195 (org-no-properties
3196 (org-export-filter-apply-functions
3197 (plist-get info :filter-final-output)
3198 (if (or (not (functionp template)) body-only) full-body
3199 (funcall template full-body info))
3200 info))))))))
3202 ;;;###autoload
3203 (defun org-export-string-as (string backend &optional body-only ext-plist)
3204 "Transcode STRING into BACKEND code.
3206 BACKEND is either an export back-end, as returned by, e.g.,
3207 `org-export-create-backend', or a symbol referring to
3208 a registered back-end.
3210 When optional argument BODY-ONLY is non-nil, only return body
3211 code, without preamble nor postamble.
3213 Optional argument EXT-PLIST, when provided, is a property list
3214 with external parameters overriding Org default settings, but
3215 still inferior to file-local settings.
3217 Return code as a string."
3218 (with-temp-buffer
3219 (insert string)
3220 (let ((org-inhibit-startup t)) (org-mode))
3221 (org-export-as backend nil nil body-only ext-plist)))
3223 ;;;###autoload
3224 (defun org-export-replace-region-by (backend)
3225 "Replace the active region by its export to BACKEND.
3226 BACKEND is either an export back-end, as returned by, e.g.,
3227 `org-export-create-backend', or a symbol referring to
3228 a registered back-end."
3229 (if (not (org-region-active-p))
3230 (user-error "No active region to replace")
3231 (let* ((beg (region-beginning))
3232 (end (region-end))
3233 (str (buffer-substring beg end)) rpl)
3234 (setq rpl (org-export-string-as str backend t))
3235 (delete-region beg end)
3236 (insert rpl))))
3238 ;;;###autoload
3239 (defun org-export-insert-default-template (&optional backend subtreep)
3240 "Insert all export keywords with default values at beginning of line.
3242 BACKEND is a symbol referring to the name of a registered export
3243 back-end, for which specific export options should be added to
3244 the template, or `default' for default template. When it is nil,
3245 the user will be prompted for a category.
3247 If SUBTREEP is non-nil, export configuration will be set up
3248 locally for the subtree through node properties."
3249 (interactive)
3250 (unless (derived-mode-p 'org-mode) (user-error "Not in an Org mode buffer"))
3251 (when (and subtreep (org-before-first-heading-p))
3252 (user-error "No subtree to set export options for"))
3253 (let ((node (and subtreep (save-excursion (org-back-to-heading t) (point))))
3254 (backend
3255 (or backend
3256 (intern
3257 (org-completing-read
3258 "Options category: "
3259 (cons "default"
3260 (mapcar #'(lambda (b)
3261 (symbol-name (org-export-backend-name b)))
3262 org-export--registered-backends))
3263 nil t))))
3264 options keywords)
3265 ;; Populate OPTIONS and KEYWORDS.
3266 (dolist (entry (cond ((eq backend 'default) org-export-options-alist)
3267 ((org-export-backend-p backend)
3268 (org-export-backend-options backend))
3269 (t (org-export-backend-options
3270 (org-export-get-backend backend)))))
3271 (let ((keyword (nth 1 entry))
3272 (option (nth 2 entry)))
3273 (cond
3274 (keyword (unless (assoc keyword keywords)
3275 (let ((value
3276 (if (eq (nth 4 entry) 'split)
3277 (mapconcat #'identity (eval (nth 3 entry)) " ")
3278 (eval (nth 3 entry)))))
3279 (push (cons keyword value) keywords))))
3280 (option (unless (assoc option options)
3281 (push (cons option (eval (nth 3 entry))) options))))))
3282 ;; Move to an appropriate location in order to insert options.
3283 (unless subtreep (beginning-of-line))
3284 ;; First (multiple) OPTIONS lines. Never go past fill-column.
3285 (when options
3286 (let ((items
3287 (mapcar
3288 #'(lambda (opt) (format "%s:%S" (car opt) (cdr opt)))
3289 (sort options (lambda (k1 k2) (string< (car k1) (car k2)))))))
3290 (if subtreep
3291 (org-entry-put
3292 node "EXPORT_OPTIONS" (mapconcat 'identity items " "))
3293 (while items
3294 (insert "#+OPTIONS:")
3295 (let ((width 10))
3296 (while (and items
3297 (< (+ width (length (car items)) 1) fill-column))
3298 (let ((item (pop items)))
3299 (insert " " item)
3300 (incf width (1+ (length item))))))
3301 (insert "\n")))))
3302 ;; Then the rest of keywords, in the order specified in either
3303 ;; `org-export-options-alist' or respective export back-ends.
3304 (dolist (key (nreverse keywords))
3305 (let ((val (cond ((equal (car key) "DATE")
3306 (or (cdr key)
3307 (with-temp-buffer
3308 (org-insert-time-stamp (current-time)))))
3309 ((equal (car key) "TITLE")
3310 (or (let ((visited-file
3311 (buffer-file-name (buffer-base-buffer))))
3312 (and visited-file
3313 (file-name-sans-extension
3314 (file-name-nondirectory visited-file))))
3315 (buffer-name (buffer-base-buffer))))
3316 (t (cdr key)))))
3317 (if subtreep (org-entry-put node (concat "EXPORT_" (car key)) val)
3318 (insert
3319 (format "#+%s:%s\n"
3320 (car key)
3321 (if (org-string-nw-p val) (format " %s" val) ""))))))))
3323 (defun org-export-expand-include-keyword (&optional included dir)
3324 "Expand every include keyword in buffer.
3325 Optional argument INCLUDED is a list of included file names along
3326 with their line restriction, when appropriate. It is used to
3327 avoid infinite recursion. Optional argument DIR is the current
3328 working directory. It is used to properly resolve relative
3329 paths."
3330 (let ((case-fold-search t)
3331 (file-prefix (make-hash-table :test #'equal))
3332 (current-prefix 0))
3333 (goto-char (point-min))
3334 (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
3335 (let ((element (save-match-data (org-element-at-point))))
3336 (when (eq (org-element-type element) 'keyword)
3337 (beginning-of-line)
3338 ;; Extract arguments from keyword's value.
3339 (let* ((value (org-element-property :value element))
3340 (ind (org-get-indentation))
3341 location
3342 (file (and (string-match
3343 "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" value)
3344 (prog1
3345 (save-match-data
3346 (let ((matched (match-string 1 value)))
3347 (when (string-match "\\(::\\(.*?\\)\\)\"?\\'" matched)
3348 (setq location (match-string 2 matched))
3349 (setq matched
3350 (replace-match "" nil nil matched 1)))
3351 (expand-file-name
3352 (org-remove-double-quotes
3353 matched)
3354 dir)))
3355 (setq value (replace-match "" nil nil value)))))
3356 (only-contents
3357 (and (string-match ":only-contents *\\([^: \r\t\n]\\S-*\\)?" value)
3358 (prog1 (org-not-nil (match-string 1 value))
3359 (setq value (replace-match "" nil nil value)))))
3360 (lines
3361 (and (string-match
3362 ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\""
3363 value)
3364 (prog1 (match-string 1 value)
3365 (setq value (replace-match "" nil nil value)))))
3366 (env (cond ((string-match "\\<example\\>" value)
3367 'literal)
3368 ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
3369 'literal)))
3370 ;; Minimal level of included file defaults to the child
3371 ;; level of the current headline, if any, or one. It
3372 ;; only applies is the file is meant to be included as
3373 ;; an Org one.
3374 (minlevel
3375 (and (not env)
3376 (if (string-match ":minlevel +\\([0-9]+\\)" value)
3377 (prog1 (string-to-number (match-string 1 value))
3378 (setq value (replace-match "" nil nil value)))
3379 (let ((cur (org-current-level)))
3380 (if cur (1+ (org-reduced-level cur)) 1)))))
3381 (src-args (and (eq env 'literal)
3382 (match-string 1 value)))
3383 (block (and (string-match "\\<\\(\\S-+\\)\\>" value)
3384 (match-string 1 value))))
3385 ;; Remove keyword.
3386 (delete-region (point) (progn (forward-line) (point)))
3387 (cond
3388 ((not file) nil)
3389 ((not (file-readable-p file))
3390 (error "Cannot include file %s" file))
3391 ;; Check if files has already been parsed. Look after
3392 ;; inclusion lines too, as different parts of the same file
3393 ;; can be included too.
3394 ((member (list file lines) included)
3395 (error "Recursive file inclusion: %s" file))
3397 (cond
3398 ((eq env 'literal)
3399 (insert
3400 (let ((ind-str (make-string ind ? ))
3401 (arg-str (if (stringp src-args)
3402 (format " %s" src-args)
3403 ""))
3404 (contents
3405 (org-escape-code-in-string
3406 (org-export--prepare-file-contents file lines))))
3407 (format "%s#+BEGIN_%s%s\n%s%s#+END_%s\n"
3408 ind-str block arg-str contents ind-str block))))
3409 ((stringp block)
3410 (insert
3411 (let ((ind-str (make-string ind ? ))
3412 (contents
3413 (org-export--prepare-file-contents file lines)))
3414 (format "%s#+BEGIN_%s\n%s%s#+END_%s\n"
3415 ind-str block contents ind-str block))))
3417 (insert
3418 (with-temp-buffer
3419 (let ((org-inhibit-startup t)
3420 (lines
3421 (if location
3422 (org-export--inclusion-absolute-lines
3423 file location only-contents lines)
3424 lines)))
3425 (org-mode)
3426 (insert
3427 (org-export--prepare-file-contents
3428 file lines ind minlevel
3429 (or (gethash file file-prefix)
3430 (puthash file (incf current-prefix) file-prefix)))))
3431 (org-export-expand-include-keyword
3432 (cons (list file lines) included)
3433 (file-name-directory file))
3434 (buffer-string)))))))))))))
3436 (defun org-export--inclusion-absolute-lines (file location only-contents lines)
3437 "Resolve absolute lines for an included file with file-link.
3439 FILE is string file-name of the file to include. LOCATION is a
3440 string name within FILE to be included (located via
3441 `org-link-search'). If ONLY-CONTENTS is non-nil only the
3442 contents of the named element will be included, as determined
3443 Org-Element. If LINES is non-nil only those lines are included.
3445 Return a string of lines to be included in the format expected by
3446 `org-export--prepare-file-contents'."
3447 (with-temp-buffer
3448 (insert-file-contents file)
3449 (unless (eq major-mode 'org-mode)
3450 (let ((org-inhibit-startup t)) (org-mode)))
3451 (condition-case err
3452 ;; Enforce consistent search.
3453 (let ((org-link-search-must-match-exact-headline t))
3454 (org-link-search location))
3455 (error
3456 (error (format "%s for %s::%s" (error-message-string err) file location))))
3457 (let* ((element (org-element-at-point))
3458 (contents-begin
3459 (and only-contents (org-element-property :contents-begin element))))
3460 (narrow-to-region
3461 (or contents-begin (org-element-property :begin element))
3462 (org-element-property (if contents-begin :contents-end :end) element))
3463 (when (and only-contents
3464 (memq (org-element-type element) '(headline inlinetask)))
3465 ;; Skip planning line and property-drawer. If a normal drawer
3466 ;; precedes a property-drawer both will be included.
3467 ;; Remaining property-drawers are removed as needed in
3468 ;; `org-export--prepare-file-contents'.
3469 (goto-char (point-min))
3470 (when (org-looking-at-p org-planning-line-re) (forward-line))
3471 (when (looking-at org-property-drawer-re) (goto-char (match-end 0)))
3472 (unless (bolp) (forward-line))
3473 (narrow-to-region (point) (point-max))))
3474 (when lines
3475 (org-skip-whitespace)
3476 (beginning-of-line)
3477 (let* ((lines (split-string lines "-"))
3478 (lbeg (string-to-number (car lines)))
3479 (lend (string-to-number (cadr lines)))
3480 (beg (if (zerop lbeg) (point-min)
3481 (goto-char (point-min))
3482 (forward-line (1- lbeg))
3483 (point)))
3484 (end (if (zerop lend) (point-max)
3485 (goto-char beg)
3486 (forward-line (1- lend))
3487 (point))))
3488 (narrow-to-region beg end)))
3489 (let ((end (point-max)))
3490 (goto-char (point-min))
3491 (widen)
3492 (let ((start-line (line-number-at-pos)))
3493 (format "%d-%d"
3494 start-line
3495 (save-excursion
3496 (+ start-line
3497 (let ((counter 0))
3498 (while (< (point) end) (incf counter) (forward-line))
3499 counter))))))))
3501 (defun org-export--prepare-file-contents (file &optional lines ind minlevel id)
3502 "Prepare the contents of FILE for inclusion and return them as a string.
3504 When optional argument LINES is a string specifying a range of
3505 lines, include only those lines.
3507 Optional argument IND, when non-nil, is an integer specifying the
3508 global indentation of returned contents. Since its purpose is to
3509 allow an included file to stay in the same environment it was
3510 created \(i.e. a list item), it doesn't apply past the first
3511 headline encountered.
3513 Optional argument MINLEVEL, when non-nil, is an integer
3514 specifying the level that any top-level headline in the included
3515 file should have.
3517 Optional argument ID is an integer that will be inserted before
3518 each footnote definition and reference if FILE is an Org file.
3519 This is useful to avoid conflicts when more than one Org file
3520 with footnotes is included in a document."
3521 (with-temp-buffer
3522 (insert-file-contents file)
3523 (when lines
3524 (let* ((lines (split-string lines "-"))
3525 (lbeg (string-to-number (car lines)))
3526 (lend (string-to-number (cadr lines)))
3527 (beg (if (zerop lbeg) (point-min)
3528 (goto-char (point-min))
3529 (forward-line (1- lbeg))
3530 (point)))
3531 (end (if (zerop lend) (point-max)
3532 (goto-char (point-min))
3533 (forward-line (1- lend))
3534 (point))))
3535 (narrow-to-region beg end)))
3536 ;; Remove blank lines at beginning and end of contents. The logic
3537 ;; behind that removal is that blank lines around include keyword
3538 ;; override blank lines in included file.
3539 (goto-char (point-min))
3540 (org-skip-whitespace)
3541 (beginning-of-line)
3542 (delete-region (point-min) (point))
3543 (goto-char (point-max))
3544 (skip-chars-backward " \r\t\n")
3545 (forward-line)
3546 (delete-region (point) (point-max))
3547 ;; Remove property-drawers after drawers.
3548 (when (or ind minlevel)
3549 (unless (eq major-mode 'org-mode)
3550 (let ((org-inhibit-startup t)) (org-mode)))
3551 (goto-char (point-min))
3552 (when (looking-at org-drawer-regexp)
3553 (goto-char (match-end 0))
3554 (search-forward-regexp org-drawer-regexp)
3555 (forward-line 1)
3556 (beginning-of-line))
3557 (when (looking-at org-property-drawer-re)
3558 (delete-region (match-beginning 0) (match-end 0))
3559 (beginning-of-line))
3560 (delete-region (point) (save-excursion (and (org-skip-whitespace) (point)))))
3561 ;; If IND is set, preserve indentation of include keyword until
3562 ;; the first headline encountered.
3563 (when ind
3564 (unless (eq major-mode 'org-mode)
3565 (let ((org-inhibit-startup t)) (org-mode)))
3566 (goto-char (point-min))
3567 (let ((ind-str (make-string ind ? )))
3568 (while (not (or (eobp) (looking-at org-outline-regexp-bol)))
3569 ;; Do not move footnote definitions out of column 0.
3570 (unless (and (looking-at org-footnote-definition-re)
3571 (eq (org-element-type (org-element-at-point))
3572 'footnote-definition))
3573 (insert ind-str))
3574 (forward-line))))
3575 ;; When MINLEVEL is specified, compute minimal level for headlines
3576 ;; in the file (CUR-MIN), and remove stars to each headline so
3577 ;; that headlines with minimal level have a level of MINLEVEL.
3578 (when minlevel
3579 (unless (eq major-mode 'org-mode)
3580 (let ((org-inhibit-startup t)) (org-mode)))
3581 (org-with-limited-levels
3582 (let ((levels (org-map-entries
3583 (lambda () (org-reduced-level (org-current-level))))))
3584 (when levels
3585 (let ((offset (- minlevel (apply 'min levels))))
3586 (unless (zerop offset)
3587 (when org-odd-levels-only (setq offset (* offset 2)))
3588 ;; Only change stars, don't bother moving whole
3589 ;; sections.
3590 (org-map-entries
3591 (lambda () (if (< offset 0) (delete-char (abs offset))
3592 (insert (make-string offset ?*)))))))))))
3593 ;; Append ID to all footnote references and definitions, so they
3594 ;; become file specific and cannot collide with footnotes in other
3595 ;; included files.
3596 (when id
3597 (goto-char (point-min))
3598 (while (re-search-forward org-footnote-re nil t)
3599 (let ((reference (org-element-context)))
3600 (when (memq (org-element-type reference)
3601 '(footnote-reference footnote-definition))
3602 (goto-char (org-element-property :begin reference))
3603 (forward-char)
3604 (let ((label (org-element-property :label reference)))
3605 (cond ((not label))
3606 ((org-string-match-p "\\`[0-9]+\\'" label)
3607 (insert (format "fn:%d-" id)))
3608 (t (forward-char 3) (insert (format "%d-" id)))))))))
3609 (org-element-normalize-string (buffer-string))))
3611 (defun org-export-execute-babel-code ()
3612 "Execute every Babel code in the visible part of current buffer."
3613 ;; Get a pristine copy of current buffer so Babel references can be
3614 ;; properly resolved.
3615 (let ((reference (org-export-copy-buffer)))
3616 (unwind-protect (org-babel-exp-process-buffer reference)
3617 (kill-buffer reference))))
3619 (defun org-export--copy-to-kill-ring-p ()
3620 "Return a non-nil value when output should be added to the kill ring.
3621 See also `org-export-copy-to-kill-ring'."
3622 (if (eq org-export-copy-to-kill-ring 'if-interactive)
3623 (not (or executing-kbd-macro noninteractive))
3624 (eq org-export-copy-to-kill-ring t)))
3628 ;;; Tools For Back-Ends
3630 ;; A whole set of tools is available to help build new exporters. Any
3631 ;; function general enough to have its use across many back-ends
3632 ;; should be added here.
3634 ;;;; For Affiliated Keywords
3636 ;; `org-export-read-attribute' reads a property from a given element
3637 ;; as a plist. It can be used to normalize affiliated keywords'
3638 ;; syntax.
3640 ;; Since captions can span over multiple lines and accept dual values,
3641 ;; their internal representation is a bit tricky. Therefore,
3642 ;; `org-export-get-caption' transparently returns a given element's
3643 ;; caption as a secondary string.
3645 (defun org-export-read-attribute (attribute element &optional property)
3646 "Turn ATTRIBUTE property from ELEMENT into a plist.
3648 When optional argument PROPERTY is non-nil, return the value of
3649 that property within attributes.
3651 This function assumes attributes are defined as \":keyword
3652 value\" pairs. It is appropriate for `:attr_html' like
3653 properties.
3655 All values will become strings except the empty string and
3656 \"nil\", which will become nil. Also, values containing only
3657 double quotes will be read as-is, which means that \"\" value
3658 will become the empty string."
3659 (let* ((prepare-value
3660 (lambda (str)
3661 (save-match-data
3662 (cond ((member str '(nil "" "nil")) nil)
3663 ((string-match "^\"\\(\"+\\)?\"$" str)
3664 (or (match-string 1 str) ""))
3665 (t str)))))
3666 (attributes
3667 (let ((value (org-element-property attribute element)))
3668 (when value
3669 (let ((s (mapconcat 'identity value " ")) result)
3670 (while (string-match
3671 "\\(?:^\\|[ \t]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([ \t]+\\|$\\)"
3673 (let ((value (substring s 0 (match-beginning 0))))
3674 (push (funcall prepare-value value) result))
3675 (push (intern (match-string 1 s)) result)
3676 (setq s (substring s (match-end 0))))
3677 ;; Ignore any string before first property with `cdr'.
3678 (cdr (nreverse (cons (funcall prepare-value s) result))))))))
3679 (if property (plist-get attributes property) attributes)))
3681 (defun org-export-get-caption (element &optional shortp)
3682 "Return caption from ELEMENT as a secondary string.
3684 When optional argument SHORTP is non-nil, return short caption,
3685 as a secondary string, instead.
3687 Caption lines are separated by a white space."
3688 (let ((full-caption (org-element-property :caption element)) caption)
3689 (dolist (line full-caption (cdr caption))
3690 (let ((cap (funcall (if shortp 'cdr 'car) line)))
3691 (when cap
3692 (setq caption (nconc (list " ") (copy-sequence cap) caption)))))))
3695 ;;;; For Derived Back-ends
3697 ;; `org-export-with-backend' is a function allowing to locally use
3698 ;; another back-end to transcode some object or element. In a derived
3699 ;; back-end, it may be used as a fall-back function once all specific
3700 ;; cases have been treated.
3702 (defun org-export-with-backend (backend data &optional contents info)
3703 "Call a transcoder from BACKEND on DATA.
3704 BACKEND is an export back-end, as returned by, e.g.,
3705 `org-export-create-backend', or a symbol referring to
3706 a registered back-end. DATA is an Org element, object, secondary
3707 string or string. CONTENTS, when non-nil, is the transcoded
3708 contents of DATA element, as a string. INFO, when non-nil, is
3709 the communication channel used for export, as a plist."
3710 (when (symbolp backend) (setq backend (org-export-get-backend backend)))
3711 (org-export-barf-if-invalid-backend backend)
3712 (let ((type (org-element-type data)))
3713 (if (memq type '(nil org-data)) (error "No foreign transcoder available")
3714 (let* ((all-transcoders (org-export-get-all-transcoders backend))
3715 (transcoder (cdr (assq type all-transcoders))))
3716 (if (not (functionp transcoder))
3717 (error "No foreign transcoder available")
3718 (funcall
3719 transcoder data contents
3720 (org-combine-plists
3721 info (list :back-end backend
3722 :translate-alist all-transcoders
3723 :exported-data (make-hash-table :test 'eq :size 401)))))))))
3726 ;;;; For Export Snippets
3728 ;; Every export snippet is transmitted to the back-end. Though, the
3729 ;; latter will only retain one type of export-snippet, ignoring
3730 ;; others, based on the former's target back-end. The function
3731 ;; `org-export-snippet-backend' returns that back-end for a given
3732 ;; export-snippet.
3734 (defun org-export-snippet-backend (export-snippet)
3735 "Return EXPORT-SNIPPET targeted back-end as a symbol.
3736 Translation, with `org-export-snippet-translation-alist', is
3737 applied."
3738 (let ((back-end (org-element-property :back-end export-snippet)))
3739 (intern
3740 (or (cdr (assoc back-end org-export-snippet-translation-alist))
3741 back-end))))
3744 ;;;; For Footnotes
3746 ;; `org-export-collect-footnote-definitions' is a tool to list
3747 ;; actually used footnotes definitions in the whole parse tree, or in
3748 ;; a headline, in order to add footnote listings throughout the
3749 ;; transcoded data.
3751 ;; `org-export-footnote-first-reference-p' is a predicate used by some
3752 ;; back-ends, when they need to attach the footnote definition only to
3753 ;; the first occurrence of the corresponding label.
3755 ;; `org-export-get-footnote-definition' and
3756 ;; `org-export-get-footnote-number' provide easier access to
3757 ;; additional information relative to a footnote reference.
3759 (defun org-export-collect-footnote-definitions (data info)
3760 "Return an alist between footnote numbers, labels and definitions.
3762 DATA is the parse tree from which definitions are collected.
3763 INFO is the plist used as a communication channel.
3765 Definitions are sorted by order of references. They either
3766 appear as Org data or as a secondary string for inlined
3767 footnotes. Unreferenced definitions are ignored."
3768 (let* (num-alist
3769 collect-fn ; for byte-compiler.
3770 (collect-fn
3771 (function
3772 (lambda (data)
3773 ;; Collect footnote number, label and definition in DATA.
3774 (org-element-map data 'footnote-reference
3775 (lambda (fn)
3776 (when (org-export-footnote-first-reference-p fn info)
3777 (let ((def (org-export-get-footnote-definition fn info)))
3778 (push
3779 (list (org-export-get-footnote-number fn info)
3780 (org-element-property :label fn)
3781 def)
3782 num-alist)
3783 ;; Also search in definition for nested footnotes.
3784 (when (eq (org-element-property :type fn) 'standard)
3785 (funcall collect-fn def)))))
3786 ;; Don't enter footnote definitions since it will happen
3787 ;; when their first reference is found.
3788 info nil 'footnote-definition)))))
3789 (funcall collect-fn (plist-get info :parse-tree))
3790 (reverse num-alist)))
3792 (defun org-export-footnote-first-reference-p (footnote-reference info)
3793 "Non-nil when a footnote reference is the first one for its label.
3795 FOOTNOTE-REFERENCE is the footnote reference being considered.
3796 INFO is the plist used as a communication channel."
3797 (let ((label (org-element-property :label footnote-reference)))
3798 ;; Anonymous footnotes are always a first reference.
3799 (if (not label) t
3800 ;; Otherwise, return the first footnote with the same LABEL and
3801 ;; test if it is equal to FOOTNOTE-REFERENCE.
3802 (let* (search-refs ; for byte-compiler.
3803 (search-refs
3804 (function
3805 (lambda (data)
3806 (org-element-map data 'footnote-reference
3807 (lambda (fn)
3808 (cond
3809 ((string= (org-element-property :label fn) label)
3810 (throw 'exit fn))
3811 ;; If FN isn't inlined, be sure to traverse its
3812 ;; definition before resuming search. See
3813 ;; comments in `org-export-get-footnote-number'
3814 ;; for more information.
3815 ((eq (org-element-property :type fn) 'standard)
3816 (funcall search-refs
3817 (org-export-get-footnote-definition fn info)))))
3818 ;; Don't enter footnote definitions since it will
3819 ;; happen when their first reference is found.
3820 info 'first-match 'footnote-definition)))))
3821 (eq (catch 'exit (funcall search-refs (plist-get info :parse-tree)))
3822 footnote-reference)))))
3824 (defun org-export-get-footnote-definition (footnote-reference info)
3825 "Return definition of FOOTNOTE-REFERENCE as parsed data.
3826 INFO is the plist used as a communication channel. If no such
3827 definition can be found, return \"DEFINITION NOT FOUND\"."
3828 (let ((label (org-element-property :label footnote-reference)))
3829 (or (if label
3830 (cdr (assoc label (plist-get info :footnote-definition-alist)))
3831 (org-element-contents footnote-reference))
3832 "DEFINITION NOT FOUND.")))
3834 (defun org-export-get-footnote-number (footnote info)
3835 "Return number associated to a footnote.
3837 FOOTNOTE is either a footnote reference or a footnote definition.
3838 INFO is the plist used as a communication channel."
3839 (let* ((label (org-element-property :label footnote))
3840 seen-refs
3841 search-ref ; For byte-compiler.
3842 (search-ref
3843 (function
3844 (lambda (data)
3845 ;; Search footnote references through DATA, filling
3846 ;; SEEN-REFS along the way.
3847 (org-element-map data 'footnote-reference
3848 (lambda (fn)
3849 (let ((fn-lbl (org-element-property :label fn)))
3850 (cond
3851 ;; Anonymous footnote match: return number.
3852 ((and (not fn-lbl) (eq fn footnote))
3853 (throw 'exit (1+ (length seen-refs))))
3854 ;; Labels match: return number.
3855 ((and label (string= label fn-lbl))
3856 (throw 'exit (1+ (length seen-refs))))
3857 ;; Anonymous footnote: it's always a new one.
3858 ;; Also, be sure to return nil from the `cond' so
3859 ;; `first-match' doesn't get us out of the loop.
3860 ((not fn-lbl) (push 'inline seen-refs) nil)
3861 ;; Label not seen so far: add it so SEEN-REFS.
3863 ;; Also search for subsequent references in
3864 ;; footnote definition so numbering follows
3865 ;; reading logic. Note that we don't have to care
3866 ;; about inline definitions, since
3867 ;; `org-element-map' already traverses them at the
3868 ;; right time.
3870 ;; Once again, return nil to stay in the loop.
3871 ((not (member fn-lbl seen-refs))
3872 (push fn-lbl seen-refs)
3873 (funcall search-ref
3874 (org-export-get-footnote-definition fn info))
3875 nil))))
3876 ;; Don't enter footnote definitions since it will
3877 ;; happen when their first reference is found.
3878 info 'first-match 'footnote-definition)))))
3879 (catch 'exit (funcall search-ref (plist-get info :parse-tree)))))
3882 ;;;; For Headlines
3884 ;; `org-export-get-relative-level' is a shortcut to get headline
3885 ;; level, relatively to the lower headline level in the parsed tree.
3887 ;; `org-export-get-headline-number' returns the section number of an
3888 ;; headline, while `org-export-number-to-roman' allows to convert it
3889 ;; to roman numbers. With an optional argument,
3890 ;; `org-export-get-headline-number' returns a number to unnumbered
3891 ;; headlines (used for internal id).
3893 ;; `org-export-get-headline-id' returns the unique internal id of a
3894 ;; headline.
3896 ;; `org-export-low-level-p', `org-export-first-sibling-p' and
3897 ;; `org-export-last-sibling-p' are three useful predicates when it
3898 ;; comes to fulfill the `:headline-levels' property.
3900 ;; `org-export-get-tags', `org-export-get-category' and
3901 ;; `org-export-get-node-property' extract useful information from an
3902 ;; headline or a parent headline. They all handle inheritance.
3904 ;; `org-export-get-alt-title' tries to retrieve an alternative title,
3905 ;; as a secondary string, suitable for table of contents. It falls
3906 ;; back onto default title.
3908 (defun org-export-get-relative-level (headline info)
3909 "Return HEADLINE relative level within current parsed tree.
3910 INFO is a plist holding contextual information."
3911 (+ (org-element-property :level headline)
3912 (or (plist-get info :headline-offset) 0)))
3914 (defun org-export-low-level-p (headline info)
3915 "Non-nil when HEADLINE is considered as low level.
3917 INFO is a plist used as a communication channel.
3919 A low level headlines has a relative level greater than
3920 `:headline-levels' property value.
3922 Return value is the difference between HEADLINE relative level
3923 and the last level being considered as high enough, or nil."
3924 (let ((limit (plist-get info :headline-levels)))
3925 (when (wholenump limit)
3926 (let ((level (org-export-get-relative-level headline info)))
3927 (and (> level limit) (- level limit))))))
3929 (defun org-export-get-headline-id (headline info)
3930 "Return a unique ID for HEADLINE.
3931 INFO is a plist holding contextual information."
3932 (let ((numbered (org-export-numbered-headline-p headline info)))
3933 (concat
3934 (if numbered "sec-" "unnumbered-")
3935 (mapconcat #'number-to-string
3936 (if numbered
3937 (org-export-get-headline-number headline info)
3938 (cdr (assq headline (plist-get info :unnumbered-headline-id)))) "-"))))
3940 (defun org-export-get-headline-number (headline info)
3941 "Return numbered HEADLINE numbering as a list of numbers.
3942 INFO is a plist holding contextual information."
3943 (and (org-export-numbered-headline-p headline info)
3944 (cdr (assq headline (plist-get info :headline-numbering)))))
3946 (defun org-export-numbered-headline-p (headline info)
3947 "Return a non-nil value if HEADLINE element should be numbered.
3948 INFO is a plist used as a communication channel."
3949 (unless (org-some
3950 (lambda (head) (org-not-nil (org-element-property :UNNUMBERED head)))
3951 (cons headline (org-export-get-genealogy headline)))
3952 (let ((sec-num (plist-get info :section-numbers))
3953 (level (org-export-get-relative-level headline info)))
3954 (if (wholenump sec-num) (<= level sec-num) sec-num))))
3956 (defun org-export-number-to-roman (n)
3957 "Convert integer N into a roman numeral."
3958 (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
3959 ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
3960 ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
3961 ( 1 . "I")))
3962 (res ""))
3963 (if (<= n 0)
3964 (number-to-string n)
3965 (while roman
3966 (if (>= n (caar roman))
3967 (setq n (- n (caar roman))
3968 res (concat res (cdar roman)))
3969 (pop roman)))
3970 res)))
3972 (defun org-export-get-tags (element info &optional tags inherited)
3973 "Return list of tags associated to ELEMENT.
3975 ELEMENT has either an `headline' or an `inlinetask' type. INFO
3976 is a plist used as a communication channel.
3978 Select tags (see `org-export-select-tags') and exclude tags (see
3979 `org-export-exclude-tags') are removed from the list.
3981 When non-nil, optional argument TAGS should be a list of strings.
3982 Any tag belonging to this list will also be removed.
3984 When optional argument INHERITED is non-nil, tags can also be
3985 inherited from parent headlines and FILETAGS keywords."
3986 (org-remove-if
3987 (lambda (tag) (or (member tag (plist-get info :select-tags))
3988 (member tag (plist-get info :exclude-tags))
3989 (member tag tags)))
3990 (if (not inherited) (org-element-property :tags element)
3991 ;; Build complete list of inherited tags.
3992 (let ((current-tag-list (org-element-property :tags element)))
3993 (mapc
3994 (lambda (parent)
3995 (mapc
3996 (lambda (tag)
3997 (when (and (memq (org-element-type parent) '(headline inlinetask))
3998 (not (member tag current-tag-list)))
3999 (push tag current-tag-list)))
4000 (org-element-property :tags parent)))
4001 (org-export-get-genealogy element))
4002 ;; Add FILETAGS keywords and return results.
4003 (org-uniquify (append (plist-get info :filetags) current-tag-list))))))
4005 (defun org-export-get-node-property (property blob &optional inherited)
4006 "Return node PROPERTY value for BLOB.
4008 PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA'). BLOB is an
4009 element or object.
4011 If optional argument INHERITED is non-nil, the value can be
4012 inherited from a parent headline.
4014 Return value is a string or nil."
4015 (let ((headline (if (eq (org-element-type blob) 'headline) blob
4016 (org-export-get-parent-headline blob))))
4017 (if (not inherited) (org-element-property property blob)
4018 (let ((parent headline) value)
4019 (catch 'found
4020 (while parent
4021 (when (plist-member (nth 1 parent) property)
4022 (throw 'found (org-element-property property parent)))
4023 (setq parent (org-element-property :parent parent))))))))
4025 (defun org-export-get-category (blob info)
4026 "Return category for element or object BLOB.
4028 INFO is a plist used as a communication channel.
4030 CATEGORY is automatically inherited from a parent headline, from
4031 #+CATEGORY: keyword or created out of original file name. If all
4032 fail, the fall-back value is \"???\"."
4033 (or (org-export-get-node-property :CATEGORY blob t)
4034 (org-element-map (plist-get info :parse-tree) 'keyword
4035 (lambda (kwd)
4036 (when (equal (org-element-property :key kwd) "CATEGORY")
4037 (org-element-property :value kwd)))
4038 info 'first-match)
4039 (let ((file (plist-get info :input-file)))
4040 (and file (file-name-sans-extension (file-name-nondirectory file))))
4041 "???"))
4043 (defun org-export-get-alt-title (headline info)
4044 "Return alternative title for HEADLINE, as a secondary string.
4045 INFO is a plist used as a communication channel. If no optional
4046 title is defined, fall-back to the regular title."
4047 (or (org-element-property :alt-title headline)
4048 (org-element-property :title headline)))
4050 (defun org-export-first-sibling-p (blob info)
4051 "Non-nil when BLOB is the first sibling in its parent.
4052 BLOB is an element or an object. If BLOB is a headline, non-nil
4053 means it is the first sibling in the sub-tree. INFO is a plist
4054 used as a communication channel."
4055 (memq (org-element-type (org-export-get-previous-element blob info))
4056 '(nil section)))
4058 (defun org-export-last-sibling-p (blob info)
4059 "Non-nil when BLOB is the last sibling in its parent.
4060 BLOB is an element or an object. INFO is a plist used as
4061 a communication channel."
4062 (not (org-export-get-next-element blob info)))
4065 ;;;; For Keywords
4067 ;; `org-export-get-date' returns a date appropriate for the document
4068 ;; to about to be exported. In particular, it takes care of
4069 ;; `org-export-date-timestamp-format'.
4071 (defun org-export-get-date (info &optional fmt)
4072 "Return date value for the current document.
4074 INFO is a plist used as a communication channel. FMT, when
4075 non-nil, is a time format string that will be applied on the date
4076 if it consists in a single timestamp object. It defaults to
4077 `org-export-date-timestamp-format' when nil.
4079 A proper date can be a secondary string, a string or nil. It is
4080 meant to be translated with `org-export-data' or alike."
4081 (let ((date (plist-get info :date))
4082 (fmt (or fmt org-export-date-timestamp-format)))
4083 (cond ((not date) nil)
4084 ((and fmt
4085 (not (cdr date))
4086 (eq (org-element-type (car date)) 'timestamp))
4087 (org-timestamp-format (car date) fmt))
4088 (t date))))
4091 ;;;; For Links
4093 ;; `org-export-solidify-link-text' turns a string into a safer version
4094 ;; for links, replacing most non-standard characters with hyphens.
4096 ;; `org-export-get-coderef-format' returns an appropriate format
4097 ;; string for coderefs.
4099 ;; `org-export-inline-image-p' returns a non-nil value when the link
4100 ;; provided should be considered as an inline image.
4102 ;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
4103 ;; (i.e. links with "fuzzy" as type) within the parsed tree, and
4104 ;; returns an appropriate unique identifier when found, or nil.
4106 ;; `org-export-resolve-id-link' returns the first headline with
4107 ;; specified id or custom-id in parse tree, the path to the external
4108 ;; file with the id or nil when neither was found.
4110 ;; `org-export-resolve-coderef' associates a reference to a line
4111 ;; number in the element it belongs, or returns the reference itself
4112 ;; when the element isn't numbered.
4114 (defun org-export-solidify-link-text (s)
4115 "Take link text S and make a safe target out of it."
4116 (save-match-data
4117 (mapconcat 'identity (org-split-string s "[^a-zA-Z0-9_.-:]+") "-")))
4119 (defun org-export-get-coderef-format (path desc)
4120 "Return format string for code reference link.
4121 PATH is the link path. DESC is its description."
4122 (save-match-data
4123 (cond ((not desc) "%s")
4124 ((string-match (regexp-quote (concat "(" path ")")) desc)
4125 (replace-match "%s" t t desc))
4126 (t desc))))
4128 (defun org-export-inline-image-p (link &optional rules)
4129 "Non-nil if LINK object points to an inline image.
4131 Optional argument is a set of RULES defining inline images. It
4132 is an alist where associations have the following shape:
4134 \(TYPE . REGEXP)
4136 Applying a rule means apply REGEXP against LINK's path when its
4137 type is TYPE. The function will return a non-nil value if any of
4138 the provided rules is non-nil. The default rule is
4139 `org-export-default-inline-image-rule'.
4141 This only applies to links without a description."
4142 (and (not (org-element-contents link))
4143 (let ((case-fold-search t)
4144 (rules (or rules org-export-default-inline-image-rule)))
4145 (catch 'exit
4146 (mapc
4147 (lambda (rule)
4148 (and (string= (org-element-property :type link) (car rule))
4149 (string-match (cdr rule)
4150 (org-element-property :path link))
4151 (throw 'exit t)))
4152 rules)
4153 ;; Return nil if no rule matched.
4154 nil))))
4156 (defun org-export-resolve-coderef (ref info)
4157 "Resolve a code reference REF.
4159 INFO is a plist used as a communication channel.
4161 Return associated line number in source code, or REF itself,
4162 depending on src-block or example element's switches."
4163 (org-element-map (plist-get info :parse-tree) '(example-block src-block)
4164 (lambda (el)
4165 (with-temp-buffer
4166 (insert (org-trim (org-element-property :value el)))
4167 (let* ((label-fmt (regexp-quote
4168 (or (org-element-property :label-fmt el)
4169 org-coderef-label-format)))
4170 (ref-re
4171 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
4172 (replace-regexp-in-string "%s" ref label-fmt nil t))))
4173 ;; Element containing REF is found. Resolve it to either
4174 ;; a label or a line number, as needed.
4175 (when (re-search-backward ref-re nil t)
4176 (cond
4177 ((org-element-property :use-labels el) ref)
4178 ((eq (org-element-property :number-lines el) 'continued)
4179 (+ (org-export-get-loc el info) (line-number-at-pos)))
4180 (t (line-number-at-pos)))))))
4181 info 'first-match))
4183 (defun org-export-resolve-fuzzy-link (link info)
4184 "Return LINK destination.
4186 INFO is a plist holding contextual information.
4188 Return value can be an object, an element, or nil:
4190 - If LINK path matches a target object (i.e. <<path>>) return it.
4192 - If LINK path exactly matches the name affiliated keyword
4193 \(i.e. #+NAME: path) of an element, return that element.
4195 - If LINK path exactly matches any headline name, return that
4196 element. If more than one headline share that name, priority
4197 will be given to the one with the closest common ancestor, if
4198 any, or the first one in the parse tree otherwise.
4200 - Otherwise, return nil.
4202 Assume LINK type is \"fuzzy\". White spaces are not
4203 significant."
4204 (let* ((raw-path (org-element-property :path link))
4205 (match-title-p (eq (aref raw-path 0) ?*))
4206 ;; Split PATH at white spaces so matches are space
4207 ;; insensitive.
4208 (path (org-split-string
4209 (if match-title-p (substring raw-path 1) raw-path)))
4210 ;; Cache for destinations that are not position dependent.
4211 (link-cache
4212 (or (plist-get info :resolve-fuzzy-link-cache)
4213 (plist-get (setq info (plist-put info :resolve-fuzzy-link-cache
4214 (make-hash-table :test 'equal)))
4215 :resolve-fuzzy-link-cache)))
4216 (cached (gethash path link-cache 'not-found)))
4217 (cond
4218 ;; Destination is not position dependent: use cached value.
4219 ((and (not match-title-p) (not (eq cached 'not-found))) cached)
4220 ;; First try to find a matching "<<path>>" unless user specified
4221 ;; he was looking for a headline (path starts with a "*"
4222 ;; character).
4223 ((and (not match-title-p)
4224 (let ((match (org-element-map (plist-get info :parse-tree) 'target
4225 (lambda (blob)
4226 (and (equal (org-split-string
4227 (org-element-property :value blob))
4228 path)
4229 blob))
4230 info 'first-match)))
4231 (and match (puthash path match link-cache)))))
4232 ;; Then try to find an element with a matching "#+NAME: path"
4233 ;; affiliated keyword.
4234 ((and (not match-title-p)
4235 (let ((match (org-element-map (plist-get info :parse-tree)
4236 org-element-all-elements
4237 (lambda (el)
4238 (let ((name (org-element-property :name el)))
4239 (when (and name
4240 (equal (org-split-string name) path))
4241 el)))
4242 info 'first-match)))
4243 (and match (puthash path match link-cache)))))
4244 ;; Last case: link either points to a headline or to nothingness.
4245 ;; Try to find the source, with priority given to headlines with
4246 ;; the closest common ancestor. If such candidate is found,
4247 ;; return it, otherwise return nil.
4249 (let ((find-headline
4250 (function
4251 ;; Return first headline whose `:raw-value' property is
4252 ;; NAME in parse tree DATA, or nil. Statistics cookies
4253 ;; are ignored.
4254 (lambda (name data)
4255 (org-element-map data 'headline
4256 (lambda (headline)
4257 (when (equal (org-split-string
4258 (replace-regexp-in-string
4259 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
4260 (org-element-property :raw-value headline)))
4261 name)
4262 headline))
4263 info 'first-match)))))
4264 ;; Search among headlines sharing an ancestor with link, from
4265 ;; closest to farthest.
4266 (catch 'exit
4267 (mapc
4268 (lambda (parent)
4269 (let ((foundp (funcall find-headline path parent)))
4270 (when foundp (throw 'exit foundp))))
4271 (let ((parent-hl (org-export-get-parent-headline link)))
4272 (if (not parent-hl) (list (plist-get info :parse-tree))
4273 (cons parent-hl (org-export-get-genealogy parent-hl)))))
4274 ;; No destination found: return nil.
4275 (and (not match-title-p) (puthash path nil link-cache))))))))
4277 (defun org-export-resolve-id-link (link info)
4278 "Return headline referenced as LINK destination.
4280 INFO is a plist used as a communication channel.
4282 Return value can be the headline element matched in current parse
4283 tree, a file name or nil. Assume LINK type is either \"id\" or
4284 \"custom-id\"."
4285 (let ((id (org-element-property :path link)))
4286 ;; First check if id is within the current parse tree.
4287 (or (org-element-map (plist-get info :parse-tree) 'headline
4288 (lambda (headline)
4289 (when (or (string= (org-element-property :ID headline) id)
4290 (string= (org-element-property :CUSTOM_ID headline) id))
4291 headline))
4292 info 'first-match)
4293 ;; Otherwise, look for external files.
4294 (cdr (assoc id (plist-get info :id-alist))))))
4296 (defun org-export-resolve-radio-link (link info)
4297 "Return radio-target object referenced as LINK destination.
4299 INFO is a plist used as a communication channel.
4301 Return value can be a radio-target object or nil. Assume LINK
4302 has type \"radio\"."
4303 (let ((path (replace-regexp-in-string
4304 "[ \r\t\n]+" " " (org-element-property :path link))))
4305 (org-element-map (plist-get info :parse-tree) 'radio-target
4306 (lambda (radio)
4307 (and (eq (compare-strings
4308 (replace-regexp-in-string
4309 "[ \r\t\n]+" " " (org-element-property :value radio))
4310 nil nil path nil nil t)
4312 radio))
4313 info 'first-match)))
4316 ;;;; For References
4318 ;; `org-export-get-ordinal' associates a sequence number to any object
4319 ;; or element.
4321 (defun org-export-get-ordinal (element info &optional types predicate)
4322 "Return ordinal number of an element or object.
4324 ELEMENT is the element or object considered. INFO is the plist
4325 used as a communication channel.
4327 Optional argument TYPES, when non-nil, is a list of element or
4328 object types, as symbols, that should also be counted in.
4329 Otherwise, only provided element's type is considered.
4331 Optional argument PREDICATE is a function returning a non-nil
4332 value if the current element or object should be counted in. It
4333 accepts two arguments: the element or object being considered and
4334 the plist used as a communication channel. This allows to count
4335 only a certain type of objects (i.e. inline images).
4337 Return value is a list of numbers if ELEMENT is a headline or an
4338 item. It is nil for keywords. It represents the footnote number
4339 for footnote definitions and footnote references. If ELEMENT is
4340 a target, return the same value as if ELEMENT was the closest
4341 table, item or headline containing the target. In any other
4342 case, return the sequence number of ELEMENT among elements or
4343 objects of the same type."
4344 ;; Ordinal of a target object refer to the ordinal of the closest
4345 ;; table, item, or headline containing the object.
4346 (when (eq (org-element-type element) 'target)
4347 (setq element
4348 (loop for parent in (org-export-get-genealogy element)
4349 when
4350 (memq
4351 (org-element-type parent)
4352 '(footnote-definition footnote-reference headline item
4353 table))
4354 return parent)))
4355 (case (org-element-type element)
4356 ;; Special case 1: A headline returns its number as a list.
4357 (headline (org-export-get-headline-number element info))
4358 ;; Special case 2: An item returns its number as a list.
4359 (item (let ((struct (org-element-property :structure element)))
4360 (org-list-get-item-number
4361 (org-element-property :begin element)
4362 struct
4363 (org-list-prevs-alist struct)
4364 (org-list-parents-alist struct))))
4365 ((footnote-definition footnote-reference)
4366 (org-export-get-footnote-number element info))
4367 (otherwise
4368 (let ((counter 0))
4369 ;; Increment counter until ELEMENT is found again.
4370 (org-element-map (plist-get info :parse-tree)
4371 (or types (org-element-type element))
4372 (lambda (el)
4373 (cond
4374 ((eq element el) (1+ counter))
4375 ((not predicate) (incf counter) nil)
4376 ((funcall predicate el info) (incf counter) nil)))
4377 info 'first-match)))))
4380 ;;;; For Src-Blocks
4382 ;; `org-export-get-loc' counts number of code lines accumulated in
4383 ;; src-block or example-block elements with a "+n" switch until
4384 ;; a given element, excluded. Note: "-n" switches reset that count.
4386 ;; `org-export-unravel-code' extracts source code (along with a code
4387 ;; references alist) from an `element-block' or `src-block' type
4388 ;; element.
4390 ;; `org-export-format-code' applies a formatting function to each line
4391 ;; of code, providing relative line number and code reference when
4392 ;; appropriate. Since it doesn't access the original element from
4393 ;; which the source code is coming, it expects from the code calling
4394 ;; it to know if lines should be numbered and if code references
4395 ;; should appear.
4397 ;; Eventually, `org-export-format-code-default' is a higher-level
4398 ;; function (it makes use of the two previous functions) which handles
4399 ;; line numbering and code references inclusion, and returns source
4400 ;; code in a format suitable for plain text or verbatim output.
4402 (defun org-export-get-loc (element info)
4403 "Return accumulated lines of code up to ELEMENT.
4405 INFO is the plist used as a communication channel.
4407 ELEMENT is excluded from count."
4408 (let ((loc 0))
4409 (org-element-map (plist-get info :parse-tree)
4410 `(src-block example-block ,(org-element-type element))
4411 (lambda (el)
4412 (cond
4413 ;; ELEMENT is reached: Quit the loop.
4414 ((eq el element))
4415 ;; Only count lines from src-block and example-block elements
4416 ;; with a "+n" or "-n" switch. A "-n" switch resets counter.
4417 ((not (memq (org-element-type el) '(src-block example-block))) nil)
4418 ((let ((linums (org-element-property :number-lines el)))
4419 (when linums
4420 ;; Accumulate locs or reset them.
4421 (let ((lines (org-count-lines
4422 (org-trim (org-element-property :value el)))))
4423 (setq loc (if (eq linums 'new) lines (+ loc lines))))))
4424 ;; Return nil to stay in the loop.
4425 nil)))
4426 info 'first-match)
4427 ;; Return value.
4428 loc))
4430 (defun org-export-unravel-code (element)
4431 "Clean source code and extract references out of it.
4433 ELEMENT has either a `src-block' an `example-block' type.
4435 Return a cons cell whose CAR is the source code, cleaned from any
4436 reference, protective commas and spurious indentation, and CDR is
4437 an alist between relative line number (integer) and name of code
4438 reference on that line (string)."
4439 (let* ((line 0) refs
4440 (value (org-element-property :value element))
4441 ;; Get code and clean it. Remove blank lines at its
4442 ;; beginning and end.
4443 (code (replace-regexp-in-string
4444 "\\`\\([ \t]*\n\\)+" ""
4445 (replace-regexp-in-string
4446 "\\([ \t]*\n\\)*[ \t]*\\'" "\n"
4447 (if (or org-src-preserve-indentation
4448 (org-element-property :preserve-indent element))
4449 value
4450 (org-element-remove-indentation value)))))
4451 ;; Get format used for references.
4452 (label-fmt (regexp-quote
4453 (or (org-element-property :label-fmt element)
4454 org-coderef-label-format)))
4455 ;; Build a regexp matching a loc with a reference.
4456 (with-ref-re
4457 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)[ \t]*\\)$"
4458 (replace-regexp-in-string
4459 "%s" "\\([-a-zA-Z0-9_ ]+\\)" label-fmt nil t))))
4460 ;; Return value.
4461 (cons
4462 ;; Code with references removed.
4463 (org-element-normalize-string
4464 (mapconcat
4465 (lambda (loc)
4466 (incf line)
4467 (if (not (string-match with-ref-re loc)) loc
4468 ;; Ref line: remove ref, and signal its position in REFS.
4469 (push (cons line (match-string 3 loc)) refs)
4470 (replace-match "" nil nil loc 1)))
4471 (org-split-string code "\n") "\n"))
4472 ;; Reference alist.
4473 refs)))
4475 (defun org-export-format-code (code fun &optional num-lines ref-alist)
4476 "Format CODE by applying FUN line-wise and return it.
4478 CODE is a string representing the code to format. FUN is
4479 a function. It must accept three arguments: a line of
4480 code (string), the current line number (integer) or nil and the
4481 reference associated to the current line (string) or nil.
4483 Optional argument NUM-LINES can be an integer representing the
4484 number of code lines accumulated until the current code. Line
4485 numbers passed to FUN will take it into account. If it is nil,
4486 FUN's second argument will always be nil. This number can be
4487 obtained with `org-export-get-loc' function.
4489 Optional argument REF-ALIST can be an alist between relative line
4490 number (i.e. ignoring NUM-LINES) and the name of the code
4491 reference on it. If it is nil, FUN's third argument will always
4492 be nil. It can be obtained through the use of
4493 `org-export-unravel-code' function."
4494 (let ((--locs (org-split-string code "\n"))
4495 (--line 0))
4496 (org-element-normalize-string
4497 (mapconcat
4498 (lambda (--loc)
4499 (incf --line)
4500 (let ((--ref (cdr (assq --line ref-alist))))
4501 (funcall fun --loc (and num-lines (+ num-lines --line)) --ref)))
4502 --locs "\n"))))
4504 (defun org-export-format-code-default (element info)
4505 "Return source code from ELEMENT, formatted in a standard way.
4507 ELEMENT is either a `src-block' or `example-block' element. INFO
4508 is a plist used as a communication channel.
4510 This function takes care of line numbering and code references
4511 inclusion. Line numbers, when applicable, appear at the
4512 beginning of the line, separated from the code by two white
4513 spaces. Code references, on the other hand, appear flushed to
4514 the right, separated by six white spaces from the widest line of
4515 code."
4516 ;; Extract code and references.
4517 (let* ((code-info (org-export-unravel-code element))
4518 (code (car code-info))
4519 (code-lines (org-split-string code "\n")))
4520 (if (null code-lines) ""
4521 (let* ((refs (and (org-element-property :retain-labels element)
4522 (cdr code-info)))
4523 ;; Handle line numbering.
4524 (num-start (case (org-element-property :number-lines element)
4525 (continued (org-export-get-loc element info))
4526 (new 0)))
4527 (num-fmt
4528 (and num-start
4529 (format "%%%ds "
4530 (length (number-to-string
4531 (+ (length code-lines) num-start))))))
4532 ;; Prepare references display, if required. Any reference
4533 ;; should start six columns after the widest line of code,
4534 ;; wrapped with parenthesis.
4535 (max-width
4536 (+ (apply 'max (mapcar 'length code-lines))
4537 (if (not num-start) 0 (length (format num-fmt num-start))))))
4538 (org-export-format-code
4539 code
4540 (lambda (loc line-num ref)
4541 (let ((number-str (and num-fmt (format num-fmt line-num))))
4542 (concat
4543 number-str
4545 (and ref
4546 (concat (make-string
4547 (- (+ 6 max-width)
4548 (+ (length loc) (length number-str))) ? )
4549 (format "(%s)" ref))))))
4550 num-start refs)))))
4553 ;;;; For Tables
4555 ;; `org-export-table-has-special-column-p' and and
4556 ;; `org-export-table-row-is-special-p' are predicates used to look for
4557 ;; meta-information about the table structure.
4559 ;; `org-table-has-header-p' tells when the rows before the first rule
4560 ;; should be considered as table's header.
4562 ;; `org-export-table-cell-width', `org-export-table-cell-alignment'
4563 ;; and `org-export-table-cell-borders' extract information from
4564 ;; a table-cell element.
4566 ;; `org-export-table-dimensions' gives the number on rows and columns
4567 ;; in the table, ignoring horizontal rules and special columns.
4568 ;; `org-export-table-cell-address', given a table-cell object, returns
4569 ;; the absolute address of a cell. On the other hand,
4570 ;; `org-export-get-table-cell-at' does the contrary.
4572 ;; `org-export-table-cell-starts-colgroup-p',
4573 ;; `org-export-table-cell-ends-colgroup-p',
4574 ;; `org-export-table-row-starts-rowgroup-p',
4575 ;; `org-export-table-row-ends-rowgroup-p',
4576 ;; `org-export-table-row-starts-header-p',
4577 ;; `org-export-table-row-ends-header-p' and
4578 ;; `org-export-table-row-in-header-p' indicate position of current row
4579 ;; or cell within the table.
4581 (defun org-export-table-has-special-column-p (table)
4582 "Non-nil when TABLE has a special column.
4583 All special columns will be ignored during export."
4584 ;; The table has a special column when every first cell of every row
4585 ;; has an empty value or contains a symbol among "/", "#", "!", "$",
4586 ;; "*" "_" and "^". Though, do not consider a first row containing
4587 ;; only empty cells as special.
4588 (let ((special-column-p 'empty))
4589 (catch 'exit
4590 (mapc
4591 (lambda (row)
4592 (when (eq (org-element-property :type row) 'standard)
4593 (let ((value (org-element-contents
4594 (car (org-element-contents row)))))
4595 (cond ((member value '(("/") ("#") ("!") ("$") ("*") ("_") ("^")))
4596 (setq special-column-p 'special))
4597 ((not value))
4598 (t (throw 'exit nil))))))
4599 (org-element-contents table))
4600 (eq special-column-p 'special))))
4602 (defun org-export-table-has-header-p (table info)
4603 "Non-nil when TABLE has a header.
4605 INFO is a plist used as a communication channel.
4607 A table has a header when it contains at least two row groups."
4608 (let ((cache (or (plist-get info :table-header-cache)
4609 (plist-get (setq info
4610 (plist-put info :table-header-cache
4611 (make-hash-table :test 'eq)))
4612 :table-header-cache))))
4613 (or (gethash table cache)
4614 (let ((rowgroup 1) row-flag)
4615 (puthash
4616 table
4617 (org-element-map table 'table-row
4618 (lambda (row)
4619 (cond
4620 ((> rowgroup 1) t)
4621 ((and row-flag (eq (org-element-property :type row) 'rule))
4622 (incf rowgroup) (setq row-flag nil))
4623 ((and (not row-flag) (eq (org-element-property :type row)
4624 'standard))
4625 (setq row-flag t) nil)))
4626 info 'first-match)
4627 cache)))))
4629 (defun org-export-table-row-is-special-p (table-row info)
4630 "Non-nil if TABLE-ROW is considered special.
4632 INFO is a plist used as the communication channel.
4634 All special rows will be ignored during export."
4635 (when (eq (org-element-property :type table-row) 'standard)
4636 (let ((first-cell (org-element-contents
4637 (car (org-element-contents table-row)))))
4638 ;; A row is special either when...
4640 ;; ... it starts with a field only containing "/",
4641 (equal first-cell '("/"))
4642 ;; ... the table contains a special column and the row start
4643 ;; with a marking character among, "^", "_", "$" or "!",
4644 (and (org-export-table-has-special-column-p
4645 (org-export-get-parent table-row))
4646 (member first-cell '(("^") ("_") ("$") ("!"))))
4647 ;; ... it contains only alignment cookies and empty cells.
4648 (let ((special-row-p 'empty))
4649 (catch 'exit
4650 (mapc
4651 (lambda (cell)
4652 (let ((value (org-element-contents cell)))
4653 ;; Since VALUE is a secondary string, the following
4654 ;; checks avoid expanding it with `org-export-data'.
4655 (cond ((not value))
4656 ((and (not (cdr value))
4657 (stringp (car value))
4658 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'"
4659 (car value)))
4660 (setq special-row-p 'cookie))
4661 (t (throw 'exit nil)))))
4662 (org-element-contents table-row))
4663 (eq special-row-p 'cookie)))))))
4665 (defun org-export-table-row-group (table-row info)
4666 "Return TABLE-ROW's group number, as an integer.
4668 INFO is a plist used as the communication channel.
4670 Return value is the group number, as an integer, or nil for
4671 special rows and rows separators. First group is also table's
4672 header."
4673 (let ((cache (or (plist-get info :table-row-group-cache)
4674 (plist-get (setq info
4675 (plist-put info :table-row-group-cache
4676 (make-hash-table :test 'eq)))
4677 :table-row-group-cache))))
4678 (cond ((gethash table-row cache))
4679 ((eq (org-element-property :type table-row) 'rule) nil)
4680 (t (let ((group 0) row-flag)
4681 (org-element-map (org-export-get-parent table-row) 'table-row
4682 (lambda (row)
4683 (if (eq (org-element-property :type row) 'rule)
4684 (setq row-flag nil)
4685 (unless row-flag (incf group) (setq row-flag t)))
4686 (when (eq table-row row) (puthash table-row group cache)))
4687 info 'first-match))))))
4689 (defun org-export-table-cell-width (table-cell info)
4690 "Return TABLE-CELL contents width.
4692 INFO is a plist used as the communication channel.
4694 Return value is the width given by the last width cookie in the
4695 same column as TABLE-CELL, or nil."
4696 (let* ((row (org-export-get-parent table-cell))
4697 (table (org-export-get-parent row))
4698 (cells (org-element-contents row))
4699 (columns (length cells))
4700 (column (- columns (length (memq table-cell cells))))
4701 (cache (or (plist-get info :table-cell-width-cache)
4702 (plist-get (setq info
4703 (plist-put info :table-cell-width-cache
4704 (make-hash-table :test 'eq)))
4705 :table-cell-width-cache)))
4706 (width-vector (or (gethash table cache)
4707 (puthash table (make-vector columns 'empty) cache)))
4708 (value (aref width-vector column)))
4709 (if (not (eq value 'empty)) value
4710 (let (cookie-width)
4711 (dolist (row (org-element-contents table)
4712 (aset width-vector column cookie-width))
4713 (when (org-export-table-row-is-special-p row info)
4714 ;; In a special row, try to find a width cookie at COLUMN.
4715 (let* ((value (org-element-contents
4716 (elt (org-element-contents row) column)))
4717 (cookie (car value)))
4718 ;; The following checks avoid expanding unnecessarily
4719 ;; the cell with `org-export-data'.
4720 (when (and value
4721 (not (cdr value))
4722 (stringp cookie)
4723 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie)
4724 (match-string 1 cookie))
4725 (setq cookie-width
4726 (string-to-number (match-string 1 cookie)))))))))))
4728 (defun org-export-table-cell-alignment (table-cell info)
4729 "Return TABLE-CELL contents alignment.
4731 INFO is a plist used as the communication channel.
4733 Return alignment as specified by the last alignment cookie in the
4734 same column as TABLE-CELL. If no such cookie is found, a default
4735 alignment value will be deduced from fraction of numbers in the
4736 column (see `org-table-number-fraction' for more information).
4737 Possible values are `left', `right' and `center'."
4738 ;; Load `org-table-number-fraction' and `org-table-number-regexp'.
4739 (require 'org-table)
4740 (let* ((row (org-export-get-parent table-cell))
4741 (table (org-export-get-parent row))
4742 (cells (org-element-contents row))
4743 (columns (length cells))
4744 (column (- columns (length (memq table-cell cells))))
4745 (cache (or (plist-get info :table-cell-alignment-cache)
4746 (plist-get (setq info
4747 (plist-put info :table-cell-alignment-cache
4748 (make-hash-table :test 'eq)))
4749 :table-cell-alignment-cache)))
4750 (align-vector (or (gethash table cache)
4751 (puthash table (make-vector columns nil) cache))))
4752 (or (aref align-vector column)
4753 (let ((number-cells 0)
4754 (total-cells 0)
4755 cookie-align
4756 previous-cell-number-p)
4757 (dolist (row (org-element-contents (org-export-get-parent row)))
4758 (cond
4759 ;; In a special row, try to find an alignment cookie at
4760 ;; COLUMN.
4761 ((org-export-table-row-is-special-p row info)
4762 (let ((value (org-element-contents
4763 (elt (org-element-contents row) column))))
4764 ;; Since VALUE is a secondary string, the following
4765 ;; checks avoid useless expansion through
4766 ;; `org-export-data'.
4767 (when (and value
4768 (not (cdr value))
4769 (stringp (car value))
4770 (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'"
4771 (car value))
4772 (match-string 1 (car value)))
4773 (setq cookie-align (match-string 1 (car value))))))
4774 ;; Ignore table rules.
4775 ((eq (org-element-property :type row) 'rule))
4776 ;; In a standard row, check if cell's contents are
4777 ;; expressing some kind of number. Increase NUMBER-CELLS
4778 ;; accordingly. Though, don't bother if an alignment
4779 ;; cookie has already defined cell's alignment.
4780 ((not cookie-align)
4781 (let ((value (org-export-data
4782 (org-element-contents
4783 (elt (org-element-contents row) column))
4784 info)))
4785 (incf total-cells)
4786 ;; Treat an empty cell as a number if it follows
4787 ;; a number.
4788 (if (not (or (string-match org-table-number-regexp value)
4789 (and (string= value "") previous-cell-number-p)))
4790 (setq previous-cell-number-p nil)
4791 (setq previous-cell-number-p t)
4792 (incf number-cells))))))
4793 ;; Return value. Alignment specified by cookies has
4794 ;; precedence over alignment deduced from cell's contents.
4795 (aset align-vector
4796 column
4797 (cond ((equal cookie-align "l") 'left)
4798 ((equal cookie-align "r") 'right)
4799 ((equal cookie-align "c") 'center)
4800 ((>= (/ (float number-cells) total-cells)
4801 org-table-number-fraction)
4802 'right)
4803 (t 'left)))))))
4805 (defun org-export-table-cell-borders (table-cell info)
4806 "Return TABLE-CELL borders.
4808 INFO is a plist used as a communication channel.
4810 Return value is a list of symbols, or nil. Possible values are:
4811 `top', `bottom', `above', `below', `left' and `right'. Note:
4812 `top' (resp. `bottom') only happen for a cell in the first
4813 row (resp. last row) of the table, ignoring table rules, if any.
4815 Returned borders ignore special rows."
4816 (let* ((row (org-export-get-parent table-cell))
4817 (table (org-export-get-parent-table table-cell))
4818 borders)
4819 ;; Top/above border? TABLE-CELL has a border above when a rule
4820 ;; used to demarcate row groups can be found above. Hence,
4821 ;; finding a rule isn't sufficient to push `above' in BORDERS:
4822 ;; another regular row has to be found above that rule.
4823 (let (rule-flag)
4824 (catch 'exit
4825 (mapc (lambda (row)
4826 (cond ((eq (org-element-property :type row) 'rule)
4827 (setq rule-flag t))
4828 ((not (org-export-table-row-is-special-p row info))
4829 (if rule-flag (throw 'exit (push 'above borders))
4830 (throw 'exit nil)))))
4831 ;; Look at every row before the current one.
4832 (cdr (memq row (reverse (org-element-contents table)))))
4833 ;; No rule above, or rule found starts the table (ignoring any
4834 ;; special row): TABLE-CELL is at the top of the table.
4835 (when rule-flag (push 'above borders))
4836 (push 'top borders)))
4837 ;; Bottom/below border? TABLE-CELL has a border below when next
4838 ;; non-regular row below is a rule.
4839 (let (rule-flag)
4840 (catch 'exit
4841 (mapc (lambda (row)
4842 (cond ((eq (org-element-property :type row) 'rule)
4843 (setq rule-flag t))
4844 ((not (org-export-table-row-is-special-p row info))
4845 (if rule-flag (throw 'exit (push 'below borders))
4846 (throw 'exit nil)))))
4847 ;; Look at every row after the current one.
4848 (cdr (memq row (org-element-contents table))))
4849 ;; No rule below, or rule found ends the table (modulo some
4850 ;; special row): TABLE-CELL is at the bottom of the table.
4851 (when rule-flag (push 'below borders))
4852 (push 'bottom borders)))
4853 ;; Right/left borders? They can only be specified by column
4854 ;; groups. Column groups are defined in a row starting with "/".
4855 ;; Also a column groups row only contains "<", "<>", ">" or blank
4856 ;; cells.
4857 (catch 'exit
4858 (let ((column (let ((cells (org-element-contents row)))
4859 (- (length cells) (length (memq table-cell cells))))))
4860 (mapc
4861 (lambda (row)
4862 (unless (eq (org-element-property :type row) 'rule)
4863 (when (equal (org-element-contents
4864 (car (org-element-contents row)))
4865 '("/"))
4866 (let ((column-groups
4867 (mapcar
4868 (lambda (cell)
4869 (let ((value (org-element-contents cell)))
4870 (when (member value '(("<") ("<>") (">") nil))
4871 (car value))))
4872 (org-element-contents row))))
4873 ;; There's a left border when previous cell, if
4874 ;; any, ends a group, or current one starts one.
4875 (when (or (and (not (zerop column))
4876 (member (elt column-groups (1- column))
4877 '(">" "<>")))
4878 (member (elt column-groups column) '("<" "<>")))
4879 (push 'left borders))
4880 ;; There's a right border when next cell, if any,
4881 ;; starts a group, or current one ends one.
4882 (when (or (and (/= (1+ column) (length column-groups))
4883 (member (elt column-groups (1+ column))
4884 '("<" "<>")))
4885 (member (elt column-groups column) '(">" "<>")))
4886 (push 'right borders))
4887 (throw 'exit nil)))))
4888 ;; Table rows are read in reverse order so last column groups
4889 ;; row has precedence over any previous one.
4890 (reverse (org-element-contents table)))))
4891 ;; Return value.
4892 borders))
4894 (defun org-export-table-cell-starts-colgroup-p (table-cell info)
4895 "Non-nil when TABLE-CELL is at the beginning of a column group.
4896 INFO is a plist used as a communication channel."
4897 ;; A cell starts a column group either when it is at the beginning
4898 ;; of a row (or after the special column, if any) or when it has
4899 ;; a left border.
4900 (or (eq (org-element-map (org-export-get-parent table-cell) 'table-cell
4901 'identity info 'first-match)
4902 table-cell)
4903 (memq 'left (org-export-table-cell-borders table-cell info))))
4905 (defun org-export-table-cell-ends-colgroup-p (table-cell info)
4906 "Non-nil when TABLE-CELL is at the end of a column group.
4907 INFO is a plist used as a communication channel."
4908 ;; A cell ends a column group either when it is at the end of a row
4909 ;; or when it has a right border.
4910 (or (eq (car (last (org-element-contents
4911 (org-export-get-parent table-cell))))
4912 table-cell)
4913 (memq 'right (org-export-table-cell-borders table-cell info))))
4915 (defun org-export-table-row-starts-rowgroup-p (table-row info)
4916 "Non-nil when TABLE-ROW is at the beginning of a row group.
4917 INFO is a plist used as a communication channel."
4918 (unless (or (eq (org-element-property :type table-row) 'rule)
4919 (org-export-table-row-is-special-p table-row info))
4920 (let ((borders (org-export-table-cell-borders
4921 (car (org-element-contents table-row)) info)))
4922 (or (memq 'top borders) (memq 'above borders)))))
4924 (defun org-export-table-row-ends-rowgroup-p (table-row info)
4925 "Non-nil when TABLE-ROW is at the end of a row group.
4926 INFO is a plist used as a communication channel."
4927 (unless (or (eq (org-element-property :type table-row) 'rule)
4928 (org-export-table-row-is-special-p table-row info))
4929 (let ((borders (org-export-table-cell-borders
4930 (car (org-element-contents table-row)) info)))
4931 (or (memq 'bottom borders) (memq 'below borders)))))
4933 (defun org-export-table-row-in-header-p (table-row info)
4934 "Non-nil when TABLE-ROW is located within table's header.
4935 INFO is a plist used as a communication channel. Always return
4936 nil for special rows and rows separators."
4937 (and (org-export-table-has-header-p
4938 (org-export-get-parent-table table-row) info)
4939 (eql (org-export-table-row-group table-row info) 1)))
4941 (defun org-export-table-row-starts-header-p (table-row info)
4942 "Non-nil when TABLE-ROW is the first table header's row.
4943 INFO is a plist used as a communication channel."
4944 (and (org-export-table-row-in-header-p table-row info)
4945 (org-export-table-row-starts-rowgroup-p table-row info)))
4947 (defun org-export-table-row-ends-header-p (table-row info)
4948 "Non-nil when TABLE-ROW is the last table header's row.
4949 INFO is a plist used as a communication channel."
4950 (and (org-export-table-row-in-header-p table-row info)
4951 (org-export-table-row-ends-rowgroup-p table-row info)))
4953 (defun org-export-table-row-number (table-row info)
4954 "Return TABLE-ROW number.
4955 INFO is a plist used as a communication channel. Return value is
4956 zero-based and ignores separators. The function returns nil for
4957 special columns and separators."
4958 (when (and (eq (org-element-property :type table-row) 'standard)
4959 (not (org-export-table-row-is-special-p table-row info)))
4960 (let ((number 0))
4961 (org-element-map (org-export-get-parent-table table-row) 'table-row
4962 (lambda (row)
4963 (cond ((eq row table-row) number)
4964 ((eq (org-element-property :type row) 'standard)
4965 (incf number) nil)))
4966 info 'first-match))))
4968 (defun org-export-table-dimensions (table info)
4969 "Return TABLE dimensions.
4971 INFO is a plist used as a communication channel.
4973 Return value is a CONS like (ROWS . COLUMNS) where
4974 ROWS (resp. COLUMNS) is the number of exportable
4975 rows (resp. columns)."
4976 (let (first-row (columns 0) (rows 0))
4977 ;; Set number of rows, and extract first one.
4978 (org-element-map table 'table-row
4979 (lambda (row)
4980 (when (eq (org-element-property :type row) 'standard)
4981 (incf rows)
4982 (unless first-row (setq first-row row)))) info)
4983 ;; Set number of columns.
4984 (org-element-map first-row 'table-cell (lambda (cell) (incf columns)) info)
4985 ;; Return value.
4986 (cons rows columns)))
4988 (defun org-export-table-cell-address (table-cell info)
4989 "Return address of a regular TABLE-CELL object.
4991 TABLE-CELL is the cell considered. INFO is a plist used as
4992 a communication channel.
4994 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
4995 zero-based index. Only exportable cells are considered. The
4996 function returns nil for other cells."
4997 (let* ((table-row (org-export-get-parent table-cell))
4998 (row-number (org-export-table-row-number table-row info)))
4999 (when row-number
5000 (cons row-number
5001 (let ((col-count 0))
5002 (org-element-map table-row 'table-cell
5003 (lambda (cell)
5004 (if (eq cell table-cell) col-count (incf col-count) nil))
5005 info 'first-match))))))
5007 (defun org-export-get-table-cell-at (address table info)
5008 "Return regular table-cell object at ADDRESS in TABLE.
5010 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
5011 zero-based index. TABLE is a table type element. INFO is
5012 a plist used as a communication channel.
5014 If no table-cell, among exportable cells, is found at ADDRESS,
5015 return nil."
5016 (let ((column-pos (cdr address)) (column-count 0))
5017 (org-element-map
5018 ;; Row at (car address) or nil.
5019 (let ((row-pos (car address)) (row-count 0))
5020 (org-element-map table 'table-row
5021 (lambda (row)
5022 (cond ((eq (org-element-property :type row) 'rule) nil)
5023 ((= row-count row-pos) row)
5024 (t (incf row-count) nil)))
5025 info 'first-match))
5026 'table-cell
5027 (lambda (cell)
5028 (if (= column-count column-pos) cell
5029 (incf column-count) nil))
5030 info 'first-match)))
5033 ;;;; For Tables Of Contents
5035 ;; `org-export-collect-headlines' builds a list of all exportable
5036 ;; headline elements, maybe limited to a certain depth. One can then
5037 ;; easily parse it and transcode it.
5039 ;; Building lists of tables, figures or listings is quite similar.
5040 ;; Once the generic function `org-export-collect-elements' is defined,
5041 ;; `org-export-collect-tables', `org-export-collect-figures' and
5042 ;; `org-export-collect-listings' can be derived from it.
5044 (defun org-export-collect-headlines (info &optional n)
5045 "Collect headlines in order to build a table of contents.
5047 INFO is a plist used as a communication channel.
5049 When optional argument N is an integer, it specifies the depth of
5050 the table of contents. Otherwise, it is set to the value of the
5051 last headline level. See `org-export-headline-levels' for more
5052 information.
5054 Return a list of all exportable headlines as parsed elements.
5055 Footnote sections, if any, will be ignored."
5056 (let ((limit (plist-get info :headline-levels)))
5057 (setq n (if (wholenump n) (min n limit) limit))
5058 (org-element-map (plist-get info :parse-tree) 'headline
5059 #'(lambda (headline)
5060 (unless (org-element-property :footnote-section-p headline)
5061 (let ((level (org-export-get-relative-level headline info)))
5062 (and (<= level n) headline))))
5063 info)))
5065 (defun org-export-collect-elements (type info &optional predicate)
5066 "Collect referenceable elements of a determined type.
5068 TYPE can be a symbol or a list of symbols specifying element
5069 types to search. Only elements with a caption are collected.
5071 INFO is a plist used as a communication channel.
5073 When non-nil, optional argument PREDICATE is a function accepting
5074 one argument, an element of type TYPE. It returns a non-nil
5075 value when that element should be collected.
5077 Return a list of all elements found, in order of appearance."
5078 (org-element-map (plist-get info :parse-tree) type
5079 (lambda (element)
5080 (and (org-element-property :caption element)
5081 (or (not predicate) (funcall predicate element))
5082 element))
5083 info))
5085 (defun org-export-collect-tables (info)
5086 "Build a list of tables.
5087 INFO is a plist used as a communication channel.
5089 Return a list of table elements with a caption."
5090 (org-export-collect-elements 'table info))
5092 (defun org-export-collect-figures (info predicate)
5093 "Build a list of figures.
5095 INFO is a plist used as a communication channel. PREDICATE is
5096 a function which accepts one argument: a paragraph element and
5097 whose return value is non-nil when that element should be
5098 collected.
5100 A figure is a paragraph type element, with a caption, verifying
5101 PREDICATE. The latter has to be provided since a \"figure\" is
5102 a vague concept that may depend on back-end.
5104 Return a list of elements recognized as figures."
5105 (org-export-collect-elements 'paragraph info predicate))
5107 (defun org-export-collect-listings (info)
5108 "Build a list of src blocks.
5110 INFO is a plist used as a communication channel.
5112 Return a list of src-block elements with a caption."
5113 (org-export-collect-elements 'src-block info))
5116 ;;;; Smart Quotes
5118 ;; The main function for the smart quotes sub-system is
5119 ;; `org-export-activate-smart-quotes', which replaces every quote in
5120 ;; a given string from the parse tree with its "smart" counterpart.
5122 ;; Dictionary for smart quotes is stored in
5123 ;; `org-export-smart-quotes-alist'.
5125 ;; Internally, regexps matching potential smart quotes (checks at
5126 ;; string boundaries are also necessary) are defined in
5127 ;; `org-export-smart-quotes-regexps'.
5129 (defconst org-export-smart-quotes-alist
5130 '(("da"
5131 ;; one may use: »...«, "...", ›...‹, or '...'.
5132 ;; http://sproget.dk/raad-og-regler/retskrivningsregler/retskrivningsregler/a7-40-60/a7-58-anforselstegn/
5133 ;; LaTeX quotes require Babel!
5134 (opening-double-quote :utf-8 "»" :html "&raquo;" :latex ">>"
5135 :texinfo "@guillemetright{}")
5136 (closing-double-quote :utf-8 "«" :html "&laquo;" :latex "<<"
5137 :texinfo "@guillemetleft{}")
5138 (opening-single-quote :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}"
5139 :texinfo "@guilsinglright{}")
5140 (closing-single-quote :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}"
5141 :texinfo "@guilsingleft{}")
5142 (apostrophe :utf-8 "’" :html "&rsquo;"))
5143 ("de"
5144 (opening-double-quote :utf-8 "„" :html "&bdquo;" :latex "\"`"
5145 :texinfo "@quotedblbase{}")
5146 (closing-double-quote :utf-8 "“" :html "&ldquo;" :latex "\"'"
5147 :texinfo "@quotedblleft{}")
5148 (opening-single-quote :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}"
5149 :texinfo "@quotesinglbase{}")
5150 (closing-single-quote :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}"
5151 :texinfo "@quoteleft{}")
5152 (apostrophe :utf-8 "’" :html "&rsquo;"))
5153 ("en"
5154 (opening-double-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5155 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5156 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5157 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5158 (apostrophe :utf-8 "’" :html "&rsquo;"))
5159 ("es"
5160 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5161 :texinfo "@guillemetleft{}")
5162 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5163 :texinfo "@guillemetright{}")
5164 (opening-single-quote :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
5165 (closing-single-quote :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
5166 (apostrophe :utf-8 "’" :html "&rsquo;"))
5167 ("fr"
5168 (opening-double-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5169 :texinfo "@guillemetleft{}@tie{}")
5170 (closing-double-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5171 :texinfo "@tie{}@guillemetright{}")
5172 (opening-single-quote :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
5173 :texinfo "@guillemetleft{}@tie{}")
5174 (closing-single-quote :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
5175 :texinfo "@tie{}@guillemetright{}")
5176 (apostrophe :utf-8 "’" :html "&rsquo;"))
5177 ("no"
5178 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5179 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5180 :texinfo "@guillemetleft{}")
5181 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5182 :texinfo "@guillemetright{}")
5183 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5184 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5185 (apostrophe :utf-8 "’" :html "&rsquo;"))
5186 ("nb"
5187 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5188 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5189 :texinfo "@guillemetleft{}")
5190 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5191 :texinfo "@guillemetright{}")
5192 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5193 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5194 (apostrophe :utf-8 "’" :html "&rsquo;"))
5195 ("nn"
5196 ;; https://nn.wikipedia.org/wiki/Sitatteikn
5197 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
5198 :texinfo "@guillemetleft{}")
5199 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
5200 :texinfo "@guillemetright{}")
5201 (opening-single-quote :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
5202 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
5203 (apostrophe :utf-8 "’" :html "&rsquo;"))
5204 ("ru"
5205 ;; 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
5206 ;; http://www.artlebedev.ru/kovodstvo/sections/104/
5207 (opening-double-quote :utf-8 "«" :html "&laquo;" :latex "{}<<"
5208 :texinfo "@guillemetleft{}")
5209 (closing-double-quote :utf-8 "»" :html "&raquo;" :latex ">>{}"
5210 :texinfo "@guillemetright{}")
5211 (opening-single-quote :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}"
5212 :texinfo "@quotedblbase{}")
5213 (closing-single-quote :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}"
5214 :texinfo "@quotedblleft{}")
5215 (apostrophe :utf-8 "’" :html: "&#39;"))
5216 ("sv"
5217 ;; based on https://sv.wikipedia.org/wiki/Citattecken
5218 (opening-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5219 (closing-double-quote :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
5220 (opening-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`")
5221 (closing-single-quote :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'")
5222 (apostrophe :utf-8 "’" :html "&rsquo;"))
5224 "Smart quotes translations.
5226 Alist whose CAR is a language string and CDR is an alist with
5227 quote type as key and a plist associating various encodings to
5228 their translation as value.
5230 A quote type can be any symbol among `opening-double-quote',
5231 `closing-double-quote', `opening-single-quote',
5232 `closing-single-quote' and `apostrophe'.
5234 Valid encodings include `:utf-8', `:html', `:latex' and
5235 `:texinfo'.
5237 If no translation is found, the quote character is left as-is.")
5239 (defconst org-export-smart-quotes-regexps
5240 (list
5241 ;; Possible opening quote at beginning of string.
5242 "\\`\\([\"']\\)\\(\\w\\|\\s.\\|\\s_\\|\\s(\\)"
5243 ;; Possible closing quote at beginning of string.
5244 "\\`\\([\"']\\)\\(\\s-\\|\\s)\\|\\s.\\)"
5245 ;; Possible apostrophe at beginning of string.
5246 "\\`\\('\\)\\S-"
5247 ;; Opening single and double quotes.
5248 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\(?:\\w\\|\\s.\\|\\s_\\)"
5249 ;; Closing single and double quotes.
5250 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\(?:\\s-\\|\\s)\\|\\s.\\)"
5251 ;; Apostrophe.
5252 "\\S-\\('\\)\\S-"
5253 ;; Possible opening quote at end of string.
5254 "\\(?:\\s-\\|\\s(\\)\\([\"']\\)\\'"
5255 ;; Possible closing quote at end of string.
5256 "\\(?:\\w\\|\\s.\\|\\s_\\)\\([\"']\\)\\'"
5257 ;; Possible apostrophe at end of string.
5258 "\\S-\\('\\)\\'")
5259 "List of regexps matching a quote or an apostrophe.
5260 In every regexp, quote or apostrophe matched is put in group 1.")
5262 (defun org-export-activate-smart-quotes (s encoding info &optional original)
5263 "Replace regular quotes with \"smart\" quotes in string S.
5265 ENCODING is a symbol among `:html', `:latex', `:texinfo' and
5266 `:utf-8'. INFO is a plist used as a communication channel.
5268 The function has to retrieve information about string
5269 surroundings in parse tree. It can only happen with an
5270 unmodified string. Thus, if S has already been through another
5271 process, a non-nil ORIGINAL optional argument will provide that
5272 original string.
5274 Return the new string."
5275 (if (equal s "") ""
5276 (let* ((prev (org-export-get-previous-element (or original s) info))
5277 ;; Try to be flexible when computing number of blanks
5278 ;; before object. The previous object may be a string
5279 ;; introduced by the back-end and not completely parsed.
5280 (pre-blank (and prev
5281 (or (org-element-property :post-blank prev)
5282 ;; A string with missing `:post-blank'
5283 ;; property.
5284 (and (stringp prev)
5285 (string-match " *\\'" prev)
5286 (length (match-string 0 prev)))
5287 ;; Fallback value.
5288 0)))
5289 (next (org-export-get-next-element (or original s) info))
5290 (get-smart-quote
5291 (lambda (q type)
5292 ;; Return smart quote associated to a give quote Q, as
5293 ;; a string. TYPE is a symbol among `open', `close' and
5294 ;; `apostrophe'.
5295 (let ((key (case type
5296 (apostrophe 'apostrophe)
5297 (open (if (equal "'" q) 'opening-single-quote
5298 'opening-double-quote))
5299 (otherwise (if (equal "'" q) 'closing-single-quote
5300 'closing-double-quote)))))
5301 (or (plist-get
5302 (cdr (assq key
5303 (cdr (assoc (plist-get info :language)
5304 org-export-smart-quotes-alist))))
5305 encoding)
5306 q)))))
5307 (if (or (equal "\"" s) (equal "'" s))
5308 ;; Only a quote: no regexp can match. We have to check both
5309 ;; sides and decide what to do.
5310 (cond ((and (not prev) (not next)) s)
5311 ((not prev) (funcall get-smart-quote s 'open))
5312 ((and (not next) (zerop pre-blank))
5313 (funcall get-smart-quote s 'close))
5314 ((not next) s)
5315 ((zerop pre-blank) (funcall get-smart-quote s 'apostrophe))
5316 (t (funcall get-smart-quote 'open)))
5317 ;; 1. Replace quote character at the beginning of S.
5318 (cond
5319 ;; Apostrophe?
5320 ((and prev (zerop pre-blank)
5321 (string-match (nth 2 org-export-smart-quotes-regexps) s))
5322 (setq s (replace-match
5323 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5324 nil t s 1)))
5325 ;; Closing quote?
5326 ((and prev (zerop pre-blank)
5327 (string-match (nth 1 org-export-smart-quotes-regexps) s))
5328 (setq s (replace-match
5329 (funcall get-smart-quote (match-string 1 s) 'close)
5330 nil t s 1)))
5331 ;; Opening quote?
5332 ((and (or (not prev) (> pre-blank 0))
5333 (string-match (nth 0 org-export-smart-quotes-regexps) s))
5334 (setq s (replace-match
5335 (funcall get-smart-quote (match-string 1 s) 'open)
5336 nil t s 1))))
5337 ;; 2. Replace quotes in the middle of the string.
5338 (setq s (replace-regexp-in-string
5339 ;; Opening quotes.
5340 (nth 3 org-export-smart-quotes-regexps)
5341 (lambda (text)
5342 (funcall get-smart-quote (match-string 1 text) 'open))
5343 s nil t 1))
5344 (setq s (replace-regexp-in-string
5345 ;; Closing quotes.
5346 (nth 4 org-export-smart-quotes-regexps)
5347 (lambda (text)
5348 (funcall get-smart-quote (match-string 1 text) 'close))
5349 s nil t 1))
5350 (setq s (replace-regexp-in-string
5351 ;; Apostrophes.
5352 (nth 5 org-export-smart-quotes-regexps)
5353 (lambda (text)
5354 (funcall get-smart-quote (match-string 1 text) 'apostrophe))
5355 s nil t 1))
5356 ;; 3. Replace quote character at the end of S.
5357 (cond
5358 ;; Apostrophe?
5359 ((and next (string-match (nth 8 org-export-smart-quotes-regexps) s))
5360 (setq s (replace-match
5361 (funcall get-smart-quote (match-string 1 s) 'apostrophe)
5362 nil t s 1)))
5363 ;; Closing quote?
5364 ((and (not next)
5365 (string-match (nth 7 org-export-smart-quotes-regexps) s))
5366 (setq s (replace-match
5367 (funcall get-smart-quote (match-string 1 s) 'close)
5368 nil t s 1)))
5369 ;; Opening quote?
5370 ((and next (string-match (nth 6 org-export-smart-quotes-regexps) s))
5371 (setq s (replace-match
5372 (funcall get-smart-quote (match-string 1 s) 'open)
5373 nil t s 1))))
5374 ;; Return string with smart quotes.
5375 s))))
5377 ;;;; Topology
5379 ;; Here are various functions to retrieve information about the
5380 ;; neighborhood of a given element or object. Neighbors of interest
5381 ;; are direct parent (`org-export-get-parent'), parent headline
5382 ;; (`org-export-get-parent-headline'), first element containing an
5383 ;; object, (`org-export-get-parent-element'), parent table
5384 ;; (`org-export-get-parent-table'), previous element or object
5385 ;; (`org-export-get-previous-element') and next element or object
5386 ;; (`org-export-get-next-element').
5388 ;; `org-export-get-genealogy' returns the full genealogy of a given
5389 ;; element or object, from closest parent to full parse tree.
5391 ;; defsubst org-export-get-parent must be defined before first use
5393 (defun org-export-get-genealogy (blob)
5394 "Return full genealogy relative to a given element or object.
5396 BLOB is the element or object being considered.
5398 Ancestors are returned from closest to farthest, the last one
5399 being the full parse tree."
5400 (let (genealogy (parent blob))
5401 (while (setq parent (org-element-property :parent parent))
5402 (push parent genealogy))
5403 (nreverse genealogy)))
5405 (defun org-export-get-parent-headline (blob)
5406 "Return BLOB parent headline or nil.
5407 BLOB is the element or object being considered."
5408 (let ((parent blob))
5409 (while (and (setq parent (org-element-property :parent parent))
5410 (not (eq (org-element-type parent) 'headline))))
5411 parent))
5413 (defun org-export-get-parent-element (object)
5414 "Return first element containing OBJECT or nil.
5415 OBJECT is the object to consider."
5416 (let ((parent object))
5417 (while (and (setq parent (org-element-property :parent parent))
5418 (memq (org-element-type parent) org-element-all-objects)))
5419 parent))
5421 (defun org-export-get-parent-table (object)
5422 "Return OBJECT parent table or nil.
5423 OBJECT is either a `table-cell' or `table-element' type object."
5424 (let ((parent object))
5425 (while (and (setq parent (org-element-property :parent parent))
5426 (not (eq (org-element-type parent) 'table))))
5427 parent))
5429 (defun org-export-get-previous-element (blob info &optional n)
5430 "Return previous element or object.
5432 BLOB is an element or object. INFO is a plist used as
5433 a communication channel. Return previous exportable element or
5434 object, a string, or nil.
5436 When optional argument N is a positive integer, return a list
5437 containing up to N siblings before BLOB, from farthest to
5438 closest. With any other non-nil value, return a list containing
5439 all of them."
5440 (let* ((secondary (org-element-secondary-p blob))
5441 (parent (org-export-get-parent blob))
5442 (siblings
5443 (if secondary (org-element-property secondary parent)
5444 (org-element-contents parent)))
5445 prev)
5446 (catch 'exit
5447 (dolist (obj (cdr (memq blob (reverse siblings))) prev)
5448 (cond ((memq obj (plist-get info :ignore-list)))
5449 ((null n) (throw 'exit obj))
5450 ((not (wholenump n)) (push obj prev))
5451 ((zerop n) (throw 'exit prev))
5452 (t (decf n) (push obj prev)))))))
5454 (defun org-export-get-next-element (blob info &optional n)
5455 "Return next element or object.
5457 BLOB is an element or object. INFO is a plist used as
5458 a communication channel. Return next exportable element or
5459 object, a string, or nil.
5461 When optional argument N is a positive integer, return a list
5462 containing up to N siblings after BLOB, from closest to farthest.
5463 With any other non-nil value, return a list containing all of
5464 them."
5465 (let* ((secondary (org-element-secondary-p blob))
5466 (parent (org-export-get-parent blob))
5467 (siblings
5468 (cdr (memq blob
5469 (if secondary (org-element-property secondary parent)
5470 (org-element-contents parent)))))
5471 next)
5472 (catch 'exit
5473 (dolist (obj siblings (nreverse next))
5474 (cond ((memq obj (plist-get info :ignore-list)))
5475 ((null n) (throw 'exit obj))
5476 ((not (wholenump n)) (push obj next))
5477 ((zerop n) (throw 'exit (nreverse next)))
5478 (t (decf n) (push obj next)))))))
5481 ;;;; Translation
5483 ;; `org-export-translate' translates a string according to the language
5484 ;; specified by the LANGUAGE keyword. `org-export-dictionary' contains
5485 ;; the dictionary used for the translation.
5487 (defconst org-export-dictionary
5488 '(("%e %n: %c"
5489 ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c"))
5490 ("Author"
5491 ("ca" :default "Autor")
5492 ("cs" :default "Autor")
5493 ("da" :default "Forfatter")
5494 ("de" :default "Autor")
5495 ("eo" :html "A&#365;toro")
5496 ("es" :default "Autor")
5497 ("et" :default "Autor")
5498 ("fi" :html "Tekij&auml;")
5499 ("fr" :default "Auteur")
5500 ("hu" :default "Szerz&otilde;")
5501 ("is" :html "H&ouml;fundur")
5502 ("it" :default "Autore")
5503 ("ja" :default "著者" :html "&#33879;&#32773;")
5504 ("nl" :default "Auteur")
5505 ("no" :default "Forfatter")
5506 ("nb" :default "Forfatter")
5507 ("nn" :default "Forfattar")
5508 ("pl" :default "Autor")
5509 ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5510 ("sv" :html "F&ouml;rfattare")
5511 ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
5512 ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者")
5513 ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者"))
5514 ("Continued from previous page"
5515 ("de" :default "Fortsetzung von vorheriger Seite")
5516 ("es" :default "Continúa de la página anterior")
5517 ("fr" :default "Suite de la page précédente")
5518 ("it" :default "Continua da pagina precedente")
5519 ("ja" :default "前ページからの続き")
5520 ("nl" :default "Vervolg van vorige pagina")
5521 ("pt" :default "Continuação da página anterior")
5522 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)"
5523 :utf-8 "(Продолжение)"))
5524 ("Continued on next page"
5525 ("de" :default "Fortsetzung nächste Seite")
5526 ("es" :default "Continúa en la siguiente página")
5527 ("fr" :default "Suite page suivante")
5528 ("it" :default "Continua alla pagina successiva")
5529 ("ja" :default "次ページに続く")
5530 ("nl" :default "Vervolg op volgende pagina")
5531 ("pt" :default "Continua na página seguinte")
5532 ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)"
5533 :utf-8 "(Продолжение следует)"))
5534 ("Date"
5535 ("ca" :default "Data")
5536 ("cs" :default "Datum")
5537 ("da" :default "Dato")
5538 ("de" :default "Datum")
5539 ("eo" :default "Dato")
5540 ("es" :default "Fecha")
5541 ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev")
5542 ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;")
5543 ("hu" :html "D&aacute;tum")
5544 ("is" :default "Dagsetning")
5545 ("it" :default "Data")
5546 ("ja" :default "日付" :html "&#26085;&#20184;")
5547 ("nl" :default "Datum")
5548 ("no" :default "Dato")
5549 ("nb" :default "Dato")
5550 ("nn" :default "Dato")
5551 ("pl" :default "Data")
5552 ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5553 ("sv" :default "Datum")
5554 ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
5555 ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期")
5556 ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期"))
5557 ("Equation"
5558 ("da" :default "Ligning")
5559 ("de" :default "Gleichung")
5560 ("es" :html "Ecuaci&oacute;n" :default "Ecuación")
5561 ("et" :html "V&#245;rrand" :utf-8 "Võrrand")
5562 ("fr" :ascii "Equation" :default "Équation")
5563 ("ja" :default "方程式")
5564 ("no" :default "Ligning")
5565 ("nb" :default "Ligning")
5566 ("nn" :default "Likning")
5567 ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;"
5568 :utf-8 "Уравнение")
5569 ("sv" :default "Ekvation")
5570 ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程"))
5571 ("Figure"
5572 ("da" :default "Figur")
5573 ("de" :default "Abbildung")
5574 ("es" :default "Figura")
5575 ("et" :default "Joonis")
5576 ("ja" :default "図" :html "&#22259;")
5577 ("no" :default "Illustrasjon")
5578 ("nb" :default "Illustrasjon")
5579 ("nn" :default "Illustrasjon")
5580 ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок")
5581 ("sv" :default "Illustration")
5582 ("zh-CN" :html "&#22270;" :utf-8 "图"))
5583 ("Figure %d:"
5584 ("da" :default "Figur %d")
5585 ("de" :default "Abbildung %d:")
5586 ("es" :default "Figura %d:")
5587 ("et" :default "Joonis %d:")
5588 ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:")
5589 ("ja" :default "図%d: " :html "&#22259;%d: ")
5590 ("no" :default "Illustrasjon %d")
5591 ("nb" :default "Illustrasjon %d")
5592 ("nn" :default "Illustrasjon %d")
5593 ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:")
5594 ("sv" :default "Illustration %d")
5595 ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d "))
5596 ("Footnotes"
5597 ("ca" :html "Peus de p&agrave;gina")
5598 ("cs" :default "Pozn\xe1mky pod carou")
5599 ("da" :default "Fodnoter")
5600 ("de" :html "Fu&szlig;noten" :default "Fußnoten")
5601 ("eo" :default "Piednotoj")
5602 ("es" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página")
5603 ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused")
5604 ("fi" :default "Alaviitteet")
5605 ("fr" :default "Notes de bas de page")
5606 ("hu" :html "L&aacute;bjegyzet")
5607 ("is" :html "Aftanm&aacute;lsgreinar")
5608 ("it" :html "Note a pi&egrave; di pagina")
5609 ("ja" :default "脚注" :html "&#33050;&#27880;")
5610 ("nl" :default "Voetnoten")
5611 ("no" :default "Fotnoter")
5612 ("nb" :default "Fotnoter")
5613 ("nn" :default "Fotnotar")
5614 ("pl" :default "Przypis")
5615 ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски")
5616 ("sv" :default "Fotnoter")
5617 ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;"
5618 :utf-8 "Примітки")
5619 ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注")
5620 ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註"))
5621 ("List of Listings"
5622 ("da" :default "Programmer")
5623 ("de" :default "Programmauflistungsverzeichnis")
5624 ("es" :default "Indice de Listados de programas")
5625 ("et" :default "Loendite nimekiri")
5626 ("fr" :default "Liste des programmes")
5627 ("ja" :default "ソースコード目次")
5628 ("no" :default "Dataprogrammer")
5629 ("nb" :default "Dataprogrammer")
5630 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;"
5631 :utf-8 "Список распечаток")
5632 ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录"))
5633 ("List of Tables"
5634 ("da" :default "Tabeller")
5635 ("de" :default "Tabellenverzeichnis")
5636 ("es" :default "Indice de tablas")
5637 ("et" :default "Tabelite nimekiri")
5638 ("fr" :default "Liste des tableaux")
5639 ("ja" :default "表目次")
5640 ("no" :default "Tabeller")
5641 ("nb" :default "Tabeller")
5642 ("nn" :default "Tabeller")
5643 ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;"
5644 :utf-8 "Список таблиц")
5645 ("sv" :default "Tabeller")
5646 ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录"))
5647 ("Listing %d:"
5648 ("da" :default "Program %d")
5649 ("de" :default "Programmlisting %d")
5650 ("es" :default "Listado de programa %d")
5651 ("et" :default "Loend %d")
5652 ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:")
5653 ("ja" :default "ソースコード%d:")
5654 ("no" :default "Dataprogram %d")
5655 ("nb" :default "Dataprogram %d")
5656 ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:"
5657 :utf-8 "Распечатка %d.:")
5658 ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d "))
5659 ("References"
5660 ("fr" :ascii "References" :default "Références")
5661 ("de" :default "Quellen"))
5662 ("See section %s"
5663 ("da" :default "jævnfør afsnit %s")
5664 ("de" :default "siehe Abschnitt %s")
5665 ("es" :default "vea seccion %s")
5666 ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s")
5667 ("fr" :default "cf. section %s")
5668 ("ja" :default "セクション %s を参照")
5669 ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s"
5670 :utf-8 "См. раздел %s")
5671 ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节"))
5672 ("Table"
5673 ("de" :default "Tabelle")
5674 ("es" :default "Tabla")
5675 ("et" :default "Tabel")
5676 ("fr" :default "Tableau")
5677 ("ja" :default "表" :html "&#34920;")
5678 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица")
5679 ("zh-CN" :html "&#34920;" :utf-8 "表"))
5680 ("Table %d:"
5681 ("da" :default "Tabel %d")
5682 ("de" :default "Tabelle %d")
5683 ("es" :default "Tabla %d")
5684 ("et" :default "Tabel %d")
5685 ("fr" :default "Tableau %d :")
5686 ("ja" :default "表%d:" :html "&#34920;%d:")
5687 ("no" :default "Tabell %d")
5688 ("nb" :default "Tabell %d")
5689 ("nn" :default "Tabell %d")
5690 ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:"
5691 :utf-8 "Таблица %d.:")
5692 ("sv" :default "Tabell %d")
5693 ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d "))
5694 ("Table of Contents"
5695 ("ca" :html "&Iacute;ndex")
5696 ("cs" :default "Obsah")
5697 ("da" :default "Indhold")
5698 ("de" :default "Inhaltsverzeichnis")
5699 ("eo" :default "Enhavo")
5700 ("es" :html "&Iacute;ndice")
5701 ("et" :default "Sisukord")
5702 ("fi" :html "Sis&auml;llysluettelo")
5703 ("fr" :ascii "Sommaire" :default "Table des matières")
5704 ("hu" :html "Tartalomjegyz&eacute;k")
5705 ("is" :default "Efnisyfirlit")
5706 ("it" :default "Indice")
5707 ("ja" :default "目次" :html "&#30446;&#27425;")
5708 ("nl" :default "Inhoudsopgave")
5709 ("no" :default "Innhold")
5710 ("nb" :default "Innhold")
5711 ("nn" :default "Innhald")
5712 ("pl" :html "Spis tre&#x015b;ci")
5713 ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;"
5714 :utf-8 "Содержание")
5715 ("sv" :html "Inneh&aring;ll")
5716 ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст")
5717 ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录")
5718 ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄"))
5719 ("Unknown reference"
5720 ("da" :default "ukendt reference")
5721 ("de" :default "Unbekannter Verweis")
5722 ("es" :default "referencia desconocida")
5723 ("et" :default "Tundmatu viide")
5724 ("fr" :ascii "Destination inconnue" :default "Référence inconnue")
5725 ("ja" :default "不明な参照先")
5726 ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;"
5727 :utf-8 "Неизвестная ссылка")
5728 ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))
5729 "Dictionary for export engine.
5731 Alist whose CAR is the string to translate and CDR is an alist
5732 whose CAR is the language string and CDR is a plist whose
5733 properties are possible charsets and values translated terms.
5735 It is used as a database for `org-export-translate'. Since this
5736 function returns the string as-is if no translation was found,
5737 the variable only needs to record values different from the
5738 entry.")
5740 (defun org-export-translate (s encoding info)
5741 "Translate string S according to language specification.
5743 ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
5744 and `:utf-8'. INFO is a plist used as a communication channel.
5746 Translation depends on `:language' property. Return the
5747 translated string. If no translation is found, try to fall back
5748 to `:default' encoding. If it fails, return S."
5749 (let* ((lang (plist-get info :language))
5750 (translations (cdr (assoc lang
5751 (cdr (assoc s org-export-dictionary))))))
5752 (or (plist-get translations encoding)
5753 (plist-get translations :default)
5754 s)))
5758 ;;; Asynchronous Export
5760 ;; `org-export-async-start' is the entry point for asynchronous
5761 ;; export. It recreates current buffer (including visibility,
5762 ;; narrowing and visited file) in an external Emacs process, and
5763 ;; evaluates a command there. It then applies a function on the
5764 ;; returned results in the current process.
5766 ;; At a higher level, `org-export-to-buffer' and `org-export-to-file'
5767 ;; allow to export to a buffer or a file, asynchronously or not.
5769 ;; `org-export-output-file-name' is an auxiliary function meant to be
5770 ;; used with `org-export-to-file'. With a given extension, it tries
5771 ;; to provide a canonical file name to write export output to.
5773 ;; Asynchronously generated results are never displayed directly.
5774 ;; Instead, they are stored in `org-export-stack-contents'. They can
5775 ;; then be retrieved by calling `org-export-stack'.
5777 ;; Export Stack is viewed through a dedicated major mode
5778 ;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
5779 ;;`org-export-stack-delete', `org-export-stack-view' and
5780 ;;`org-export-stack-clear'.
5782 ;; For back-ends, `org-export-add-to-stack' add a new source to stack.
5783 ;; It should be used whenever `org-export-async-start' is called.
5785 (defmacro org-export-async-start (fun &rest body)
5786 "Call function FUN on the results returned by BODY evaluation.
5788 BODY evaluation happens in an asynchronous process, from a buffer
5789 which is an exact copy of the current one.
5791 Use `org-export-add-to-stack' in FUN in order to register results
5792 in the stack.
5794 This is a low level function. See also `org-export-to-buffer'
5795 and `org-export-to-file' for more specialized functions."
5796 (declare (indent 1) (debug t))
5797 (org-with-gensyms (process temp-file copy-fun proc-buffer coding)
5798 ;; Write the full sexp evaluating BODY in a copy of the current
5799 ;; buffer to a temporary file, as it may be too long for program
5800 ;; args in `start-process'.
5801 `(with-temp-message "Initializing asynchronous export process"
5802 (let ((,copy-fun (org-export--generate-copy-script (current-buffer)))
5803 (,temp-file (make-temp-file "org-export-process"))
5804 (,coding buffer-file-coding-system))
5805 (with-temp-file ,temp-file
5806 (insert
5807 ;; Null characters (from variable values) are inserted
5808 ;; within the file. As a consequence, coding system for
5809 ;; buffer contents will not be recognized properly. So,
5810 ;; we make sure it is the same as the one used to display
5811 ;; the original buffer.
5812 (format ";; -*- coding: %s; -*-\n%S"
5813 ,coding
5814 `(with-temp-buffer
5815 (when org-export-async-debug '(setq debug-on-error t))
5816 ;; Ignore `kill-emacs-hook' and code evaluation
5817 ;; queries from Babel as we need a truly
5818 ;; non-interactive process.
5819 (setq kill-emacs-hook nil
5820 org-babel-confirm-evaluate-answer-no t)
5821 ;; Initialize export framework.
5822 (require 'ox)
5823 ;; Re-create current buffer there.
5824 (funcall ,,copy-fun)
5825 (restore-buffer-modified-p nil)
5826 ;; Sexp to evaluate in the buffer.
5827 (print (progn ,,@body))))))
5828 ;; Start external process.
5829 (let* ((process-connection-type nil)
5830 (,proc-buffer (generate-new-buffer-name "*Org Export Process*"))
5831 (,process
5832 (apply
5833 #'start-process
5834 (append
5835 (list "org-export-process"
5836 ,proc-buffer
5837 (expand-file-name invocation-name invocation-directory)
5838 "--batch")
5839 (if org-export-async-init-file
5840 (list "-Q" "-l" org-export-async-init-file)
5841 (list "-l" user-init-file))
5842 (list "-l" ,temp-file)))))
5843 ;; Register running process in stack.
5844 (org-export-add-to-stack (get-buffer ,proc-buffer) nil ,process)
5845 ;; Set-up sentinel in order to catch results.
5846 (let ((handler ',fun))
5847 (set-process-sentinel
5848 ,process
5849 `(lambda (p status)
5850 (let ((proc-buffer (process-buffer p)))
5851 (when (eq (process-status p) 'exit)
5852 (unwind-protect
5853 (if (zerop (process-exit-status p))
5854 (unwind-protect
5855 (let ((results
5856 (with-current-buffer proc-buffer
5857 (goto-char (point-max))
5858 (backward-sexp)
5859 (read (current-buffer)))))
5860 (funcall ,handler results))
5861 (unless org-export-async-debug
5862 (and (get-buffer proc-buffer)
5863 (kill-buffer proc-buffer))))
5864 (org-export-add-to-stack proc-buffer nil p)
5865 (ding)
5866 (message "Process '%s' exited abnormally" p))
5867 (unless org-export-async-debug
5868 (delete-file ,,temp-file)))))))))))))
5870 ;;;###autoload
5871 (defun org-export-to-buffer
5872 (backend buffer
5873 &optional async subtreep visible-only body-only ext-plist
5874 post-process)
5875 "Call `org-export-as' with output to a specified buffer.
5877 BACKEND is either an export back-end, as returned by, e.g.,
5878 `org-export-create-backend', or a symbol referring to
5879 a registered back-end.
5881 BUFFER is the name of the output buffer. If it already exists,
5882 it will be erased first, otherwise, it will be created.
5884 A non-nil optional argument ASYNC means the process should happen
5885 asynchronously. The resulting buffer should then be accessible
5886 through the `org-export-stack' interface. When ASYNC is nil, the
5887 buffer is displayed if `org-export-show-temporary-export-buffer'
5888 is non-nil.
5890 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5891 EXT-PLIST are similar to those used in `org-export-as', which
5892 see.
5894 Optional argument POST-PROCESS is a function which should accept
5895 no argument. It is always called within the current process,
5896 from BUFFER, with point at its beginning. Export back-ends can
5897 use it to set a major mode there, e.g,
5899 \(defun org-latex-export-as-latex
5900 \(&optional async subtreep visible-only body-only ext-plist)
5901 \(interactive)
5902 \(org-export-to-buffer 'latex \"*Org LATEX Export*\"
5903 async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
5905 This function returns BUFFER."
5906 (declare (indent 2))
5907 (if async
5908 (org-export-async-start
5909 `(lambda (output)
5910 (with-current-buffer (get-buffer-create ,buffer)
5911 (erase-buffer)
5912 (setq buffer-file-coding-system ',buffer-file-coding-system)
5913 (insert output)
5914 (goto-char (point-min))
5915 (org-export-add-to-stack (current-buffer) ',backend)
5916 (ignore-errors (funcall ,post-process))))
5917 `(org-export-as
5918 ',backend ,subtreep ,visible-only ,body-only ',ext-plist))
5919 (let ((output
5920 (org-export-as backend subtreep visible-only body-only ext-plist))
5921 (buffer (get-buffer-create buffer))
5922 (encoding buffer-file-coding-system))
5923 (when (and (org-string-nw-p output) (org-export--copy-to-kill-ring-p))
5924 (org-kill-new output))
5925 (with-current-buffer buffer
5926 (erase-buffer)
5927 (setq buffer-file-coding-system encoding)
5928 (insert output)
5929 (goto-char (point-min))
5930 (and (functionp post-process) (funcall post-process)))
5931 (when org-export-show-temporary-export-buffer
5932 (switch-to-buffer-other-window buffer))
5933 buffer)))
5935 ;;;###autoload
5936 (defun org-export-to-file
5937 (backend file &optional async subtreep visible-only body-only ext-plist
5938 post-process)
5939 "Call `org-export-as' with output to a specified file.
5941 BACKEND is either an export back-end, as returned by, e.g.,
5942 `org-export-create-backend', or a symbol referring to
5943 a registered back-end. FILE is the name of the output file, as
5944 a string.
5946 A non-nil optional argument ASYNC means the process should happen
5947 asynchronously. The resulting buffer will then be accessible
5948 through the `org-export-stack' interface.
5950 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
5951 EXT-PLIST are similar to those used in `org-export-as', which
5952 see.
5954 Optional argument POST-PROCESS is called with FILE as its
5955 argument and happens asynchronously when ASYNC is non-nil. It
5956 has to return a file name, or nil. Export back-ends can use this
5957 to send the output file through additional processing, e.g,
5959 \(defun org-latex-export-to-latex
5960 \(&optional async subtreep visible-only body-only ext-plist)
5961 \(interactive)
5962 \(let ((outfile (org-export-output-file-name \".tex\" subtreep)))
5963 \(org-export-to-file 'latex outfile
5964 async subtreep visible-only body-only ext-plist
5965 \(lambda (file) (org-latex-compile file)))
5967 The function returns either a file name returned by POST-PROCESS,
5968 or FILE."
5969 (declare (indent 2))
5970 (if (not (file-writable-p file)) (error "Output file not writable")
5971 (let ((ext-plist (org-combine-plists `(:output-file ,file) ext-plist))
5972 (encoding (or org-export-coding-system buffer-file-coding-system)))
5973 (if async
5974 (org-export-async-start
5975 `(lambda (file)
5976 (org-export-add-to-stack (expand-file-name file) ',backend))
5977 `(let ((output
5978 (org-export-as
5979 ',backend ,subtreep ,visible-only ,body-only
5980 ',ext-plist)))
5981 (with-temp-buffer
5982 (insert output)
5983 (let ((coding-system-for-write ',encoding))
5984 (write-file ,file)))
5985 (or (ignore-errors (funcall ',post-process ,file)) ,file)))
5986 (let ((output (org-export-as
5987 backend subtreep visible-only body-only ext-plist)))
5988 (with-temp-buffer
5989 (insert output)
5990 (let ((coding-system-for-write encoding))
5991 (write-file file)))
5992 (when (and (org-export--copy-to-kill-ring-p) (org-string-nw-p output))
5993 (org-kill-new output))
5994 ;; Get proper return value.
5995 (or (and (functionp post-process) (funcall post-process file))
5996 file))))))
5998 (defun org-export-output-file-name (extension &optional subtreep pub-dir)
5999 "Return output file's name according to buffer specifications.
6001 EXTENSION is a string representing the output file extension,
6002 with the leading dot.
6004 With a non-nil optional argument SUBTREEP, try to determine
6005 output file's name by looking for \"EXPORT_FILE_NAME\" property
6006 of subtree at point.
6008 When optional argument PUB-DIR is set, use it as the publishing
6009 directory.
6011 When optional argument VISIBLE-ONLY is non-nil, don't export
6012 contents of hidden elements.
6014 Return file name as a string."
6015 (let* ((visited-file (buffer-file-name (buffer-base-buffer)))
6016 (base-name
6017 ;; File name may come from EXPORT_FILE_NAME subtree
6018 ;; property, assuming point is at beginning of said
6019 ;; sub-tree.
6020 (file-name-sans-extension
6021 (or (and subtreep
6022 (org-entry-get
6023 (save-excursion
6024 (ignore-errors (org-back-to-heading) (point)))
6025 "EXPORT_FILE_NAME" t))
6026 ;; File name may be extracted from buffer's associated
6027 ;; file, if any.
6028 (and visited-file (file-name-nondirectory visited-file))
6029 ;; Can't determine file name on our own: Ask user.
6030 (let ((read-file-name-function
6031 (and org-completion-use-ido 'ido-read-file-name)))
6032 (read-file-name
6033 "Output file: " pub-dir nil nil nil
6034 (lambda (name)
6035 (string= (file-name-extension name t) extension)))))))
6036 (output-file
6037 ;; Build file name. Enforce EXTENSION over whatever user
6038 ;; may have come up with. PUB-DIR, if defined, always has
6039 ;; precedence over any provided path.
6040 (cond
6041 (pub-dir
6042 (concat (file-name-as-directory pub-dir)
6043 (file-name-nondirectory base-name)
6044 extension))
6045 ((file-name-absolute-p base-name) (concat base-name extension))
6046 (t (concat (file-name-as-directory ".") base-name extension)))))
6047 ;; If writing to OUTPUT-FILE would overwrite original file, append
6048 ;; EXTENSION another time to final name.
6049 (if (and visited-file (org-file-equal-p visited-file output-file))
6050 (concat output-file extension)
6051 output-file)))
6053 (defun org-export-add-to-stack (source backend &optional process)
6054 "Add a new result to export stack if not present already.
6056 SOURCE is a buffer or a file name containing export results.
6057 BACKEND is a symbol representing export back-end used to generate
6060 Entries already pointing to SOURCE and unavailable entries are
6061 removed beforehand. Return the new stack."
6062 (setq org-export-stack-contents
6063 (cons (list source backend (or process (current-time)))
6064 (org-export-stack-remove source))))
6066 (defun org-export-stack ()
6067 "Menu for asynchronous export results and running processes."
6068 (interactive)
6069 (let ((buffer (get-buffer-create "*Org Export Stack*")))
6070 (set-buffer buffer)
6071 (when (zerop (buffer-size)) (org-export-stack-mode))
6072 (org-export-stack-refresh)
6073 (pop-to-buffer buffer))
6074 (message "Type \"q\" to quit, \"?\" for help"))
6076 (defun org-export--stack-source-at-point ()
6077 "Return source from export results at point in stack."
6078 (let ((source (car (nth (1- (org-current-line)) org-export-stack-contents))))
6079 (if (not source) (error "Source unavailable, please refresh buffer")
6080 (let ((source-name (if (stringp source) source (buffer-name source))))
6081 (if (save-excursion
6082 (beginning-of-line)
6083 (looking-at (concat ".* +" (regexp-quote source-name) "$")))
6084 source
6085 ;; SOURCE is not consistent with current line. The stack
6086 ;; view is outdated.
6087 (error "Source unavailable; type `g' to update buffer"))))))
6089 (defun org-export-stack-clear ()
6090 "Remove all entries from export stack."
6091 (interactive)
6092 (setq org-export-stack-contents nil))
6094 (defun org-export-stack-refresh (&rest dummy)
6095 "Refresh the asynchronous export stack.
6096 DUMMY is ignored. Unavailable sources are removed from the list.
6097 Return the new stack."
6098 (let ((inhibit-read-only t))
6099 (org-preserve-lc
6100 (erase-buffer)
6101 (insert (concat
6102 (let ((counter 0))
6103 (mapconcat
6104 (lambda (entry)
6105 (let ((proc-p (processp (nth 2 entry))))
6106 (concat
6107 ;; Back-end.
6108 (format " %-12s " (or (nth 1 entry) ""))
6109 ;; Age.
6110 (let ((data (nth 2 entry)))
6111 (if proc-p (format " %6s " (process-status data))
6112 ;; Compute age of the results.
6113 (org-format-seconds
6114 "%4h:%.2m "
6115 (float-time (time-since data)))))
6116 ;; Source.
6117 (format " %s"
6118 (let ((source (car entry)))
6119 (if (stringp source) source
6120 (buffer-name source)))))))
6121 ;; Clear stack from exited processes, dead buffers or
6122 ;; non-existent files.
6123 (setq org-export-stack-contents
6124 (org-remove-if-not
6125 (lambda (el)
6126 (if (processp (nth 2 el))
6127 (buffer-live-p (process-buffer (nth 2 el)))
6128 (let ((source (car el)))
6129 (if (bufferp source) (buffer-live-p source)
6130 (file-exists-p source)))))
6131 org-export-stack-contents)) "\n")))))))
6133 (defun org-export-stack-remove (&optional source)
6134 "Remove export results at point from stack.
6135 If optional argument SOURCE is non-nil, remove it instead."
6136 (interactive)
6137 (let ((source (or source (org-export--stack-source-at-point))))
6138 (setq org-export-stack-contents
6139 (org-remove-if (lambda (el) (equal (car el) source))
6140 org-export-stack-contents))))
6142 (defun org-export-stack-view (&optional in-emacs)
6143 "View export results at point in stack.
6144 With an optional prefix argument IN-EMACS, force viewing files
6145 within Emacs."
6146 (interactive "P")
6147 (let ((source (org-export--stack-source-at-point)))
6148 (cond ((processp source)
6149 (org-switch-to-buffer-other-window (process-buffer source)))
6150 ((bufferp source) (org-switch-to-buffer-other-window source))
6151 (t (org-open-file source in-emacs)))))
6153 (defvar org-export-stack-mode-map
6154 (let ((km (make-sparse-keymap)))
6155 (define-key km " " 'next-line)
6156 (define-key km "n" 'next-line)
6157 (define-key km "\C-n" 'next-line)
6158 (define-key km [down] 'next-line)
6159 (define-key km "p" 'previous-line)
6160 (define-key km "\C-p" 'previous-line)
6161 (define-key km "\C-?" 'previous-line)
6162 (define-key km [up] 'previous-line)
6163 (define-key km "C" 'org-export-stack-clear)
6164 (define-key km "v" 'org-export-stack-view)
6165 (define-key km (kbd "RET") 'org-export-stack-view)
6166 (define-key km "d" 'org-export-stack-remove)
6168 "Keymap for Org Export Stack.")
6170 (define-derived-mode org-export-stack-mode special-mode "Org-Stack"
6171 "Mode for displaying asynchronous export stack.
6173 Type \\[org-export-stack] to visualize the asynchronous export
6174 stack.
6176 In an Org Export Stack buffer, use \\<org-export-stack-mode-map>\\[org-export-stack-view] to view export output
6177 on current line, \\[org-export-stack-remove] to remove it from the stack and \\[org-export-stack-clear] to clear
6178 stack completely.
6180 Removing entries in an Org Export Stack buffer doesn't affect
6181 files or buffers, only the display.
6183 \\{org-export-stack-mode-map}"
6184 (abbrev-mode 0)
6185 (auto-fill-mode 0)
6186 (setq buffer-read-only t
6187 buffer-undo-list t
6188 truncate-lines t
6189 header-line-format
6190 '(:eval
6191 (format " %-12s | %6s | %s" "Back-End" "Age" "Source")))
6192 (org-add-hook 'post-command-hook 'org-export-stack-refresh nil t)
6193 (set (make-local-variable 'revert-buffer-function)
6194 'org-export-stack-refresh))
6198 ;;; The Dispatcher
6200 ;; `org-export-dispatch' is the standard interactive way to start an
6201 ;; export process. It uses `org-export--dispatch-ui' as a subroutine
6202 ;; for its interface, which, in turn, delegates response to key
6203 ;; pressed to `org-export--dispatch-action'.
6205 ;;;###autoload
6206 (defun org-export-dispatch (&optional arg)
6207 "Export dispatcher for Org mode.
6209 It provides an access to common export related tasks in a buffer.
6210 Its interface comes in two flavors: standard and expert.
6212 While both share the same set of bindings, only the former
6213 displays the valid keys associations in a dedicated buffer.
6214 Scrolling (resp. line-wise motion) in this buffer is done with
6215 SPC and DEL (resp. C-n and C-p) keys.
6217 Set variable `org-export-dispatch-use-expert-ui' to switch to one
6218 flavor or the other.
6220 When ARG is \\[universal-argument], repeat the last export action, with the same set
6221 of options used back then, on the current buffer.
6223 When ARG is \\[universal-argument] \\[universal-argument], display the asynchronous export stack."
6224 (interactive "P")
6225 (let* ((input
6226 (cond ((equal arg '(16)) '(stack))
6227 ((and arg org-export-dispatch-last-action))
6228 (t (save-window-excursion
6229 (unwind-protect
6230 (progn
6231 ;; Remember where we are
6232 (move-marker org-export-dispatch-last-position
6233 (point)
6234 (org-base-buffer (current-buffer)))
6235 ;; Get and store an export command
6236 (setq org-export-dispatch-last-action
6237 (org-export--dispatch-ui
6238 (list org-export-initial-scope
6239 (and org-export-in-background 'async))
6241 org-export-dispatch-use-expert-ui)))
6242 (and (get-buffer "*Org Export Dispatcher*")
6243 (kill-buffer "*Org Export Dispatcher*")))))))
6244 (action (car input))
6245 (optns (cdr input)))
6246 (unless (memq 'subtree optns)
6247 (move-marker org-export-dispatch-last-position nil))
6248 (case action
6249 ;; First handle special hard-coded actions.
6250 (template (org-export-insert-default-template nil optns))
6251 (stack (org-export-stack))
6252 (publish-current-file
6253 (org-publish-current-file (memq 'force optns) (memq 'async optns)))
6254 (publish-current-project
6255 (org-publish-current-project (memq 'force optns) (memq 'async optns)))
6256 (publish-choose-project
6257 (org-publish (assoc (org-icompleting-read
6258 "Publish project: "
6259 org-publish-project-alist nil t)
6260 org-publish-project-alist)
6261 (memq 'force optns)
6262 (memq 'async optns)))
6263 (publish-all (org-publish-all (memq 'force optns) (memq 'async optns)))
6264 (otherwise
6265 (save-excursion
6266 (when arg
6267 ;; Repeating command, maybe move cursor to restore subtree
6268 ;; context.
6269 (if (eq (marker-buffer org-export-dispatch-last-position)
6270 (org-base-buffer (current-buffer)))
6271 (goto-char org-export-dispatch-last-position)
6272 ;; We are in a different buffer, forget position.
6273 (move-marker org-export-dispatch-last-position nil)))
6274 (funcall action
6275 ;; Return a symbol instead of a list to ease
6276 ;; asynchronous export macro use.
6277 (and (memq 'async optns) t)
6278 (and (memq 'subtree optns) t)
6279 (and (memq 'visible optns) t)
6280 (and (memq 'body optns) t)))))))
6282 (defun org-export--dispatch-ui (options first-key expertp)
6283 "Handle interface for `org-export-dispatch'.
6285 OPTIONS is a list containing current interactive options set for
6286 export. It can contain any of the following symbols:
6287 `body' toggles a body-only export
6288 `subtree' restricts export to current subtree
6289 `visible' restricts export to visible part of buffer.
6290 `force' force publishing files.
6291 `async' use asynchronous export process
6293 FIRST-KEY is the key pressed to select the first level menu. It
6294 is nil when this menu hasn't been selected yet.
6296 EXPERTP, when non-nil, triggers expert UI. In that case, no help
6297 buffer is provided, but indications about currently active
6298 options are given in the prompt. Moreover, \[?] allows to switch
6299 back to standard interface."
6300 (let* ((fontify-key
6301 (lambda (key &optional access-key)
6302 ;; Fontify KEY string. Optional argument ACCESS-KEY, when
6303 ;; non-nil is the required first-level key to activate
6304 ;; KEY. When its value is t, activate KEY independently
6305 ;; on the first key, if any. A nil value means KEY will
6306 ;; only be activated at first level.
6307 (if (or (eq access-key t) (eq access-key first-key))
6308 (org-propertize key 'face 'org-warning)
6309 key)))
6310 (fontify-value
6311 (lambda (value)
6312 ;; Fontify VALUE string.
6313 (org-propertize value 'face 'font-lock-variable-name-face)))
6314 ;; Prepare menu entries by extracting them from registered
6315 ;; back-ends and sorting them by access key and by ordinal,
6316 ;; if any.
6317 (entries
6318 (sort (sort (delq nil
6319 (mapcar 'org-export-backend-menu
6320 org-export--registered-backends))
6321 (lambda (a b)
6322 (let ((key-a (nth 1 a))
6323 (key-b (nth 1 b)))
6324 (cond ((and (numberp key-a) (numberp key-b))
6325 (< key-a key-b))
6326 ((numberp key-b) t)))))
6327 'car-less-than-car))
6328 ;; Compute a list of allowed keys based on the first key
6329 ;; pressed, if any. Some keys
6330 ;; (?^B, ?^V, ?^S, ?^F, ?^A, ?&, ?# and ?q) are always
6331 ;; available.
6332 (allowed-keys
6333 (nconc (list 2 22 19 6 1)
6334 (if (not first-key) (org-uniquify (mapcar 'car entries))
6335 (let (sub-menu)
6336 (dolist (entry entries (sort (mapcar 'car sub-menu) '<))
6337 (when (eq (car entry) first-key)
6338 (setq sub-menu (append (nth 2 entry) sub-menu))))))
6339 (cond ((eq first-key ?P) (list ?f ?p ?x ?a))
6340 ((not first-key) (list ?P)))
6341 (list ?& ?#)
6342 (when expertp (list ??))
6343 (list ?q)))
6344 ;; Build the help menu for standard UI.
6345 (help
6346 (unless expertp
6347 (concat
6348 ;; Options are hard-coded.
6349 (format "[%s] Body only: %s [%s] Visible only: %s
6350 \[%s] Export scope: %s [%s] Force publishing: %s
6351 \[%s] Async export: %s\n\n"
6352 (funcall fontify-key "C-b" t)
6353 (funcall fontify-value
6354 (if (memq 'body options) "On " "Off"))
6355 (funcall fontify-key "C-v" t)
6356 (funcall fontify-value
6357 (if (memq 'visible options) "On " "Off"))
6358 (funcall fontify-key "C-s" t)
6359 (funcall fontify-value
6360 (if (memq 'subtree options) "Subtree" "Buffer "))
6361 (funcall fontify-key "C-f" t)
6362 (funcall fontify-value
6363 (if (memq 'force options) "On " "Off"))
6364 (funcall fontify-key "C-a" t)
6365 (funcall fontify-value
6366 (if (memq 'async options) "On " "Off")))
6367 ;; Display registered back-end entries. When a key
6368 ;; appears for the second time, do not create another
6369 ;; entry, but append its sub-menu to existing menu.
6370 (let (last-key)
6371 (mapconcat
6372 (lambda (entry)
6373 (let ((top-key (car entry)))
6374 (concat
6375 (unless (eq top-key last-key)
6376 (setq last-key top-key)
6377 (format "\n[%s] %s\n"
6378 (funcall fontify-key (char-to-string top-key))
6379 (nth 1 entry)))
6380 (let ((sub-menu (nth 2 entry)))
6381 (unless (functionp sub-menu)
6382 ;; Split sub-menu into two columns.
6383 (let ((index -1))
6384 (concat
6385 (mapconcat
6386 (lambda (sub-entry)
6387 (incf index)
6388 (format
6389 (if (zerop (mod index 2)) " [%s] %-26s"
6390 "[%s] %s\n")
6391 (funcall fontify-key
6392 (char-to-string (car sub-entry))
6393 top-key)
6394 (nth 1 sub-entry)))
6395 sub-menu "")
6396 (when (zerop (mod index 2)) "\n"))))))))
6397 entries ""))
6398 ;; Publishing menu is hard-coded.
6399 (format "\n[%s] Publish
6400 [%s] Current file [%s] Current project
6401 [%s] Choose project [%s] All projects\n\n\n"
6402 (funcall fontify-key "P")
6403 (funcall fontify-key "f" ?P)
6404 (funcall fontify-key "p" ?P)
6405 (funcall fontify-key "x" ?P)
6406 (funcall fontify-key "a" ?P))
6407 (format "[%s] Export stack [%s] Insert template\n"
6408 (funcall fontify-key "&" t)
6409 (funcall fontify-key "#" t))
6410 (format "[%s] %s"
6411 (funcall fontify-key "q" t)
6412 (if first-key "Main menu" "Exit")))))
6413 ;; Build prompts for both standard and expert UI.
6414 (standard-prompt (unless expertp "Export command: "))
6415 (expert-prompt
6416 (when expertp
6417 (format
6418 "Export command (C-%s%s%s%s%s) [%s]: "
6419 (if (memq 'body options) (funcall fontify-key "b" t) "b")
6420 (if (memq 'visible options) (funcall fontify-key "v" t) "v")
6421 (if (memq 'subtree options) (funcall fontify-key "s" t) "s")
6422 (if (memq 'force options) (funcall fontify-key "f" t) "f")
6423 (if (memq 'async options) (funcall fontify-key "a" t) "a")
6424 (mapconcat (lambda (k)
6425 ;; Strip control characters.
6426 (unless (< k 27) (char-to-string k)))
6427 allowed-keys "")))))
6428 ;; With expert UI, just read key with a fancy prompt. In standard
6429 ;; UI, display an intrusive help buffer.
6430 (if expertp
6431 (org-export--dispatch-action
6432 expert-prompt allowed-keys entries options first-key expertp)
6433 ;; At first call, create frame layout in order to display menu.
6434 (unless (get-buffer "*Org Export Dispatcher*")
6435 (delete-other-windows)
6436 (org-switch-to-buffer-other-window
6437 (get-buffer-create "*Org Export Dispatcher*"))
6438 (setq cursor-type nil
6439 header-line-format "Use SPC, DEL, C-n or C-p to navigate.")
6440 ;; Make sure that invisible cursor will not highlight square
6441 ;; brackets.
6442 (set-syntax-table (copy-syntax-table))
6443 (modify-syntax-entry ?\[ "w"))
6444 ;; At this point, the buffer containing the menu exists and is
6445 ;; visible in the current window. So, refresh it.
6446 (with-current-buffer "*Org Export Dispatcher*"
6447 ;; Refresh help. Maintain display continuity by re-visiting
6448 ;; previous window position.
6449 (let ((pos (window-start)))
6450 (erase-buffer)
6451 (insert help)
6452 (set-window-start nil pos)))
6453 (org-fit-window-to-buffer)
6454 (org-export--dispatch-action
6455 standard-prompt allowed-keys entries options first-key expertp))))
6457 (defun org-export--dispatch-action
6458 (prompt allowed-keys entries options first-key expertp)
6459 "Read a character from command input and act accordingly.
6461 PROMPT is the displayed prompt, as a string. ALLOWED-KEYS is
6462 a list of characters available at a given step in the process.
6463 ENTRIES is a list of menu entries. OPTIONS, FIRST-KEY and
6464 EXPERTP are the same as defined in `org-export--dispatch-ui',
6465 which see.
6467 Toggle export options when required. Otherwise, return value is
6468 a list with action as CAR and a list of interactive export
6469 options as CDR."
6470 (let (key)
6471 ;; Scrolling: when in non-expert mode, act on motion keys (C-n,
6472 ;; C-p, SPC, DEL).
6473 (while (and (setq key (read-char-exclusive prompt))
6474 (not expertp)
6475 (memq key '(14 16 ?\s ?\d)))
6476 (case key
6477 (14 (if (not (pos-visible-in-window-p (point-max)))
6478 (ignore-errors (scroll-up 1))
6479 (message "End of buffer")
6480 (sit-for 1)))
6481 (16 (if (not (pos-visible-in-window-p (point-min)))
6482 (ignore-errors (scroll-down 1))
6483 (message "Beginning of buffer")
6484 (sit-for 1)))
6485 (?\s (if (not (pos-visible-in-window-p (point-max)))
6486 (scroll-up nil)
6487 (message "End of buffer")
6488 (sit-for 1)))
6489 (?\d (if (not (pos-visible-in-window-p (point-min)))
6490 (scroll-down nil)
6491 (message "Beginning of buffer")
6492 (sit-for 1)))))
6493 (cond
6494 ;; Ignore undefined associations.
6495 ((not (memq key allowed-keys))
6496 (ding)
6497 (unless expertp (message "Invalid key") (sit-for 1))
6498 (org-export--dispatch-ui options first-key expertp))
6499 ;; q key at first level aborts export. At second level, cancel
6500 ;; first key instead.
6501 ((eq key ?q) (if (not first-key) (error "Export aborted")
6502 (org-export--dispatch-ui options nil expertp)))
6503 ;; Help key: Switch back to standard interface if expert UI was
6504 ;; active.
6505 ((eq key ??) (org-export--dispatch-ui options first-key nil))
6506 ;; Send request for template insertion along with export scope.
6507 ((eq key ?#) (cons 'template (memq 'subtree options)))
6508 ;; Switch to asynchronous export stack.
6509 ((eq key ?&) '(stack))
6510 ;; Toggle options: C-b (2) C-v (22) C-s (19) C-f (6) C-a (1).
6511 ((memq key '(2 22 19 6 1))
6512 (org-export--dispatch-ui
6513 (let ((option (case key (2 'body) (22 'visible) (19 'subtree)
6514 (6 'force) (1 'async))))
6515 (if (memq option options) (remq option options)
6516 (cons option options)))
6517 first-key expertp))
6518 ;; Action selected: Send key and options back to
6519 ;; `org-export-dispatch'.
6520 ((or first-key (functionp (nth 2 (assq key entries))))
6521 (cons (cond
6522 ((not first-key) (nth 2 (assq key entries)))
6523 ;; Publishing actions are hard-coded. Send a special
6524 ;; signal to `org-export-dispatch'.
6525 ((eq first-key ?P)
6526 (case key
6527 (?f 'publish-current-file)
6528 (?p 'publish-current-project)
6529 (?x 'publish-choose-project)
6530 (?a 'publish-all)))
6531 ;; Return first action associated to FIRST-KEY + KEY
6532 ;; path. Indeed, derived backends can share the same
6533 ;; FIRST-KEY.
6534 (t (catch 'found
6535 (mapc (lambda (entry)
6536 (let ((match (assq key (nth 2 entry))))
6537 (when match (throw 'found (nth 2 match)))))
6538 (member (assq first-key entries) entries)))))
6539 options))
6540 ;; Otherwise, enter sub-menu.
6541 (t (org-export--dispatch-ui options key expertp)))))
6545 (provide 'ox)
6547 ;; Local variables:
6548 ;; generated-autoload-file: "org-loaddefs.el"
6549 ;; End:
6551 ;;; ox.el ends here