org-export: Fix select-tag handling
[org-mode/org-mode-NeilSmithlineMods.git] / contrib / lisp / org-export.el
blobe857af0481efdf927ce5d7e907982dfdc0c8ba1d
1 ;;; org-export.el --- Generic Export Engine For Org
3 ;; Copyright (C) 2012 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Commentary:
23 ;; This library implements a generic export engine for Org, built on
24 ;; its syntactical parser: Org Elements.
26 ;; Besides that parser, the generic exporter is made of three distinct
27 ;; parts:
29 ;; - The communication channel consists in a property list, which is
30 ;; created and updated during the process. Its use is to offer
31 ;; every piece of information, would it be about initial environment
32 ;; or contextual data, all in a single place. The exhaustive list
33 ;; of properties is given in "The Communication Channel" section of
34 ;; this file.
36 ;; - The transcoder walks the parse tree, ignores or treat as plain
37 ;; text elements and objects according to export options, and
38 ;; eventually calls back-end specific functions to do the real
39 ;; transcoding, concatenating their return value along the way.
41 ;; - The filter system is activated at the very beginning and the very
42 ;; end of the export process, and each time an element or an object
43 ;; has been converted. It is the entry point to fine-tune standard
44 ;; output from back-end transcoders.
46 ;; The core function is `org-export-as'. It returns the transcoded
47 ;; buffer as a string.
49 ;; In order to derive an exporter out of this generic implementation,
50 ;; one can define a transcode function for each element or object.
51 ;; Such function should return a string for the corresponding element,
52 ;; without any trailing space, or nil. It must accept three
53 ;; arguments:
54 ;; 1. the element or object itself,
55 ;; 2. its contents, or nil when it isn't recursive,
56 ;; 3. the property list used as a communication channel.
58 ;; If no such function is found, that element or object type will
59 ;; simply be ignored, along with any separating blank line. The same
60 ;; will happen if the function returns the nil value. If that
61 ;; function returns the empty string, the type will be ignored, but
62 ;; the blank lines will be kept.
64 ;; Contents, when not nil, are stripped from any global indentation
65 ;; (although the relative one is preserved). They also always end
66 ;; with a single newline character.
68 ;; These functions must follow a strict naming convention:
69 ;; `org-BACKEND-TYPE' where, obviously, BACKEND is the name of the
70 ;; export back-end and TYPE the type of the element or object handled.
72 ;; Moreover, two additional functions can be defined. On the one
73 ;; hand, `org-BACKEND-template' returns the final transcoded string,
74 ;; and can be used to add a preamble and a postamble to document's
75 ;; body. It must accept two arguments: the transcoded string and the
76 ;; property list containing export options. On the other hand,
77 ;; `org-BACKEND-plain-text', when defined, is to be called on every
78 ;; text not recognized as an element or an object. It must accept two
79 ;; arguments: the text string and the information channel.
81 ;; Any back-end can define its own variables. Among them, those
82 ;; customizables should belong to the `org-export-BACKEND' group.
83 ;; Also, a special variable, `org-BACKEND-option-alist', allows to
84 ;; define buffer keywords and "#+options:" items specific to that
85 ;; back-end. See `org-export-option-alist' for supported defaults and
86 ;; syntax.
88 ;; Tools for common tasks across back-ends are implemented in the
89 ;; penultimate part of this file. A dispatcher for standard back-ends
90 ;; is provided in the last one.
92 ;;; Code:
93 (eval-when-compile (require 'cl))
94 (require 'org-element)
95 ;; Require major back-ends and publishing tools
96 (require 'org-e-ascii "../../EXPERIMENTAL/org-e-ascii.el")
97 (require 'org-e-html "../../EXPERIMENTAL/org-e-html.el")
98 (require 'org-e-latex "../../EXPERIMENTAL/org-e-latex.el")
99 (require 'org-e-odt "../../EXPERIMENTAL/org-e-odt.el")
100 (require 'org-e-publish "../../EXPERIMENTAL/org-e-publish.el")
104 ;;; Internal Variables
106 ;; Among internal variables, the most important is
107 ;; `org-export-option-alist'. This variable define the global export
108 ;; options, shared between every exporter, and how they are acquired.
110 (defconst org-export-max-depth 19
111 "Maximum nesting depth for headlines, counting from 0.")
113 (defconst org-export-option-alist
114 '((:author "AUTHOR" nil user-full-name t)
115 (:creator "CREATOR" nil org-export-creator-string)
116 (:date "DATE" nil nil t)
117 (:description "DESCRIPTION" nil nil newline)
118 (:email "EMAIL" nil user-mail-address t)
119 (:exclude-tags "EXPORT_EXCLUDE_TAGS" nil org-export-exclude-tags split)
120 (:headline-levels nil "H" org-export-headline-levels)
121 (:keywords "KEYWORDS" nil nil space)
122 (:language "LANGUAGE" nil org-export-default-language t)
123 (:preserve-breaks nil "\\n" org-export-preserve-breaks)
124 (:section-numbers nil "num" org-export-with-section-numbers)
125 (:select-tags "EXPORT_SELECT_TAGS" nil org-export-select-tags split)
126 (:time-stamp-file nil "timestamp" org-export-time-stamp-file)
127 (:title "TITLE" nil nil space)
128 (:with-archived-trees nil "arch" org-export-with-archived-trees)
129 (:with-author nil "author" org-export-with-author)
130 (:with-creator nil "creator" org-export-with-creator)
131 (:with-drawers nil "d" org-export-with-drawers)
132 (:with-email nil "email" org-export-with-email)
133 (:with-emphasize nil "*" org-export-with-emphasize)
134 (:with-entities nil "e" org-export-with-entities)
135 (:with-fixed-width nil ":" org-export-with-fixed-width)
136 (:with-footnotes nil "f" org-export-with-footnotes)
137 (:with-priority nil "pri" org-export-with-priority)
138 (:with-special-strings nil "-" org-export-with-special-strings)
139 (:with-sub-superscript nil "^" org-export-with-sub-superscripts)
140 (:with-toc nil "toc" org-export-with-toc)
141 (:with-tables nil "|" org-export-with-tables)
142 (:with-tags nil "tags" org-export-with-tags)
143 (:with-tasks nil "tasks" org-export-with-tasks)
144 (:with-timestamps nil "<" org-export-with-timestamps)
145 (:with-todo-keywords nil "todo" org-export-with-todo-keywords))
146 "Alist between export properties and ways to set them.
148 The car of the alist is the property name, and the cdr is a list
149 like \(KEYWORD OPTION DEFAULT BEHAVIOUR\) where:
151 KEYWORD is a string representing a buffer keyword, or nil.
152 OPTION is a string that could be found in an #+OPTIONS: line.
153 DEFAULT is the default value for the property.
154 BEHAVIOUR determine how Org should handle multiple keywords for
155 the same property. It is a symbol among:
156 nil Keep old value and discard the new one.
157 t Replace old value with the new one.
158 `space' Concatenate the values, separating them with a space.
159 `newline' Concatenate the values, separating them with
160 a newline.
161 `split' Split values at white spaces, and cons them to the
162 previous list.
164 KEYWORD and OPTION have precedence over DEFAULT.
166 All these properties should be back-end agnostic. For back-end
167 specific properties, define a similar variable named
168 `org-BACKEND-option-alist', replacing BACKEND with the name of
169 the appropriate back-end. You can also redefine properties
170 there, as they have precedence over these.")
172 (defconst org-export-special-keywords
173 '("SETUP_FILE" "OPTIONS" "MACRO")
174 "List of in-buffer keywords that require special treatment.
175 These keywords are not directly associated to a property. The
176 way they are handled must be hard-coded into
177 `org-export-get-inbuffer-options' function.")
179 (defconst org-export-filters-alist
180 '((:filter-babel-call . org-export-filter-babel-call-functions)
181 (:filter-center-block . org-export-filter-center-block-functions)
182 (:filter-comment . org-export-filter-comment-functions)
183 (:filter-comment-block . org-export-filter-comment-block-functions)
184 (:filter-drawer . org-export-filter-drawer-functions)
185 (:filter-dynamic-block . org-export-filter-dynamic-block-functions)
186 (:filter-emphasis . org-export-filter-emphasis-functions)
187 (:filter-entity . org-export-filter-entity-functions)
188 (:filter-example-block . org-export-filter-example-block-functions)
189 (:filter-export-block . org-export-filter-export-block-functions)
190 (:filter-export-snippet . org-export-filter-export-snippet-functions)
191 (:filter-final-output . org-export-filter-final-output-functions)
192 (:filter-fixed-width . org-export-filter-fixed-width-functions)
193 (:filter-footnote-definition . org-export-filter-footnote-definition-functions)
194 (:filter-footnote-reference . org-export-filter-footnote-reference-functions)
195 (:filter-headline . org-export-filter-headline-functions)
196 (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions)
197 (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions)
198 (:filter-inline-src-block . org-export-filter-inline-src-block-functions)
199 (:filter-inlinetask . org-export-filter-inlinetask-functions)
200 (:filter-item . org-export-filter-item-functions)
201 (:filter-keyword . org-export-filter-keyword-functions)
202 (:filter-latex-environment . org-export-filter-latex-environment-functions)
203 (:filter-latex-fragment . org-export-filter-latex-fragment-functions)
204 (:filter-line-break . org-export-filter-line-break-functions)
205 (:filter-link . org-export-filter-link-functions)
206 (:filter-macro . org-export-filter-macro-functions)
207 (:filter-paragraph . org-export-filter-paragraph-functions)
208 (:filter-parse-tree . org-export-filter-parse-tree-functions)
209 (:filter-plain-list . org-export-filter-plain-list-functions)
210 (:filter-plain-text . org-export-filter-plain-text-functions)
211 (:filter-property-drawer . org-export-filter-property-drawer-functions)
212 (:filter-quote-block . org-export-filter-quote-block-functions)
213 (:filter-quote-section . org-export-filter-quote-section-functions)
214 (:filter-radio-target . org-export-filter-radio-target-functions)
215 (:filter-section . org-export-filter-section-functions)
216 (:filter-special-block . org-export-filter-special-block-functions)
217 (:filter-src-block . org-export-filter-src-block-functions)
218 (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions)
219 (:filter-subscript . org-export-filter-subscript-functions)
220 (:filter-superscript . org-export-filter-superscript-functions)
221 (:filter-table . org-export-filter-table-functions)
222 (:filter-target . org-export-filter-target-functions)
223 (:filter-time-stamp . org-export-filter-time-stamp-functions)
224 (:filter-verbatim . org-export-filter-verbatim-functions)
225 (:filter-verse-block . org-export-filter-verse-block-functions))
226 "Alist between filters properties and initial values.
228 The key of each association is a property name accessible through
229 the communication channel its value is a configurable global
230 variable defining initial filters.
232 This list is meant to install user specified filters. Back-end
233 developers may install their own filters using
234 `org-BACKEND-filters-alist', where BACKEND is the name of the
235 considered back-end. Filters defined there will always be
236 prepended to the current list, so they always get applied
237 first.")
239 (defconst org-export-default-inline-image-rule
240 `(("file" .
241 ,(format "\\.%s\\'"
242 (regexp-opt
243 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm"
244 "xpm" "pbm" "pgm" "ppm") t))))
245 "Default rule for link matching an inline image.
246 This rule applies to links with no description. By default, it
247 will be considered as an inline image if it targets a local file
248 whose extension is either \"png\", \"jpeg\", \"jpg\", \"gif\",
249 \"tiff\", \"tif\", \"xbm\", \"xpm\", \"pbm\", \"pgm\" or \"ppm\".
250 See `org-export-inline-image-p' for more information about
251 rules.")
255 ;;; User-configurable Variables
257 ;; Configuration for the masses.
259 ;; They should never be evaled directly, as their value is to be
260 ;; stored in a property list (cf. `org-export-option-alist').
262 (defgroup org-export nil
263 "Options for exporting Org mode files."
264 :tag "Org Export"
265 :group 'org)
267 (defgroup org-export-general nil
268 "General options for export engine."
269 :tag "Org Export General"
270 :group 'org-export)
272 (defcustom org-export-with-archived-trees 'headline
273 "Whether sub-trees with the ARCHIVE tag should be exported.
275 This can have three different values:
276 nil Do not export, pretend this tree is not present.
277 t Do export the entire tree.
278 `headline' Only export the headline, but skip the tree below it.
280 This option can also be set with the #+OPTIONS line,
281 e.g. \"arch:nil\"."
282 :group 'org-export-general
283 :type '(choice
284 (const :tag "Not at all" nil)
285 (const :tag "Headline only" 'headline)
286 (const :tag "Entirely" t)))
288 (defcustom org-export-with-author t
289 "Non-nil means insert author name into the exported file.
290 This option can also be set with the #+OPTIONS line,
291 e.g. \"author:nil\"."
292 :group 'org-export-general
293 :type 'boolean)
295 (defcustom org-export-with-creator 'comment
296 "Non-nil means the postamble should contain a creator sentence.
298 The sentence can be set in `org-export-creator-string' and
299 defaults to \"Generated by Org mode XX in Emacs XXX.\".
301 If the value is `comment' insert it as a comment."
302 :group 'org-export-general
303 :type '(choice
304 (const :tag "No creator sentence" nil)
305 (const :tag "Sentence as a comment" 'comment)
306 (const :tag "Insert the sentence" t)))
308 (defcustom org-export-creator-string
309 (format "Generated by Org mode %s in Emacs %s." org-version emacs-version)
310 "String to insert at the end of the generated document."
311 :group 'org-export-general
312 :type '(string :tag "Creator string"))
314 (defcustom org-export-with-drawers t
315 "Non-nil means export contents of standard drawers.
317 When t, all drawers are exported. This may also be a list of
318 drawer names to export. This variable doesn't apply to
319 properties drawers.
321 This option can also be set with the #+OPTIONS line,
322 e.g. \"d:nil\"."
323 :group 'org-export-general
324 :type '(choice
325 (const :tag "All drawers" t)
326 (const :tag "None" nil)
327 (repeat :tag "Selected drawers"
328 (string :tag "Drawer name"))))
330 (defcustom org-export-with-email nil
331 "Non-nil means insert author email into the exported file.
332 This option can also be set with the #+OPTIONS line,
333 e.g. \"email:t\"."
334 :group 'org-export-general
335 :type 'boolean)
337 (defcustom org-export-with-emphasize t
338 "Non-nil means interpret *word*, /word/, and _word_ as emphasized text.
340 If the export target supports emphasizing text, the word will be
341 typeset in bold, italic, or underlined, respectively. Not all
342 export backends support this.
344 This option can also be set with the #+OPTIONS line, e.g. \"*:nil\"."
345 :group 'org-export-general
346 :type 'boolean)
348 (defcustom org-export-exclude-tags '("noexport")
349 "Tags that exclude a tree from export.
351 All trees carrying any of these tags will be excluded from
352 export. This is without condition, so even subtrees inside that
353 carry one of the `org-export-select-tags' will be removed.
355 This option can also be set with the #+EXPORT_EXCLUDE_TAGS:
356 keyword."
357 :group 'org-export-general
358 :type '(repeat (string :tag "Tag")))
360 (defcustom org-export-with-fixed-width t
361 "Non-nil means lines starting with \":\" will be in fixed width font.
363 This can be used to have pre-formatted text, fragments of code
364 etc. For example:
365 : ;; Some Lisp examples
366 : (while (defc cnt)
367 : (ding))
368 will be looking just like this in also HTML. See also the QUOTE
369 keyword. Not all export backends support this.
371 This option can also be set with the #+OPTIONS line, e.g. \"::nil\"."
372 :group 'org-export-translation
373 :type 'boolean)
375 (defcustom org-export-with-footnotes t
376 "Non-nil means Org footnotes should be exported.
377 This option can also be set with the #+OPTIONS line,
378 e.g. \"f:nil\"."
379 :group 'org-export-general
380 :type 'boolean)
382 (defcustom org-export-headline-levels 3
383 "The last level which is still exported as a headline.
385 Inferior levels will produce itemize lists when exported. Note
386 that a numeric prefix argument to an exporter function overrides
387 this setting.
389 This option can also be set with the #+OPTIONS line, e.g. \"H:2\"."
390 :group 'org-export-general
391 :type 'integer)
393 (defcustom org-export-default-language "en"
394 "The default language for export and clocktable translations, as a string.
395 This may have an association in
396 `org-clock-clocktable-language-setup'."
397 :group 'org-export-general
398 :type '(string :tag "Language"))
400 (defcustom org-export-preserve-breaks nil
401 "Non-nil means preserve all line breaks when exporting.
403 Normally, in HTML output paragraphs will be reformatted.
405 This option can also be set with the #+OPTIONS line,
406 e.g. \"\\n:t\"."
407 :group 'org-export-general
408 :type 'boolean)
410 (defcustom org-export-with-entities t
411 "Non-nil means interpret entities when exporting.
413 For example, HTML export converts \\alpha to &alpha; and \\AA to
414 &Aring;.
416 For a list of supported names, see the constant `org-entities'
417 and the user option `org-entities-user'.
419 This option can also be set with the #+OPTIONS line,
420 e.g. \"e:nil\"."
421 :group 'org-export-general
422 :type 'boolean)
424 (defcustom org-export-with-priority nil
425 "Non-nil means include priority cookies in export.
427 When nil, remove priority cookies for export.
429 This option can also be set with the #+OPTIONS line,
430 e.g. \"pri:t\"."
431 :group 'org-export-general
432 :type 'boolean)
434 (defcustom org-export-with-section-numbers t
435 "Non-nil means add section numbers to headlines when exporting.
437 When set to an integer n, numbering will only happen for
438 headlines whose relative level is higher or equal to n.
440 This option can also be set with the #+OPTIONS line,
441 e.g. \"num:t\"."
442 :group 'org-export-general
443 :type 'boolean)
445 (defcustom org-export-select-tags '("export")
446 "Tags that select a tree for export.
448 If any such tag is found in a buffer, all trees that do not carry
449 one of these tags will be ignored during export. Inside trees
450 that are selected like this, you can still deselect a subtree by
451 tagging it with one of the `org-export-exclude-tags'.
453 This option can also be set with the #+EXPORT_SELECT_TAGS:
454 keyword."
455 :group 'org-export-general
456 :type '(repeat (string :tag "Tag")))
458 (defcustom org-export-with-special-strings t
459 "Non-nil means interpret \"\-\", \"--\" and \"---\" for export.
461 When this option is turned on, these strings will be exported as:
463 Org HTML LaTeX
464 -----+----------+--------
465 \\- &shy; \\-
466 -- &ndash; --
467 --- &mdash; ---
468 ... &hellip; \ldots
470 This option can also be set with the #+OPTIONS line,
471 e.g. \"-:nil\"."
472 :group 'org-export-general
473 :type 'boolean)
475 (defcustom org-export-with-sub-superscripts t
476 "Non-nil means interpret \"_\" and \"^\" for export.
478 When this option is turned on, you can use TeX-like syntax for
479 sub- and superscripts. Several characters after \"_\" or \"^\"
480 will be considered as a single item - so grouping with {} is
481 normally not needed. For example, the following things will be
482 parsed as single sub- or superscripts.
484 10^24 or 10^tau several digits will be considered 1 item.
485 10^-12 or 10^-tau a leading sign with digits or a word
486 x^2-y^3 will be read as x^2 - y^3, because items are
487 terminated by almost any nonword/nondigit char.
488 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
490 Still, ambiguity is possible - so when in doubt use {} to enclose
491 the sub/superscript. If you set this variable to the symbol
492 `{}', the braces are *required* in order to trigger
493 interpretations as sub/superscript. This can be helpful in
494 documents that need \"_\" frequently in plain text.
496 This option can also be set with the #+OPTIONS line,
497 e.g. \"^:nil\"."
498 :group 'org-export-general
499 :type '(choice
500 (const :tag "Interpret them" t)
501 (const :tag "Curly brackets only" {})
502 (const :tag "Do not interpret them" nil)))
504 (defcustom org-export-with-toc t
505 "Non-nil means create a table of contents in exported files.
507 The TOC contains headlines with levels up
508 to`org-export-headline-levels'. When an integer, include levels
509 up to N in the toc, this may then be different from
510 `org-export-headline-levels', but it will not be allowed to be
511 larger than the number of headline levels. When nil, no table of
512 contents is made.
514 This option can also be set with the #+OPTIONS line,
515 e.g. \"toc:nil\" or \"toc:3\"."
516 :group 'org-export-general
517 :type '(choice
518 (const :tag "No Table of Contents" nil)
519 (const :tag "Full Table of Contents" t)
520 (integer :tag "TOC to level")))
522 (defcustom org-export-with-tables t
523 "If non-nil, lines starting with \"|\" define a table.
524 For example:
526 | Name | Address | Birthday |
527 |-------------+----------+-----------|
528 | Arthur Dent | England | 29.2.2100 |
530 This option can also be set with the #+OPTIONS line, e.g. \"|:nil\"."
531 :group 'org-export-general
532 :type 'boolean)
534 (defcustom org-export-with-tags t
535 "If nil, do not export tags, just remove them from headlines.
537 If this is the symbol `not-in-toc', tags will be removed from
538 table of contents entries, but still be shown in the headlines of
539 the document.
541 This option can also be set with the #+OPTIONS line,
542 e.g. \"tags:nil\"."
543 :group 'org-export-general
544 :type '(choice
545 (const :tag "Off" nil)
546 (const :tag "Not in TOC" not-in-toc)
547 (const :tag "On" t)))
549 (defcustom org-export-with-tasks t
550 "Non-nil means include TODO items for export.
551 This may have the following values:
552 t include tasks independent of state.
553 todo include only tasks that are not yet done.
554 done include only tasks that are already done.
555 nil remove all tasks before export
556 list of keywords keep only tasks with these keywords"
557 :group 'org-export-general
558 :type '(choice
559 (const :tag "All tasks" t)
560 (const :tag "No tasks" nil)
561 (const :tag "Not-done tasks" todo)
562 (const :tag "Only done tasks" done)
563 (repeat :tag "Specific TODO keywords"
564 (string :tag "Keyword"))))
566 (defcustom org-export-time-stamp-file t
567 "Non-nil means insert a time stamp into the exported file.
568 The time stamp shows when the file was created.
570 This option can also be set with the #+OPTIONS line,
571 e.g. \"timestamp:nil\"."
572 :group 'org-export-general
573 :type 'boolean)
575 (defcustom org-export-with-timestamps t
576 "If nil, do not export time stamps and associated keywords."
577 :group 'org-export-general
578 :type 'boolean)
580 (defcustom org-export-with-todo-keywords t
581 "Non-nil means include TODO keywords in export.
582 When nil, remove all these keywords from the export.")
584 (defcustom org-export-allow-BIND 'confirm
585 "Non-nil means allow #+BIND to define local variable values for export.
586 This is a potential security risk, which is why the user must
587 confirm the use of these lines."
588 :group 'org-export-general
589 :type '(choice
590 (const :tag "Never" nil)
591 (const :tag "Always" t)
592 (const :tag "Ask a confirmation for each file" confirm)))
594 (defcustom org-export-snippet-translation-alist nil
595 "Alist between export snippets back-ends and exporter back-ends.
597 This variable allows to provide shortcuts for export snippets.
599 For example, with a value of '\(\(\"h\" . \"html\"\)\), the HTML
600 back-end will recognize the contents of \"@h{<b>}\" as HTML code
601 while every other back-end will ignore it."
602 :group 'org-export-general
603 :type '(repeat
604 (cons
605 (string :tag "Shortcut")
606 (string :tag "Back-end"))))
608 (defcustom org-export-coding-system nil
609 "Coding system for the exported file."
610 :group 'org-export-general
611 :type 'coding-system)
613 (defcustom org-export-copy-to-kill-ring t
614 "Non-nil means exported stuff will also be pushed onto the kill ring."
615 :group 'org-export-general
616 :type 'boolean)
618 (defcustom org-export-initial-scope 'buffer
619 "The initial scope when exporting with `org-export-dispatch'.
620 This variable can be either set to `buffer' or `subtree'."
621 :group 'org-export-general
622 :type '(choice
623 (const :tag "Export current buffer" 'buffer)
624 (const :tag "Export current subtree" 'subtree)))
626 (defcustom org-export-show-temporary-export-buffer t
627 "Non-nil means show buffer after exporting to temp buffer.
628 When Org exports to a file, the buffer visiting that file is ever
629 shown, but remains buried. However, when exporting to a temporary
630 buffer, that buffer is popped up in a second window. When this variable
631 is nil, the buffer remains buried also in these cases."
632 :group 'org-export-general
633 :type 'boolean)
635 (defcustom org-export-dispatch-use-expert-ui nil
636 "Non-nil means using a non-intrusive `org-export-dispatch'.
637 In that case, no help buffer is displayed. Though, an indicator
638 for current export scope is added to the prompt \(i.e. \"b\" when
639 output is restricted to body only, \"s\" when it is restricted to
640 the current subtree and \"v\" when only visible elements are
641 considered for export\). Also, \[?] allows to switch back to
642 standard mode."
643 :group 'org-export-general
644 :type 'boolean)
648 ;;; The Communication Channel
650 ;; During export process, every function has access to a number of
651 ;; properties. They are of three types:
653 ;; 1. Environment options are collected once at the very beginning of
654 ;; the process, out of the original buffer and configuration.
655 ;; Associated to the parse tree, they make an Org closure.
656 ;; Collecting them is handled by `org-export-get-environment'
657 ;; function.
659 ;; Most environment options are defined through the
660 ;; `org-export-option-alist' variable.
662 ;; 2. Tree properties are extracted directly from the parsed tree,
663 ;; just before export, by `org-export-collect-tree-properties'.
665 ;; 3. Local options are updated during parsing, and their value
666 ;; depends on the level of recursion. For now, only `:ignore-list'
667 ;; belongs to that category.
669 ;; Here is the full list of properties available during transcode
670 ;; process, with their category (option, tree or local) and their
671 ;; value type.
673 ;; + `:author' :: Author's name.
674 ;; - category :: option
675 ;; - type :: string
677 ;; + `:back-end' :: Current back-end used for transcoding.
678 ;; - category :: tree
679 ;; - type :: symbol
681 ;; + `:creator' :: String to write as creation information.
682 ;; - category :: option
683 ;; - type :: string
685 ;; + `:date' :: String to use as date.
686 ;; - category :: option
687 ;; - type :: string
689 ;; + `:description' :: Description text for the current data.
690 ;; - category :: option
691 ;; - type :: string
693 ;; + `:email' :: Author's email.
694 ;; - category :: option
695 ;; - type :: string
697 ;; + `:exclude-tags' :: Tags for exclusion of subtrees from export
698 ;; process.
699 ;; - category :: option
700 ;; - type :: list of strings
702 ;; + `:footnote-definition-alist' :: Alist between footnote labels and
703 ;; their definition, as parsed data. Only non-inlined footnotes
704 ;; are represented in this alist. Also, every definition isn't
705 ;; guaranteed to be referenced in the parse tree. The purpose of
706 ;; this property is to preserve definitions from oblivion
707 ;; (i.e. when the parse tree comes from a part of the original
708 ;; buffer), it isn't meant for direct use in a back-end. To
709 ;; retrieve a definition relative to a reference, use
710 ;; `org-export-get-footnote-definition' instead.
711 ;; - category :: option
712 ;; - type :: alist (STRING . LIST)
714 ;; + `:headline-levels' :: Maximum level being exported as an
715 ;; headline. Comparison is done with the relative level of
716 ;; headlines in the parse tree, not necessarily with their
717 ;; actual level.
718 ;; - category :: option
719 ;; - type :: integer
721 ;; + `:headline-offset' :: Difference between relative and real level
722 ;; of headlines in the parse tree. For example, a value of -1
723 ;; means a level 2 headline should be considered as level
724 ;; 1 (cf. `org-export-get-relative-level').
725 ;; - category :: tree
726 ;; - type :: integer
728 ;; + `:headline-numbering' :: Alist between headlines and their
729 ;; numbering, as a list of numbers
730 ;; (cf. `org-export-get-headline-number').
731 ;; - category :: tree
732 ;; - type :: alist (INTEGER . LIST)
734 ;; + `:ignore-list' :: List of elements and objects that should be
735 ;; ignored during export.
736 ;; - category :: local
737 ;; - type :: list of elements and objects
739 ;; + `:input-file' :: Full path to input file, if any.
740 ;; - category :: option
741 ;; - type :: string or nil
743 ;; + `:keywords' :: List of keywords attached to data.
744 ;; - category :: option
745 ;; - type :: string
747 ;; + `:language' :: Default language used for translations.
748 ;; - category :: option
749 ;; - type :: string
751 ;; + `:macro-input-file' :: Macro returning file name of input file,
752 ;; or nil.
753 ;; - category :: option
754 ;; - type :: string or nil
756 ;; + `:parse-tree' :: Whole parse tree, available at any time during
757 ;; transcoding.
758 ;; - category :: global
759 ;; - type :: list (as returned by `org-element-parse-buffer')
761 ;; + `:preserve-breaks' :: Non-nil means transcoding should preserve
762 ;; all line breaks.
763 ;; - category :: option
764 ;; - type :: symbol (nil, t)
766 ;; + `:section-numbers' :: Non-nil means transcoding should add
767 ;; section numbers to headlines.
768 ;; - category :: option
769 ;; - type :: symbol (nil, t)
771 ;; + `:select-tags' :: List of tags enforcing inclusion of sub-trees
772 ;; in transcoding. When such a tag is present,
773 ;; subtrees without it are de facto excluded from
774 ;; the process. See `use-select-tags'.
775 ;; - category :: option
776 ;; - type :: list of strings
778 ;; + `:target-list' :: List of targets encountered in the parse tree.
779 ;; This is used to partly resolve "fuzzy" links
780 ;; (cf. `org-export-resolve-fuzzy-link').
781 ;; - category :: tree
782 ;; - type :: list of strings
784 ;; + `:time-stamp-file' :: Non-nil means transcoding should insert
785 ;; a time stamp in the output.
786 ;; - category :: option
787 ;; - type :: symbol (nil, t)
789 ;; + `:with-archived-trees' :: Non-nil when archived subtrees should
790 ;; also be transcoded. If it is set to the `headline' symbol,
791 ;; only the archived headline's name is retained.
792 ;; - category :: option
793 ;; - type :: symbol (nil, t, `headline')
795 ;; + `:with-author' :: Non-nil means author's name should be included
796 ;; in the output.
797 ;; - category :: option
798 ;; - type :: symbol (nil, t)
800 ;; + `:with-creator' :: Non-nild means a creation sentence should be
801 ;; inserted at the end of the transcoded string. If the value
802 ;; is `comment', it should be commented.
803 ;; - category :: option
804 ;; - type :: symbol (`comment', nil, t)
806 ;; + `:with-drawers' :: Non-nil means drawers should be exported. If
807 ;; its value is a list of names, only drawers with such names
808 ;; will be transcoded.
809 ;; - category :: option
810 ;; - type :: symbol (nil, t) or list of strings
812 ;; + `:with-email' :: Non-nil means output should contain author's
813 ;; email.
814 ;; - category :: option
815 ;; - type :: symbol (nil, t)
817 ;; + `:with-emphasize' :: Non-nil means emphasized text should be
818 ;; interpreted.
819 ;; - category :: option
820 ;; - type :: symbol (nil, t)
822 ;; + `:with-fixed-width' :: Non-nil if transcoder should interpret
823 ;; strings starting with a colon as a fixed-with (verbatim) area.
824 ;; - category :: option
825 ;; - type :: symbol (nil, t)
827 ;; + `:with-footnotes' :: Non-nil if transcoder should interpret
828 ;; footnotes.
829 ;; - category :: option
830 ;; - type :: symbol (nil, t)
832 ;; + `:with-priority' :: Non-nil means transcoding should include
833 ;; priority cookies.
834 ;; - category :: option
835 ;; - type :: symbol (nil, t)
837 ;; + `:with-special-strings' :: Non-nil means transcoding should
838 ;; interpret special strings in plain text.
839 ;; - category :: option
840 ;; - type :: symbol (nil, t)
842 ;; + `:with-sub-superscript' :: Non-nil means transcoding should
843 ;; interpret subscript and superscript. With a value of "{}",
844 ;; only interpret those using curly brackets.
845 ;; - category :: option
846 ;; - type :: symbol (nil, {}, t)
848 ;; + `:with-tables' :: Non-nil means transcoding should interpret
849 ;; tables.
850 ;; - category :: option
851 ;; - type :: symbol (nil, t)
853 ;; + `:with-tags' :: Non-nil means transcoding should keep tags in
854 ;; headlines. A `not-in-toc' value will remove them
855 ;; from the table of contents, if any, nonetheless.
856 ;; - category :: option
857 ;; - type :: symbol (nil, t, `not-in-toc')
859 ;; + `:with-tasks' :: Non-nil means transcoding should include
860 ;; headlines with a TODO keyword. A `todo' value
861 ;; will only include headlines with a todo type
862 ;; keyword while a `done' value will do the
863 ;; contrary. If a list of strings is provided, only
864 ;; tasks with keywords belonging to that list will
865 ;; be kept.
866 ;; - category :: option
867 ;; - type :: symbol (t, todo, done, nil) or list of strings
869 ;; + `:with-timestamps' :: Non-nil means transcoding should include
870 ;; time stamps and associated keywords. Otherwise, completely
871 ;; remove them.
872 ;; - category :: option
873 ;; - type :: symbol: (t, nil)
875 ;; + `:with-toc' :: Non-nil means that a table of contents has to be
876 ;; added to the output. An integer value limits its
877 ;; depth.
878 ;; - category :: option
879 ;; - type :: symbol (nil, t or integer)
881 ;; + `:with-todo-keywords' :: Non-nil means transcoding should
882 ;; include TODO keywords.
883 ;; - category :: option
884 ;; - type :: symbol (nil, t)
887 ;;;; Environment Options
889 ;; Environment options encompass all parameters defined outside the
890 ;; scope of the parsed data. They come from five sources, in
891 ;; increasing precedence order:
893 ;; - Global variables,
894 ;; - Options keyword symbols,
895 ;; - Buffer keywords,
896 ;; - Subtree properties.
898 ;; The central internal function with regards to environment options
899 ;; is `org-export-get-environment'. It updates global variables with
900 ;; "#+BIND:" keywords, then retrieve and prioritize properties from
901 ;; the different sources.
903 ;; The internal functions doing the retrieval are:
904 ;; `org-export-parse-option-keyword' ,
905 ;; `org-export-get-subtree-options' ,
906 ;; `org-export-get-inbuffer-options' and
907 ;; `org-export-get-global-options'.
909 ;; Some properties, which do not rely on the previous sources but
910 ;; still depend on the original buffer, are taken care of with
911 ;; `org-export-initial-options'.
913 ;; Also, `org-export-confirm-letbind' and `org-export-install-letbind'
914 ;; take care of the part relative to "#+BIND:" keywords.
916 (defun org-export-get-environment (&optional backend subtreep ext-plist)
917 "Collect export options from the current buffer.
919 Optional argument BACKEND is a symbol specifying which back-end
920 specific options to read, if any.
922 When optional argument SUBTREEP is non-nil, assume the export is
923 done against the current sub-tree.
925 Third optional argument EXT-PLIST is a property list with
926 external parameters overriding Org default settings, but still
927 inferior to file-local settings."
928 ;; First install #+BIND variables.
929 (org-export-install-letbind-maybe)
930 ;; Get and prioritize export options...
931 (let ((options (org-combine-plists
932 ;; ... from global variables...
933 (org-export-get-global-options backend)
934 ;; ... from buffer's name (default title)...
935 `(:title
936 ,(or (let ((file (buffer-file-name (buffer-base-buffer))))
937 (and file
938 (file-name-sans-extension
939 (file-name-nondirectory file))))
940 (buffer-name (buffer-base-buffer))))
941 ;; ... from an external property list...
942 ext-plist
943 ;; ... from in-buffer settings...
944 (org-export-get-inbuffer-options
945 backend
946 (and buffer-file-name
947 (org-remove-double-quotes buffer-file-name)))
948 ;; ... and from subtree, when appropriate.
949 (and subtreep (org-export-get-subtree-options)))))
950 ;; Add initial options.
951 (setq options (append (org-export-initial-options) options))
952 ;; Return plist.
953 options))
955 (defun org-export-parse-option-keyword (options &optional backend)
956 "Parse an OPTIONS line and return values as a plist.
957 Optional argument BACKEND is a symbol specifying which back-end
958 specific items to read, if any."
959 (let* ((all
960 (append org-export-option-alist
961 (and backend
962 (let ((var (intern
963 (format "org-%s-option-alist" backend))))
964 (and (boundp var) (eval var))))))
965 ;; Build an alist between #+OPTION: item and property-name.
966 (alist (delq nil
967 (mapcar (lambda (e)
968 (when (nth 2 e) (cons (regexp-quote (nth 2 e))
969 (car e))))
970 all)))
971 plist)
972 (mapc (lambda (e)
973 (when (string-match (concat "\\(\\`\\|[ \t]\\)"
974 (car e)
975 ":\\(([^)\n]+)\\|[^ \t\n\r;,.]*\\)")
976 options)
977 (setq plist (plist-put plist
978 (cdr e)
979 (car (read-from-string
980 (match-string 2 options)))))))
981 alist)
982 plist))
984 (defun org-export-get-subtree-options ()
985 "Get export options in subtree at point.
987 Assume point is at subtree's beginning.
989 Return options as a plist."
990 (let (prop plist)
991 (when (setq prop (progn (looking-at org-todo-line-regexp)
992 (or (save-match-data
993 (org-entry-get (point) "EXPORT_TITLE"))
994 (org-match-string-no-properties 3))))
995 (setq plist
996 (plist-put
997 plist :title
998 (org-element-parse-secondary-string
999 prop
1000 (cdr (assq 'keyword org-element-string-restrictions))))))
1001 (when (setq prop (org-entry-get (point) "EXPORT_TEXT"))
1002 (setq plist (plist-put plist :text prop)))
1003 (when (setq prop (org-entry-get (point) "EXPORT_AUTHOR"))
1004 (setq plist (plist-put plist :author prop)))
1005 (when (setq prop (org-entry-get (point) "EXPORT_DATE"))
1006 (setq plist (plist-put plist :date prop)))
1007 (when (setq prop (org-entry-get (point) "EXPORT_OPTIONS"))
1008 (setq plist (org-export-add-options-to-plist plist prop)))
1009 plist))
1011 (defun org-export-get-inbuffer-options (&optional backend files)
1012 "Return current buffer export options, as a plist.
1014 Optional argument BACKEND, when non-nil, is a symbol specifying
1015 which back-end specific options should also be read in the
1016 process.
1018 Optional argument FILES is a list of setup files names read so
1019 far, used to avoid circular dependencies.
1021 Assume buffer is in Org mode. Narrowing, if any, is ignored."
1022 (org-with-wide-buffer
1023 (goto-char (point-min))
1024 (let ((case-fold-search t) plist)
1025 ;; 1. Special keywords, as in `org-export-special-keywords'.
1026 (let ((special-re (org-make-options-regexp org-export-special-keywords)))
1027 (while (re-search-forward special-re nil t)
1028 (let ((element (org-element-at-point)))
1029 (when (eq (org-element-type element) 'keyword)
1030 (let* ((key (upcase (org-element-property :key element)))
1031 (val (org-element-property :value element))
1032 (prop
1033 (cond
1034 ((string= key "SETUP_FILE")
1035 (let ((file
1036 (expand-file-name
1037 (org-remove-double-quotes (org-trim val)))))
1038 ;; Avoid circular dependencies.
1039 (unless (member file files)
1040 (with-temp-buffer
1041 (insert (org-file-contents file 'noerror))
1042 (org-mode)
1043 (org-export-get-inbuffer-options
1044 backend (cons file files))))))
1045 ((string= key "OPTIONS")
1046 (org-export-parse-option-keyword val backend))
1047 ((string= key "MACRO")
1048 (when (string-match
1049 "^\\([-a-zA-Z0-9_]+\\)\\(?:[ \t]+\\(.*?\\)[ \t]*$\\)?"
1050 val)
1051 (let ((key
1052 (intern
1053 (concat ":macro-"
1054 (downcase (match-string 1 val)))))
1055 (value (org-match-string-no-properties 2 val)))
1056 (cond
1057 ((not value) nil)
1058 ;; Value will be evaled. Leave it as-is.
1059 ((string-match "\\`(eval\\>" value)
1060 (list key value))
1061 ;; Value has to be parsed for nested
1062 ;; macros.
1064 (list
1066 (let ((restr
1067 (cdr
1068 (assq 'macro
1069 org-element-object-restrictions))))
1070 (org-element-parse-secondary-string
1071 ;; If user explicitly asks for
1072 ;; a newline, be sure to preserve it
1073 ;; from further filling with
1074 ;; `hard-newline'. Also replace
1075 ;; "\\n" with "\n", "\\\n" with "\\n"
1076 ;; and so on...
1077 (replace-regexp-in-string
1078 "\\(\\\\\\\\\\)n" "\\\\"
1079 (replace-regexp-in-string
1080 "\\(?:^\\|[^\\\\]\\)\\(\\\\n\\)"
1081 hard-newline value nil nil 1)
1082 nil nil 1)
1083 restr)))))))))))
1084 (setq plist (org-combine-plists plist prop)))))))
1085 ;; 2. Standard options, as in `org-export-option-alist'.
1086 (let* ((all (append org-export-option-alist
1087 ;; Also look for back-end specific options
1088 ;; if BACKEND is defined.
1089 (and backend
1090 (let ((var
1091 (intern
1092 (format "org-%s-option-alist" backend))))
1093 (and (boundp var) (eval var))))))
1094 ;; Build alist between keyword name and property name.
1095 (alist
1096 (delq nil (mapcar
1097 (lambda (e) (when (nth 1 e) (cons (nth 1 e) (car e))))
1098 all)))
1099 ;; Build regexp matching all keywords associated to export
1100 ;; options. Note: the search is case insensitive.
1101 (opt-re (org-make-options-regexp
1102 (delq nil (mapcar (lambda (e) (nth 1 e)) all)))))
1103 (goto-char (point-min))
1104 (while (re-search-forward opt-re nil t)
1105 (let ((element (org-element-at-point)))
1106 (when (eq (org-element-type element) 'keyword)
1107 (let* ((key (upcase (org-element-property :key element)))
1108 (val (org-element-property :value element))
1109 (prop (cdr (assoc key alist)))
1110 (behaviour (nth 4 (assq prop all))))
1111 (setq plist
1112 (plist-put
1113 plist prop
1114 ;; Handle value depending on specified BEHAVIOUR.
1115 (case behaviour
1116 (space
1117 (if (not (plist-get plist prop)) (org-trim val)
1118 (concat (plist-get plist prop) " " (org-trim val))))
1119 (newline
1120 (org-trim
1121 (concat (plist-get plist prop) "\n" (org-trim val))))
1122 (split
1123 `(,@(plist-get plist prop) ,@(org-split-string val)))
1124 ('t val)
1125 (otherwise (if (not (plist-member plist prop)) val
1126 (plist-get plist prop))))))))))
1127 ;; Parse keywords specified in `org-element-parsed-keywords'.
1128 (mapc
1129 (lambda (key)
1130 (let* ((prop (cdr (assoc key alist)))
1131 (value (and prop (plist-get plist prop))))
1132 (when (stringp value)
1133 (setq plist
1134 (plist-put
1135 plist prop
1136 (org-element-parse-secondary-string
1137 value
1138 (cdr (assq 'keyword org-element-string-restrictions))))))))
1139 org-element-parsed-keywords))
1140 ;; 3. Return final value.
1141 plist)))
1143 (defun org-export-get-global-options (&optional backend)
1144 "Return global export options as a plist.
1146 Optional argument BACKEND, if non-nil, is a symbol specifying
1147 which back-end specific export options should also be read in the
1148 process."
1149 (let ((all (append org-export-option-alist
1150 (and backend
1151 (let ((var (intern
1152 (format "org-%s-option-alist" backend))))
1153 (and (boundp var) (eval var))))))
1154 ;; Output value.
1155 plist)
1156 (mapc (lambda (cell)
1157 (setq plist (plist-put plist (car cell) (eval (nth 3 cell)))))
1158 all)
1159 ;; Return value.
1160 plist))
1162 (defun org-export-initial-options ()
1163 "Return a plist with properties related to input buffer."
1164 (let ((visited-file (buffer-file-name (buffer-base-buffer))))
1165 (list
1166 ;; Store full path of input file name, or nil. For internal use.
1167 :input-file visited-file
1168 ;; `:macro-date', `:macro-time' and `:macro-property' could as well
1169 ;; be initialized as tree properties, since they don't depend on
1170 ;; initial environment. Though, it may be more logical to keep
1171 ;; them close to other ":macro-" properties.
1172 :macro-date "(eval (format-time-string \"$1\"))"
1173 :macro-time "(eval (format-time-string \"$1\"))"
1174 :macro-property "(eval (org-entry-get nil \"$1\" 'selective))"
1175 :macro-modification-time
1176 (and visited-file
1177 (file-exists-p visited-file)
1178 (concat "(eval (format-time-string \"$1\" '"
1179 (prin1-to-string (nth 5 (file-attributes visited-file)))
1180 "))"))
1181 ;; Store input file name as a macro.
1182 :macro-input-file (and visited-file (file-name-nondirectory visited-file))
1183 ;; Footnotes definitions must be collected in the original buffer,
1184 ;; as there's no insurance that they will still be in the parse
1185 ;; tree, due to some narrowing.
1186 :footnote-definition-alist
1187 (let (alist)
1188 (org-with-wide-buffer
1189 (goto-char (point-min))
1190 (while (re-search-forward org-footnote-definition-re nil t)
1191 (let ((def (org-footnote-at-definition-p)))
1192 (when def
1193 (org-skip-whitespace)
1194 (push (cons (car def)
1195 (save-restriction
1196 (narrow-to-region (point) (nth 2 def))
1197 ;; Like `org-element-parse-buffer', but
1198 ;; makes sure the definition doesn't start
1199 ;; with a section element.
1200 (nconc
1201 (list 'org-data nil)
1202 (org-element-parse-elements
1203 (point-min) (point-max) nil nil nil nil nil))))
1204 alist))))
1205 alist)))))
1207 (defvar org-export-allow-BIND-local nil)
1208 (defun org-export-confirm-letbind ()
1209 "Can we use #+BIND values during export?
1210 By default this will ask for confirmation by the user, to divert
1211 possible security risks."
1212 (cond
1213 ((not org-export-allow-BIND) nil)
1214 ((eq org-export-allow-BIND t) t)
1215 ((local-variable-p 'org-export-allow-BIND-local) org-export-allow-BIND-local)
1216 (t (org-set-local 'org-export-allow-BIND-local
1217 (yes-or-no-p "Allow BIND values in this buffer? ")))))
1219 (defun org-export-install-letbind-maybe ()
1220 "Install the values from #+BIND lines as local variables.
1221 Variables must be installed before in-buffer options are
1222 retrieved."
1223 (let (letbind pair)
1224 (org-with-wide-buffer
1225 (goto-char (point-min))
1226 (while (re-search-forward (org-make-options-regexp '("BIND")) nil t)
1227 (when (org-export-confirm-letbind)
1228 (push (read (concat "(" (org-match-string-no-properties 2) ")"))
1229 letbind))))
1230 (while (setq pair (pop letbind))
1231 (org-set-local (car pair) (nth 1 pair)))))
1234 ;;;; Tree Properties
1236 ;; Tree properties are infromation extracted from parse tree. They
1237 ;; are initialized at the beginning of the transcoding process by
1238 ;; `org-export-collect-tree-properties'.
1240 ;; Dedicated functions focus on computing the value of specific tree
1241 ;; properties during initialization. Thus,
1242 ;; `org-export-populate-ignore-list' lists elements and objects that
1243 ;; should be skipped during export, `org-export-get-min-level' gets
1244 ;; the minimal exportable level, used as a basis to compute relative
1245 ;; level for headlines. Eventually
1246 ;; `org-export-collect-headline-numbering' builds an alist between
1247 ;; headlines and their numbering.
1249 (defun org-export-collect-tree-properties (data info backend)
1250 "Extract tree properties from parse tree.
1252 DATA is the parse tree from which information is retrieved. INFO
1253 is a list holding export options. BACKEND is the back-end called
1254 for transcoding, as a symbol.
1256 Following tree properties are set:
1257 `:back-end' Back-end used for transcoding.
1259 `:headline-offset' Offset between true level of headlines and
1260 local level. An offset of -1 means an headline
1261 of level 2 should be considered as a level
1262 1 headline in the context.
1264 `:headline-numbering' Alist of all headlines as key an the
1265 associated numbering as value.
1267 `:ignore-list' List of elements that should be ignored during
1268 export.
1270 `:parse-tree' Whole parse tree.
1272 `:target-list' List of all targets in the parse tree."
1273 ;; First, get the list of elements and objects to ignore, and put it
1274 ;; into `:ignore-list'.
1275 (setq info
1276 (plist-put info
1277 :ignore-list (org-export-populate-ignore-list data info)))
1278 ;; Then compute `:headline-offset' in order to be able to use
1279 ;; `org-export-get-relative-level'.
1280 (setq info
1281 (plist-put info
1282 :headline-offset (- 1 (org-export-get-min-level data info))))
1283 ;; Now, properties order doesn't matter: get the rest of the tree
1284 ;; properties.
1285 (nconc
1286 `(:parse-tree
1287 ,data
1288 :target-list
1289 ,(org-element-map data 'target (lambda (target local) target) info)
1290 :headline-numbering ,(org-export-collect-headline-numbering data info)
1291 :back-end ,backend)
1292 info))
1294 (defun org-export-get-min-level (data options)
1295 "Return minimum exportable headline's level in DATA.
1296 DATA is parsed tree as returned by `org-element-parse-buffer'.
1297 OPTIONS is a plist holding export options."
1298 (catch 'exit
1299 (let ((min-level 10000))
1300 (mapc
1301 (lambda (blob)
1302 (when (and (eq (org-element-type blob) 'headline)
1303 (not (member blob (plist-get options :ignore-list))))
1304 (setq min-level
1305 (min (org-element-property :level blob) min-level)))
1306 (when (= min-level 1) (throw 'exit 1)))
1307 (org-element-contents data))
1308 ;; If no headline was found, for the sake of consistency, set
1309 ;; minimum level to 1 nonetheless.
1310 (if (= min-level 10000) 1 min-level))))
1312 (defun org-export-collect-headline-numbering (data options)
1313 "Return numbering of all exportable headlines in a parse tree.
1315 DATA is the parse tree. OPTIONS is the plist holding export
1316 options.
1318 Return an alist whose key is an headline and value is its
1319 associated numbering \(in the shape of a list of numbers\)."
1320 (let ((numbering (make-vector org-export-max-depth 0)))
1321 (org-element-map
1322 data
1323 'headline
1324 (lambda (headline info)
1325 (let ((relative-level
1326 (1- (org-export-get-relative-level headline info))))
1327 (cons
1328 headline
1329 (loop for n across numbering
1330 for idx from 0 to org-export-max-depth
1331 when (< idx relative-level) collect n
1332 when (= idx relative-level) collect (aset numbering idx (1+ n))
1333 when (> idx relative-level) do (aset numbering idx 0)))))
1334 options)))
1336 (defun org-export-populate-ignore-list (data options)
1337 "Return list of elements and objects to ignore during export.
1339 DATA is the parse tree to traverse. OPTIONS is the plist holding
1340 export options.
1342 Return elements or objects to ignore as a list."
1343 (let (ignore
1344 (walk-data
1345 (function
1346 (lambda (data options selected)
1347 ;; Collect ignored elements or objects into IGNORE-LIST.
1348 (mapc
1349 (lambda (el)
1350 (if (org-export--skip-p el options selected) (push el ignore)
1351 (let ((type (org-element-type el)))
1352 (if (and (eq (plist-get info :with-archived-trees) 'headline)
1353 (eq (org-element-type el) 'headline)
1354 (org-element-property :archivedp el))
1355 ;; If headline is archived but tree below has
1356 ;; to be skipped, add it to ignore list.
1357 (mapc (lambda (e) (push e ignore))
1358 (org-element-contents el))
1359 ;; Move into recursive objects/elements.
1360 (when (or (eq type 'org-data)
1361 (memq type org-element-greater-elements)
1362 (memq type org-element-recursive-objects)
1363 (eq type 'paragraph))
1364 (funcall walk-data el options selected))))))
1365 (org-element-contents data))))))
1366 ;; Main call. First find trees containing a select tag, if any.
1367 (funcall walk-data data options (org-export--selected-trees data options))
1368 ;; Return value.
1369 ignore))
1371 (defun org-export--selected-trees (data info)
1372 "Return list of headlines containing a select tag in their tree.
1373 DATA is parsed data as returned by `org-element-parse-buffer'.
1374 INFO is a plist holding export options."
1375 (let (selected-trees
1376 (walk-data
1377 (function
1378 (lambda (data genealogy)
1379 (case (org-element-type data)
1380 (org-data
1381 (funcall walk-data (org-element-contents data) genealogy))
1382 (headline
1383 (let ((tags (org-element-property :tags headline)))
1384 (if (and tags
1385 (loop for tag in (plist-get info :select-tags)
1386 thereis (string-match
1387 (format ":%s:" tag) tags)))
1388 ;; When a select tag is found, mark as acceptable
1389 ;; full genealogy and every headline within the
1390 ;; tree.
1391 (setq selected-trees
1392 (append
1393 (cons data genealogy)
1394 (org-element-map data 'headline (lambda (h p) h))
1395 selected-trees))
1396 ;; Else, continue searching in tree, recursively.
1397 (funcall walk-data data (cons data genealogy))))))))))
1398 (funcall walk-data data nil) selected-trees))
1400 (defun org-export--skip-p (blob options select-tags)
1401 "Non-nil when element or object BLOB should be skipped during export.
1402 OPTIONS is the plist holding export options."
1403 (case (org-element-type blob)
1404 ;; Check headline.
1405 (headline
1406 (let ((with-tasks (plist-get options :with-tasks))
1407 (todo (org-element-property :todo-keyword blob))
1408 (todo-type (org-element-property :todo-type blob))
1409 (archived (plist-get options :with-archived-trees))
1410 (tag-list (let ((tags (org-element-property :tags blob)))
1411 (and tags (org-split-string tags ":")))))
1413 ;; Ignore subtrees with an exclude tag.
1414 (loop for k in (plist-get options :exclude-tags)
1415 thereis (member k tag-list))
1416 ;; Ignore subtrees without a select tag, when such tag is
1417 ;; found in the buffer.
1418 (member blob select-tags)
1419 ;; Ignore commented sub-trees.
1420 (org-element-property :commentedp blob)
1421 ;; Ignore archived subtrees if `:with-archived-trees' is nil.
1422 (and (not archived) (org-element-property :archivedp blob))
1423 ;; Ignore tasks, if specified by `:with-tasks' property.
1424 (and todo
1425 (or (not with-tasks)
1426 (and (memq with-tasks '(todo done))
1427 (not (eq todo-type with-tasks)))
1428 (and (consp with-tasks) (not (member todo with-tasks))))))))
1429 ;; Check time-stamp.
1430 (time-stamp (not (plist-get options :with-timestamps)))
1431 ;; Check drawer.
1432 (drawer
1433 (or (not (plist-get options :with-drawers))
1434 (and (consp (plist-get options :with-drawers))
1435 (not (member (org-element-property :drawer-name blob)
1436 (plist-get options :with-drawers))))))
1437 ;; Check export snippet.
1438 (export-snippet
1439 (let* ((raw-back-end (org-element-property :back-end blob))
1440 (true-back-end
1441 (or (cdr (assoc raw-back-end org-export-snippet-translation-alist))
1442 raw-back-end)))
1443 (not (string= (symbol-name (plist-get options :back-end))
1444 true-back-end))))))
1448 ;;; The Transcoder
1450 ;; This function reads Org data (obtained with, i.e.
1451 ;; `org-element-parse-buffer') and transcodes it into a specified
1452 ;; back-end output. It takes care of updating local properties,
1453 ;; filtering out elements or objects according to export options and
1454 ;; organizing the output blank lines and white space are preserved.
1456 ;; Though, this function is inapropriate for secondary strings, which
1457 ;; require a fresh copy of the plist passed as INFO argument. Thus,
1458 ;; `org-export-secondary-string' is provided for that specific task.
1460 ;; Internally, three functions handle the filtering of objects and
1461 ;; elements during the export. In particular,
1462 ;; `org-export-ignore-element' mark an element or object so future
1463 ;; parse tree traversals skip it, `org-export-interpret-p' tells which
1464 ;; elements or objects should be seen as real Org syntax and
1465 ;; `org-export-expand' transforms the others back into their original
1466 ;; shape.
1468 (defun org-export-data (data backend info)
1469 "Convert DATA to a string into BACKEND format.
1471 DATA is a nested list as returned by `org-element-parse-buffer'.
1473 BACKEND is a symbol among supported exporters.
1475 INFO is a plist holding export options and also used as
1476 a communication channel between elements when walking the nested
1477 list. See `org-export-update-info' function for more
1478 details.
1480 Return transcoded string."
1481 (mapconcat
1482 ;; BLOB can be an element, an object, a string, or nil.
1483 (lambda (blob)
1484 (cond
1485 ((not blob) nil)
1486 ;; BLOB is a string. Check if the optional transcoder for plain
1487 ;; text exists, and call it in that case. Otherwise, simply
1488 ;; return string. Also update INFO and call
1489 ;; `org-export-filter-plain-text-functions'.
1490 ((stringp blob)
1491 (let ((transcoder (intern (format "org-%s-plain-text" backend))))
1492 (org-export-filter-apply-functions
1493 (plist-get info :filter-plain-text)
1494 (if (fboundp transcoder) (funcall transcoder blob info) blob)
1495 backend info)))
1496 ;; BLOB is an element or an object.
1498 (let* ((type (org-element-type blob))
1499 ;; 1. Determine the appropriate TRANSCODER.
1500 (transcoder
1501 (cond
1502 ;; 1.0 A full Org document is inserted.
1503 ((eq type 'org-data) 'identity)
1504 ;; 1.1. BLOB should be ignored.
1505 ((member blob (plist-get info :ignore-list)) nil)
1506 ;; 1.2. BLOB shouldn't be transcoded. Interpret it
1507 ;; back into Org syntax.
1508 ((not (org-export-interpret-p blob info)) 'org-export-expand)
1509 ;; 1.3. Else apply naming convention.
1510 (t (let ((trans (intern (format "org-%s-%s" backend type))))
1511 (and (fboundp trans) trans)))))
1512 ;; 2. Compute CONTENTS of BLOB.
1513 (contents
1514 (cond
1515 ;; Case 0. No transcoder defined: ignore BLOB.
1516 ((not transcoder) nil)
1517 ;; Case 1. Transparently export an Org document.
1518 ((eq type 'org-data) (org-export-data blob backend info))
1519 ;; Case 2. For a recursive object.
1520 ((memq type org-element-recursive-objects)
1521 (org-export-data blob backend info))
1522 ;; Case 3. For a recursive element.
1523 ((memq type org-element-greater-elements)
1524 ;; Ignore contents of an archived tree
1525 ;; when `:with-archived-trees' is `headline'.
1526 (unless (and
1527 (eq type 'headline)
1528 (eq (plist-get info :with-archived-trees) 'headline)
1529 (org-element-property :archivedp blob))
1530 (org-element-normalize-string
1531 (org-export-data blob backend info))))
1532 ;; Case 4. For a paragraph.
1533 ((eq type 'paragraph)
1534 (let ((paragraph
1535 (org-element-normalize-contents
1536 blob
1537 ;; When normalizing contents of an item or
1538 ;; a footnote definition, ignore first line's
1539 ;; indentation: there is none and it might be
1540 ;; misleading.
1541 (and (not (org-export-get-previous-element blob info))
1542 (let ((parent (org-export-get-parent blob info)))
1543 (memq (org-element-type parent)
1544 '(footnote-definition item)))))))
1545 (org-export-data paragraph backend info)))))
1546 ;; 3. Transcode BLOB into RESULTS string.
1547 (results (cond
1548 ((not transcoder) nil)
1549 ((eq transcoder 'org-export-expand)
1550 (org-export-data
1551 `(org-data nil ,(funcall transcoder blob contents))
1552 backend info))
1553 (t (funcall transcoder blob contents info)))))
1554 ;; 4. Return results.
1555 (cond
1556 ;; Discard nil results. Also ignore BLOB from further
1557 ;; traversals in parse tree.
1558 ((not results) (org-export-ignore-element blob info) nil)
1559 ;; No filter for a full document.
1560 ((eq type 'org-data) results)
1561 ;; Otherwise, update INFO, append the same white space
1562 ;; between elements or objects as in the original buffer,
1563 ;; and call appropriate filters.
1565 (let ((results
1566 (org-export-filter-apply-functions
1567 (plist-get info (intern (format ":filter-%s" type)))
1568 (let ((post-blank (org-element-property :post-blank blob)))
1569 (if (memq type org-element-all-elements)
1570 (concat (org-element-normalize-string results)
1571 (make-string post-blank ?\n))
1572 (concat results (make-string post-blank ? ))))
1573 backend info)))
1574 ;; If BLOB was transcoded into an empty string, ignore it
1575 ;; from subsequent traversals.
1576 (unless (org-string-nw-p results)
1577 (org-export-ignore-element blob info))
1578 ;; Eventually return string.
1579 results)))))))
1580 (org-element-contents data) ""))
1582 (defun org-export-secondary-string (secondary backend info)
1583 "Convert SECONDARY string into BACKEND format.
1585 SECONDARY is a nested list as returned by
1586 `org-element-parse-secondary-string'.
1588 BACKEND is a symbol among supported exporters. INFO is a plist
1589 used as a communication channel.
1591 Return transcoded string."
1592 ;; Make SECONDARY acceptable for `org-export-data'.
1593 (let ((s (if (listp secondary) secondary (list secondary))))
1594 (org-export-data `(org-data nil ,@s) backend (copy-sequence info))))
1596 (defun org-export-interpret-p (blob info)
1597 "Non-nil if element or object BLOB should be interpreted as Org syntax.
1598 Check is done according to export options INFO, stored as
1599 a plist."
1600 (case (org-element-type blob)
1601 ;; ... entities...
1602 (entity (plist-get info :with-entities))
1603 ;; ... emphasis...
1604 (emphasis (plist-get info :with-emphasize))
1605 ;; ... fixed-width areas.
1606 (fixed-width (plist-get info :with-fixed-width))
1607 ;; ... footnotes...
1608 ((footnote-definition footnote-reference)
1609 (plist-get info :with-footnotes))
1610 ;; ... sub/superscripts...
1611 ((subscript superscript)
1612 (let ((sub/super-p (plist-get info :with-sub-superscript)))
1613 (if (eq sub/super-p '{})
1614 (org-element-property :use-brackets-p blob)
1615 sub/super-p)))
1616 ;; ... tables...
1617 (table (plist-get info :with-tables))
1618 (otherwise t)))
1620 (defsubst org-export-expand (blob contents)
1621 "Expand a parsed element or object to its original state.
1622 BLOB is either an element or an object. CONTENTS is its
1623 contents, as a string or nil."
1624 (funcall (intern (format "org-element-%s-interpreter" (org-element-type blob)))
1625 blob contents))
1627 (defun org-export-ignore-element (element info)
1628 "Add ELEMENT to `:ignore-list' in INFO.
1630 Any element in `:ignore-list' will be skipped when using
1631 `org-element-map'. INFO is modified by side effects."
1632 (plist-put info :ignore-list (cons element (plist-get info :ignore-list))))
1636 ;;; The Filter System
1638 ;; Filters allow end-users to tweak easily the transcoded output.
1639 ;; They are the functional counterpart of hooks, as every filter in
1640 ;; a set is applied to the return value of the previous one.
1642 ;; Every set is back-end agnostic. Although, a filter is always
1643 ;; called, in addition to the string it applies to, with the back-end
1644 ;; used as argument, so it's easy enough for the end-user to add
1645 ;; back-end specific filters in the set. The communication channel,
1646 ;; as a plist, is required as the third argument.
1648 ;; Filters sets are defined below. There are of four types:
1650 ;; - `org-export-filter-parse-tree-functions' applies directly on the
1651 ;; complete parsed tree. It's the only filters set that doesn't
1652 ;; apply to a string.
1653 ;; - `org-export-filter-final-output-functions' applies to the final
1654 ;; transcoded string.
1655 ;; - `org-export-filter-plain-text-functions' applies to any string
1656 ;; not recognized as Org syntax.
1657 ;; - `org-export-filter-TYPE-functions' applies on the string returned
1658 ;; after an element or object of type TYPE has been transcoded.
1660 ;; All filters sets are applied through
1661 ;; `org-export-filter-apply-functions' function. Filters in a set are
1662 ;; applied in a LIFO fashion. It allows developers to be sure that
1663 ;; their filters will be applied first.
1665 ;; Filters properties are installed in communication channel just
1666 ;; before parsing, with `org-export-install-filters' function.
1668 ;;;; Special Filters
1669 (defvar org-export-filter-parse-tree-functions nil
1670 "Filter, or list of filters, applied to the parsed tree.
1671 Each filter is called with three arguments: the parse tree, as
1672 returned by `org-element-parse-buffer', the back-end, as
1673 a symbol, and the communication channel, as a plist. It must
1674 return the modified parse tree to transcode.")
1676 (defvar org-export-filter-final-output-functions nil
1677 "Filter, or list of filters, applied to the transcoded string.
1678 Each filter is called with three arguments: the full transcoded
1679 string, the back-end, as a symbol, and the communication channel,
1680 as a plist. It must return a string that will be used as the
1681 final export output.")
1683 (defvar org-export-filter-plain-text-functions nil
1684 "Filter, or list of filters, applied to plain text.
1685 Each filter is called with three arguments: a string which
1686 contains no Org syntax, the back-end, as a symbol, and the
1687 communication channel, as a plist. It must return a string or
1688 nil.")
1691 ;;;; Elements Filters
1693 (defvar org-export-filter-center-block-functions nil
1694 "List of functions applied to a transcoded center block.
1695 Each filter is called with three arguments: the transcoded center
1696 block, as a string, the back-end, as a symbol, and the
1697 communication channel, as a plist. It must return a string or
1698 nil.")
1700 (defvar org-export-filter-drawer-functions nil
1701 "List of functions applied to a transcoded drawer.
1702 Each filter is called with three arguments: the transcoded
1703 drawer, as a string, the back-end, as a symbol, and the
1704 communication channel, as a plist. It must return a string or
1705 nil.")
1707 (defvar org-export-filter-dynamic-block-functions nil
1708 "List of functions applied to a transcoded dynamic-block.
1709 Each filter is called with three arguments: the transcoded
1710 dynamic-block, as a string, the back-end, as a symbol, and the
1711 communication channel, as a plist. It must return a string or
1712 nil.")
1714 (defvar org-export-filter-headline-functions nil
1715 "List of functions applied to a transcoded headline.
1716 Each filter is called with three arguments: the transcoded
1717 headline, as a string, the back-end, as a symbol, and the
1718 communication channel, as a plist. It must return a string or
1719 nil.")
1721 (defvar org-export-filter-inlinetask-functions nil
1722 "List of functions applied to a transcoded inlinetask.
1723 Each filter is called with three arguments: the transcoded
1724 inlinetask, as a string, the back-end, as a symbol, and the
1725 communication channel, as a plist. It must return a string or
1726 nil.")
1728 (defvar org-export-filter-plain-list-functions nil
1729 "List of functions applied to a transcoded plain-list.
1730 Each filter is called with three arguments: the transcoded
1731 plain-list, as a string, the back-end, as a symbol, and the
1732 communication channel, as a plist. It must return a string or
1733 nil.")
1735 (defvar org-export-filter-item-functions nil
1736 "List of functions applied to a transcoded item.
1737 Each filter is called with three arguments: the transcoded item,
1738 as a string, the back-end, as a symbol, and the communication
1739 channel, as a plist. It must return a string or nil.")
1741 (defvar org-export-filter-comment-functions nil
1742 "List of functions applied to a transcoded comment.
1743 Each filter is called with three arguments: the transcoded
1744 comment, as a string, the back-end, as a symbol, and the
1745 communication channel, as a plist. It must return a string or
1746 nil.")
1748 (defvar org-export-filter-comment-block-functions nil
1749 "List of functions applied to a transcoded comment-comment.
1750 Each filter is called with three arguments: the transcoded
1751 comment-block, as a string, the back-end, as a symbol, and the
1752 communication channel, as a plist. It must return a string or
1753 nil.")
1755 (defvar org-export-filter-example-block-functions nil
1756 "List of functions applied to a transcoded example-block.
1757 Each filter is called with three arguments: the transcoded
1758 example-block, as a string, the back-end, as a symbol, and the
1759 communication channel, as a plist. It must return a string or
1760 nil.")
1762 (defvar org-export-filter-export-block-functions nil
1763 "List of functions applied to a transcoded export-block.
1764 Each filter is called with three arguments: the transcoded
1765 export-block, as a string, the back-end, as a symbol, and the
1766 communication channel, as a plist. It must return a string or
1767 nil.")
1769 (defvar org-export-filter-fixed-width-functions nil
1770 "List of functions applied to a transcoded fixed-width.
1771 Each filter is called with three arguments: the transcoded
1772 fixed-width, as a string, the back-end, as a symbol, and the
1773 communication channel, as a plist. It must return a string or
1774 nil.")
1776 (defvar org-export-filter-footnote-definition-functions nil
1777 "List of functions applied to a transcoded footnote-definition.
1778 Each filter is called with three arguments: the transcoded
1779 footnote-definition, as a string, the back-end, as a symbol, and
1780 the communication channel, as a plist. It must return a string
1781 or nil.")
1783 (defvar org-export-filter-horizontal-rule-functions nil
1784 "List of functions applied to a transcoded horizontal-rule.
1785 Each filter is called with three arguments: the transcoded
1786 horizontal-rule, as a string, the back-end, as a symbol, and the
1787 communication channel, as a plist. It must return a string or
1788 nil.")
1790 (defvar org-export-filter-keyword-functions nil
1791 "List of functions applied to a transcoded keyword.
1792 Each filter is called with three arguments: the transcoded
1793 keyword, as a string, the back-end, as a symbol, and the
1794 communication channel, as a plist. It must return a string or
1795 nil.")
1797 (defvar org-export-filter-latex-environment-functions nil
1798 "List of functions applied to a transcoded latex-environment.
1799 Each filter is called with three arguments: the transcoded
1800 latex-environment, as a string, the back-end, as a symbol, and
1801 the communication channel, as a plist. It must return a string
1802 or nil.")
1804 (defvar org-export-filter-babel-call-functions nil
1805 "List of functions applied to a transcoded babel-call.
1806 Each filter is called with three arguments: the transcoded
1807 babel-call, as a string, the back-end, as a symbol, and the
1808 communication channel, as a plist. It must return a string or
1809 nil.")
1811 (defvar org-export-filter-paragraph-functions nil
1812 "List of functions applied to a transcoded paragraph.
1813 Each filter is called with three arguments: the transcoded
1814 paragraph, as a string, the back-end, as a symbol, and the
1815 communication channel, as a plist. It must return a string or
1816 nil.")
1818 (defvar org-export-filter-property-drawer-functions nil
1819 "List of functions applied to a transcoded property-drawer.
1820 Each filter is called with three arguments: the transcoded
1821 property-drawer, as a string, the back-end, as a symbol, and the
1822 communication channel, as a plist. It must return a string or
1823 nil.")
1825 (defvar org-export-filter-quote-block-functions nil
1826 "List of functions applied to a transcoded quote block.
1827 Each filter is called with three arguments: the transcoded quote
1828 block, as a string, the back-end, as a symbol, and the
1829 communication channel, as a plist. It must return a string or
1830 nil.")
1832 (defvar org-export-filter-quote-section-functions nil
1833 "List of functions applied to a transcoded quote-section.
1834 Each filter is called with three arguments: the transcoded
1835 quote-section, as a string, the back-end, as a symbol, and the
1836 communication channel, as a plist. It must return a string or
1837 nil.")
1839 (defvar org-export-filter-section-functions nil
1840 "List of functions applied to a transcoded section.
1841 Each filter is called with three arguments: the transcoded
1842 section, as a string, the back-end, as a symbol, and the
1843 communication channel, as a plist. It must return a string or
1844 nil.")
1846 (defvar org-export-filter-special-block-functions nil
1847 "List of functions applied to a transcoded special block.
1848 Each filter is called with three arguments: the transcoded
1849 special block, as a string, the back-end, as a symbol, and the
1850 communication channel, as a plist. It must return a string or
1851 nil.")
1853 (defvar org-export-filter-src-block-functions nil
1854 "List of functions applied to a transcoded src-block.
1855 Each filter is called with three arguments: the transcoded
1856 src-block, as a string, the back-end, as a symbol, and the
1857 communication channel, as a plist. It must return a string or
1858 nil.")
1860 (defvar org-export-filter-table-functions nil
1861 "List of functions applied to a transcoded table.
1862 Each filter is called with three arguments: the transcoded table,
1863 as a string, the back-end, as a symbol, and the communication
1864 channel, as a plist. It must return a string or nil.")
1866 (defvar org-export-filter-verse-block-functions nil
1867 "List of functions applied to a transcoded verse block.
1868 Each filter is called with three arguments: the transcoded verse
1869 block, as a string, the back-end, as a symbol, and the
1870 communication channel, as a plist. It must return a string or
1871 nil.")
1874 ;;;; Objects Filters
1876 (defvar org-export-filter-emphasis-functions nil
1877 "List of functions applied to a transcoded emphasis.
1878 Each filter is called with three arguments: the transcoded
1879 emphasis, as a string, the back-end, as a symbol, and the
1880 communication channel, as a plist. It must return a string or
1881 nil.")
1883 (defvar org-export-filter-entity-functions nil
1884 "List of functions applied to a transcoded entity.
1885 Each filter is called with three arguments: the transcoded
1886 entity, as a string, the back-end, as a symbol, and the
1887 communication channel, as a plist. It must return a string or
1888 nil.")
1890 (defvar org-export-filter-export-snippet-functions nil
1891 "List of functions applied to a transcoded export-snippet.
1892 Each filter is called with three arguments: the transcoded
1893 export-snippet, as a string, the back-end, as a symbol, and the
1894 communication channel, as a plist. It must return a string or
1895 nil.")
1897 (defvar org-export-filter-footnote-reference-functions nil
1898 "List of functions applied to a transcoded footnote-reference.
1899 Each filter is called with three arguments: the transcoded
1900 footnote-reference, as a string, the back-end, as a symbol, and
1901 the communication channel, as a plist. It must return a string
1902 or nil.")
1904 (defvar org-export-filter-inline-babel-call-functions nil
1905 "List of functions applied to a transcoded inline-babel-call.
1906 Each filter is called with three arguments: the transcoded
1907 inline-babel-call, as a string, the back-end, as a symbol, and
1908 the communication channel, as a plist. It must return a string
1909 or nil.")
1911 (defvar org-export-filter-inline-src-block-functions nil
1912 "List of functions applied to a transcoded inline-src-block.
1913 Each filter is called with three arguments: the transcoded
1914 inline-src-block, as a string, the back-end, as a symbol, and the
1915 communication channel, as a plist. It must return a string or
1916 nil.")
1918 (defvar org-export-filter-latex-fragment-functions nil
1919 "List of functions applied to a transcoded latex-fragment.
1920 Each filter is called with three arguments: the transcoded
1921 latex-fragment, as a string, the back-end, as a symbol, and the
1922 communication channel, as a plist. It must return a string or
1923 nil.")
1925 (defvar org-export-filter-line-break-functions nil
1926 "List of functions applied to a transcoded line-break.
1927 Each filter is called with three arguments: the transcoded
1928 line-break, as a string, the back-end, as a symbol, and the
1929 communication channel, as a plist. It must return a string or
1930 nil.")
1932 (defvar org-export-filter-link-functions nil
1933 "List of functions applied to a transcoded link.
1934 Each filter is called with three arguments: the transcoded link,
1935 as a string, the back-end, as a symbol, and the communication
1936 channel, as a plist. It must return a string or nil.")
1938 (defvar org-export-filter-macro-functions nil
1939 "List of functions applied to a transcoded macro.
1940 Each filter is called with three arguments: the transcoded macro,
1941 as a string, the back-end, as a symbol, and the communication
1942 channel, as a plist. It must return a string or nil.")
1944 (defvar org-export-filter-radio-target-functions nil
1945 "List of functions applied to a transcoded radio-target.
1946 Each filter is called with three arguments: the transcoded
1947 radio-target, as a string, the back-end, as a symbol, and the
1948 communication channel, as a plist. It must return a string or
1949 nil.")
1951 (defvar org-export-filter-statistics-cookie-functions nil
1952 "List of functions applied to a transcoded statistics-cookie.
1953 Each filter is called with three arguments: the transcoded
1954 statistics-cookie, as a string, the back-end, as a symbol, and
1955 the communication channel, as a plist. It must return a string
1956 or nil.")
1958 (defvar org-export-filter-subscript-functions nil
1959 "List of functions applied to a transcoded subscript.
1960 Each filter is called with three arguments: the transcoded
1961 subscript, as a string, the back-end, as a symbol, and the
1962 communication channel, as a plist. It must return a string or
1963 nil.")
1965 (defvar org-export-filter-superscript-functions nil
1966 "List of functions applied to a transcoded superscript.
1967 Each filter is called with three arguments: the transcoded
1968 superscript, as a string, the back-end, as a symbol, and the
1969 communication channel, as a plist. It must return a string or
1970 nil.")
1972 (defvar org-export-filter-target-functions nil
1973 "List of functions applied to a transcoded target.
1974 Each filter is called with three arguments: the transcoded
1975 target, as a string, the back-end, as a symbol, and the
1976 communication channel, as a plist. It must return a string or
1977 nil.")
1979 (defvar org-export-filter-time-stamp-functions nil
1980 "List of functions applied to a transcoded time-stamp.
1981 Each filter is called with three arguments: the transcoded
1982 time-stamp, as a string, the back-end, as a symbol, and the
1983 communication channel, as a plist. It must return a string or
1984 nil.")
1986 (defvar org-export-filter-verbatim-functions nil
1987 "List of functions applied to a transcoded verbatim.
1988 Each filter is called with three arguments: the transcoded
1989 verbatim, as a string, the back-end, as a symbol, and the
1990 communication channel, as a plist. It must return a string or
1991 nil.")
1993 (defun org-export-filter-apply-functions (filters value backend info)
1994 "Call every function in FILTERS with arguments VALUE, BACKEND and INFO.
1995 Functions are called in a LIFO fashion, to be sure that developer
1996 specified filters, if any, are called first."
1997 (loop for filter in filters
1998 if (not value) return nil else
1999 do (setq value (funcall filter value backend info)))
2000 value)
2002 (defun org-export-install-filters (backend info)
2003 "Install filters properties in communication channel.
2005 BACKEND is a symbol specifying which back-end specific filters to
2006 install, if any. INFO is a plist containing the current
2007 communication channel.
2009 Return the updated communication channel."
2010 (let (plist)
2011 ;; Install user defined filters with `org-export-filters-alist'.
2012 (mapc (lambda (p)
2013 (setq plist (plist-put plist (car p) (eval (cdr p)))))
2014 org-export-filters-alist)
2015 ;; Prepend back-end specific filters to that list.
2016 (let ((back-end-filters (intern (format "org-%s-filters-alist" backend))))
2017 (when (boundp back-end-filters)
2018 (mapc (lambda (p)
2019 ;; Single values get consed, lists are prepended.
2020 (let ((key (car p)) (value (cdr p)))
2021 (when value
2022 (setq plist
2023 (plist-put
2024 plist key
2025 (if (atom value) (cons value (plist-get plist key))
2026 (append value (plist-get plist key))))))))
2027 (eval back-end-filters))))
2028 ;; Return new communication channel.
2029 (org-combine-plists info plist)))
2033 ;;; Core functions
2035 ;; This is the room for the main function, `org-export-as', along with
2036 ;; its derivatives, `org-export-to-buffer' and `org-export-to-file'.
2037 ;; They differ only by the way they output the resulting code.
2039 ;; `org-export-output-file-name' is an auxiliary function meant to be
2040 ;; used with `org-export-to-file'. With a given extension, it tries
2041 ;; to provide a canonical file name to write export output to.
2043 ;; Note that `org-export-as' doesn't really parse the current buffer,
2044 ;; but a copy of it (with the same buffer-local variables and
2045 ;; visibility), where include keywords are expanded and Babel blocks
2046 ;; are executed, if appropriate.
2047 ;; `org-export-with-current-buffer-copy' macro prepares that copy.
2049 ;; File inclusion is taken care of by
2050 ;; `org-export-expand-include-keyword' and
2051 ;; `org-export-prepare-file-contents'. Structure wise, including
2052 ;; a whole Org file in a buffer often makes little sense. For
2053 ;; example, if the file contains an headline and the include keyword
2054 ;; was within an item, the item should contain the headline. That's
2055 ;; why file inclusion should be done before any structure can be
2056 ;; associated to the file, that is before parsing.
2058 (defun org-export-as
2059 (backend &optional subtreep visible-only body-only ext-plist noexpand)
2060 "Transcode current Org buffer into BACKEND code.
2062 If narrowing is active in the current buffer, only transcode its
2063 narrowed part.
2065 If a region is active, transcode that region.
2067 When optional argument SUBTREEP is non-nil, transcode the
2068 sub-tree at point, extracting information from the headline
2069 properties first.
2071 When optional argument VISIBLE-ONLY is non-nil, don't export
2072 contents of hidden elements.
2074 When optional argument BODY-ONLY is non-nil, only return body
2075 code, without preamble nor postamble.
2077 Optional argument EXT-PLIST, when provided, is a property list
2078 with external parameters overriding Org default settings, but
2079 still inferior to file-local settings.
2081 Optional argument NOEXPAND, when non-nil, prevents included files
2082 to be expanded and Babel code to be executed.
2084 Return code as a string."
2085 (save-excursion
2086 (save-restriction
2087 ;; Narrow buffer to an appropriate region for parsing.
2088 (cond ((org-region-active-p)
2089 (narrow-to-region (region-beginning) (region-end)))
2090 (subtreep (org-narrow-to-subtree)))
2091 ;; Retrieve export options (INFO) and parsed tree (RAW-DATA),
2092 ;; Then options can be completed with tree properties. Note:
2093 ;; Buffer isn't parsed directly. Instead, a temporary copy is
2094 ;; created, where include keywords are expanded and code blocks
2095 ;; are evaluated. RAW-DATA is the parsed tree of the buffer
2096 ;; resulting from that process. Eventually call
2097 ;; `org-export-filter-parse-tree-functions'.
2098 (goto-char (point-min))
2099 (let ((info (org-export-get-environment backend subtreep ext-plist)))
2100 ;; Remove subtree's headline from contents if subtree mode is
2101 ;; activated.
2102 (when subtreep (forward-line) (narrow-to-region (point) (point-max)))
2103 ;; Install filters in communication channel.
2104 (setq info (org-export-install-filters backend info))
2105 (let ((raw-data
2106 (org-export-filter-apply-functions
2107 (plist-get info :filter-parse-tree)
2108 ;; If NOEXPAND is non-nil, simply parse current
2109 ;; visible part of buffer.
2110 (if noexpand (org-element-parse-buffer nil visible-only)
2111 (org-export-with-current-buffer-copy
2112 (org-export-expand-include-keyword nil)
2113 (let ((org-current-export-file (current-buffer)))
2114 (org-export-blocks-preprocess))
2115 (org-element-parse-buffer nil visible-only)))
2116 backend info)))
2117 ;; Complete communication channel with tree properties.
2118 (setq info
2119 (org-combine-plists
2120 info
2121 (org-export-collect-tree-properties raw-data info backend)))
2122 ;; Transcode RAW-DATA. Also call
2123 ;; `org-export-filter-final-output-functions'.
2124 (let* ((body (org-element-normalize-string
2125 (org-export-data raw-data backend info)))
2126 (template (intern (format "org-%s-template" backend)))
2127 (output (org-export-filter-apply-functions
2128 (plist-get info :filter-final-output)
2129 (if (or (not (fboundp template)) body-only) body
2130 (funcall template body info))
2131 backend info)))
2132 ;; Maybe add final OUTPUT to kill ring before returning it.
2133 (when org-export-copy-to-kill-ring (org-kill-new output))
2134 output))))))
2136 (defun org-export-to-buffer
2137 (backend buffer &optional subtreep visible-only body-only ext-plist noexpand)
2138 "Call `org-export-as' with output to a specified buffer.
2140 BACKEND is the back-end used for transcoding, as a symbol.
2142 BUFFER is the output buffer. If it already exists, it will be
2143 erased first, otherwise, it will be created.
2145 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY, EXT-PLIST
2146 and NOEXPAND are similar to those used in `org-export-as', which
2147 see.
2149 Return buffer."
2150 (let ((out (org-export-as
2151 backend subtreep visible-only body-only ext-plist noexpand))
2152 (buffer (get-buffer-create buffer)))
2153 (with-current-buffer buffer
2154 (erase-buffer)
2155 (insert out)
2156 (goto-char (point-min)))
2157 buffer))
2159 (defun org-export-to-file
2160 (backend file &optional subtreep visible-only body-only ext-plist noexpand)
2161 "Call `org-export-as' with output to a specified file.
2163 BACKEND is the back-end used for transcoding, as a symbol. FILE
2164 is the name of the output file, as a string.
2166 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY, EXT-PLIST
2167 and NOEXPAND are similar to those used in `org-export-as', which
2168 see.
2170 Return output file's name."
2171 ;; Checks for FILE permissions. `write-file' would do the same, but
2172 ;; we'd rather avoid needless transcoding of parse tree.
2173 (unless (file-writable-p file) (error "Output file not writable"))
2174 ;; Insert contents to a temporary buffer and write it to FILE.
2175 (let ((out (org-export-as
2176 backend subtreep visible-only body-only ext-plist noexpand)))
2177 (with-temp-buffer
2178 (insert out)
2179 (let ((coding-system-for-write org-export-coding-system))
2180 (write-file file))))
2181 ;; Return full path.
2182 file)
2184 (defun org-export-output-file-name (extension &optional subtreep pub-dir)
2185 "Return output file's name according to buffer specifications.
2187 EXTENSION is a string representing the output file extension,
2188 with the leading dot.
2190 With a non-nil optional argument SUBTREEP, try to determine
2191 output file's name by looking for \"EXPORT_FILE_NAME\" property
2192 of subtree at point.
2194 When optional argument PUB-DIR is set, use it as the publishing
2195 directory.
2197 Return file name as a string, or nil if it couldn't be
2198 determined."
2199 (let ((base-name
2200 ;; File name may come from EXPORT_FILE_NAME subtree property,
2201 ;; assuming point is at beginning of said sub-tree.
2202 (file-name-sans-extension
2203 (or (and subtreep
2204 (org-entry-get
2205 (save-excursion
2206 (ignore-errors
2207 (org-back-to-heading (not visible-only)) (point)))
2208 "EXPORT_FILE_NAME" t))
2209 ;; File name may be extracted from buffer's associated
2210 ;; file, if any.
2211 (buffer-file-name (buffer-base-buffer))
2212 ;; Can't determine file name on our own: Ask user.
2213 (let ((read-file-name-function
2214 (and org-completion-use-ido 'ido-read-file-name)))
2215 (read-file-name
2216 "Output file: " pub-dir nil nil nil
2217 (lambda (name)
2218 (string= (file-name-extension name t) extension))))))))
2219 ;; Build file name. Enforce EXTENSION over whatever user may have
2220 ;; come up with. PUB-DIR, if defined, always has precedence over
2221 ;; any provided path.
2222 (cond
2223 (pub-dir
2224 (concat (file-name-as-directory pub-dir)
2225 (file-name-nondirectory base-name)
2226 extension))
2227 ((string= (file-name-nondirectory base-name) base-name)
2228 (concat (file-name-as-directory ".") base-name extension))
2229 (t (concat base-name extension)))))
2231 (defmacro org-export-with-current-buffer-copy (&rest body)
2232 "Apply BODY in a copy of the current buffer.
2234 The copy preserves local variables and visibility of the original
2235 buffer.
2237 Point is at buffer's beginning when BODY is applied."
2238 (org-with-gensyms (original-buffer offset buffer-string overlays)
2239 `(let ((,original-buffer ,(current-buffer))
2240 (,offset ,(1- (point-min)))
2241 (,buffer-string ,(buffer-string))
2242 (,overlays (mapcar
2243 'copy-overlay (overlays-in (point-min) (point-max)))))
2244 (with-temp-buffer
2245 (let ((buffer-invisibility-spec nil))
2246 (org-clone-local-variables
2247 ,original-buffer
2248 "^\\(org-\\|orgtbl-\\|major-mode$\\|outline-\\(regexp\\|level\\)$\\)")
2249 (insert ,buffer-string)
2250 (mapc (lambda (ov)
2251 (move-overlay
2253 (- (overlay-start ov) ,offset)
2254 (- (overlay-end ov) ,offset)
2255 (current-buffer)))
2256 ,overlays)
2257 (goto-char (point-min))
2258 (progn ,@body))))))
2259 (def-edebug-spec org-export-with-current-buffer-copy (body))
2261 (defun org-export-expand-include-keyword (included)
2262 "Expand every include keyword in buffer.
2263 INCLUDED is a list of included file names along with their line
2264 restriction, when appropriate. It is used to avoid infinite
2265 recursion."
2266 (let ((case-fold-search nil))
2267 (goto-char (point-min))
2268 (while (re-search-forward "^[ \t]*#\\+include: \\(.*\\)" nil t)
2269 (when (eq (org-element-type (save-match-data (org-element-at-point)))
2270 'keyword)
2271 (beginning-of-line)
2272 ;; Extract arguments from keyword's value.
2273 (let* ((value (match-string 1))
2274 (ind (org-get-indentation))
2275 (file (and (string-match "^\"\\(\\S-+\\)\"" value)
2276 (prog1 (expand-file-name (match-string 1 value))
2277 (setq value (replace-match "" nil nil value)))))
2278 (lines
2279 (and (string-match
2280 ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\"" value)
2281 (prog1 (match-string 1 value)
2282 (setq value (replace-match "" nil nil value)))))
2283 (env (cond ((string-match "\\<example\\>" value) 'example)
2284 ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
2285 (match-string 1 value))))
2286 ;; Minimal level of included file defaults to the child
2287 ;; level of the current headline, if any, or one. It
2288 ;; only applies is the file is meant to be included as
2289 ;; an Org one.
2290 (minlevel
2291 (and (not env)
2292 (if (string-match ":minlevel +\\([0-9]+\\)" value)
2293 (prog1 (string-to-number (match-string 1 value))
2294 (setq value (replace-match "" nil nil value)))
2295 (let ((cur (org-current-level)))
2296 (if cur (1+ (org-reduced-level cur)) 1))))))
2297 ;; Remove keyword.
2298 (delete-region (point) (progn (forward-line) (point)))
2299 (cond
2300 ((not (file-readable-p file)) (error "Cannot include file %s" file))
2301 ;; Check if files has already been parsed. Look after
2302 ;; inclusion lines too, as different parts of the same file
2303 ;; can be included too.
2304 ((member (list file lines) included)
2305 (error "Recursive file inclusion: %s" file))
2307 (cond
2308 ((eq env 'example)
2309 (insert
2310 (let ((ind-str (make-string ind ? ))
2311 (contents
2312 ;; Protect sensitive contents with commas.
2313 (replace-regexp-in-string
2314 "\\(^\\)\\([*]\\|[ \t]*#\\+\\)" ","
2315 (org-export-prepare-file-contents file lines)
2316 nil nil 1)))
2317 (format "%s#+begin_example\n%s%s#+end_example\n"
2318 ind-str contents ind-str))))
2319 ((stringp env)
2320 (insert
2321 (let ((ind-str (make-string ind ? ))
2322 (contents
2323 ;; Protect sensitive contents with commas.
2324 (replace-regexp-in-string
2325 (if (string= env "org") "\\(^\\)\\(.\\)"
2326 "\\(^\\)\\([*]\\|[ \t]*#\\+\\)") ","
2327 (org-export-prepare-file-contents file lines)
2328 nil nil 1)))
2329 (format "%s#+begin_src %s\n%s%s#+end_src\n"
2330 ind-str env contents ind-str))))
2332 (insert
2333 (with-temp-buffer
2334 (org-mode)
2335 (insert
2336 (org-export-prepare-file-contents file lines ind minlevel))
2337 (org-export-expand-include-keyword
2338 (cons (list file lines) included))
2339 (buffer-string))))))))))))
2341 (defun org-export-prepare-file-contents (file &optional lines ind minlevel)
2342 "Prepare the contents of FILE for inclusion and return them as a string.
2344 When optional argument LINES is a string specifying a range of
2345 lines, include only those lines.
2347 Optional argument IND, when non-nil, is an integer specifying the
2348 global indentation of returned contents. Since its purpose is to
2349 allow an included file to stay in the same environment it was
2350 created \(i.e. a list item), it doesn't apply past the first
2351 headline encountered.
2353 Optional argument MINLEVEL, when non-nil, is an integer
2354 specifying the level that any top-level headline in the included
2355 file should have."
2356 (with-temp-buffer
2357 (insert-file-contents file)
2358 (when lines
2359 (let* ((lines (split-string lines "-"))
2360 (lbeg (string-to-number (car lines)))
2361 (lend (string-to-number (cadr lines)))
2362 (beg (if (zerop lbeg) (point-min)
2363 (goto-char (point-min))
2364 (forward-line (1- lbeg))
2365 (point)))
2366 (end (if (zerop lend) (point-max)
2367 (goto-char (point-min))
2368 (forward-line (1- lend))
2369 (point))))
2370 (narrow-to-region beg end)))
2371 ;; Remove blank lines at beginning and end of contents. The logic
2372 ;; behind that removal is that blank lines around include keyword
2373 ;; override blank lines in included file.
2374 (goto-char (point-min))
2375 (org-skip-whitespace)
2376 (beginning-of-line)
2377 (delete-region (point-min) (point))
2378 (goto-char (point-max))
2379 (skip-chars-backward " \r\t\n")
2380 (forward-line)
2381 (delete-region (point) (point-max))
2382 ;; If IND is set, preserve indentation of include keyword until
2383 ;; the first headline encountered.
2384 (when ind
2385 (unless (eq major-mode 'org-mode) (org-mode))
2386 (goto-char (point-min))
2387 (let ((ind-str (make-string ind ? )))
2388 (while (not (or (eobp) (looking-at org-outline-regexp-bol)))
2389 ;; Do not move footnote definitions out of column 0.
2390 (unless (and (looking-at org-footnote-definition-re)
2391 (eq (org-element-type (org-element-at-point))
2392 'footnote-definition))
2393 (insert ind-str))
2394 (forward-line))))
2395 ;; When MINLEVEL is specified, compute minimal level for headlines
2396 ;; in the file (CUR-MIN), and remove stars to each headline so
2397 ;; that headlines with minimal level have a level of MINLEVEL.
2398 (when minlevel
2399 (unless (eq major-mode 'org-mode) (org-mode))
2400 (let ((levels (org-map-entries
2401 (lambda () (org-reduced-level (org-current-level))))))
2402 (when levels
2403 (let ((offset (- minlevel (apply 'min levels))))
2404 (unless (zerop offset)
2405 (when org-odd-levels-only (setq offset (* offset 2)))
2406 ;; Only change stars, don't bother moving whole
2407 ;; sections.
2408 (org-map-entries
2409 (lambda () (if (< offset 0) (delete-char (abs offset))
2410 (insert (make-string offset ?*))))))))))
2411 (buffer-string)))
2414 ;;; Tools For Back-Ends
2416 ;; A whole set of tools is available to help build new exporters. Any
2417 ;; function general enough to have its use across many back-ends
2418 ;; should be added here.
2420 ;; As of now, functions operating on footnotes, headlines, links,
2421 ;; macros, references, src-blocks, tables and tables of contents are
2422 ;; implemented.
2424 ;;;; For Footnotes
2426 ;; `org-export-collect-footnote-definitions' is a tool to list
2427 ;; actually used footnotes definitions in the whole parse tree, or in
2428 ;; an headline, in order to add footnote listings throughout the
2429 ;; transcoded data.
2431 ;; `org-export-footnote-first-reference-p' is a predicate used by some
2432 ;; back-ends, when they need to attach the footnote definition only to
2433 ;; the first occurrence of the corresponding label.
2435 ;; `org-export-get-footnote-definition' and
2436 ;; `org-export-get-footnote-number' provide easier access to
2437 ;; additional information relative to a footnote reference.
2439 (defun org-export-collect-footnote-definitions (data info)
2440 "Return an alist between footnote numbers, labels and definitions.
2442 DATA is the parse tree from which definitions are collected.
2443 INFO is the plist used as a communication channel.
2445 Definitions are sorted by order of references. They either
2446 appear as Org data \(transcoded with `org-export-data'\) or as
2447 a secondary string for inlined footnotes \(transcoded with
2448 `org-export-secondary-string'\). Unreferenced definitions are
2449 ignored."
2450 (let (refs)
2451 ;; Collect seen references in REFS.
2452 (org-element-map
2453 data 'footnote-reference
2454 (lambda (footnote local)
2455 (when (org-export-footnote-first-reference-p footnote local)
2456 (list (org-export-get-footnote-number footnote local)
2457 (org-element-property :label footnote)
2458 (org-export-get-footnote-definition footnote local))))
2459 info)))
2461 (defun org-export-footnote-first-reference-p (footnote-reference info)
2462 "Non-nil when a footnote reference is the first one for its label.
2464 FOOTNOTE-REFERENCE is the footnote reference being considered.
2465 INFO is the plist used as a communication channel."
2466 (let ((label (org-element-property :label footnote-reference)))
2467 (or (not label)
2468 (equal
2469 footnote-reference
2470 (org-element-map
2471 (plist-get info :parse-tree) 'footnote-reference
2472 (lambda (footnote local)
2473 (when (string= (org-element-property :label footnote) label)
2474 footnote))
2475 info 'first-match)))))
2477 (defun org-export-get-footnote-definition (footnote-reference info)
2478 "Return definition of FOOTNOTE-REFERENCE as parsed data.
2479 INFO is the plist used as a communication channel."
2480 (let ((label (org-element-property :label footnote-reference)))
2481 (or (org-element-property :inline-definition footnote-reference)
2482 (cdr (assoc label (plist-get info :footnote-definition-alist))))))
2484 (defun org-export-get-footnote-number (footnote info)
2485 "Return number associated to a footnote.
2487 FOOTNOTE is either a footnote reference or a footnote definition.
2488 INFO is the plist used as a communication channel."
2489 (let ((label (org-element-property :label footnote)) seen-refs)
2490 (org-element-map
2491 (plist-get info :parse-tree) 'footnote-reference
2492 (lambda (fn local)
2493 (let ((fn-lbl (org-element-property :label fn)))
2494 (cond
2495 ((and (not fn-lbl) (equal fn footnote)) (1+ (length seen-refs)))
2496 ((and label (string= label fn-lbl)) (1+ (length seen-refs)))
2497 ;; Anonymous footnote: it's always a new one. Also, be sure
2498 ;; to return nil from the `cond' so `first-match' doesn't
2499 ;; get us out of the loop.
2500 ((not fn-lbl) (push 'inline seen-refs) nil)
2501 ;; Label not seen so far: add it so SEEN-REFS. Again,
2502 ;; return nil to stay in the loop.
2503 ((not (member fn-lbl seen-refs)) (push fn-lbl seen-refs) nil))))
2504 info 'first-match)))
2507 ;;;; For Headlines
2509 ;; `org-export-get-relative-level' is a shortcut to get headline
2510 ;; level, relatively to the lower headline level in the parsed tree.
2512 ;; `org-export-get-headline-number' returns the section number of an
2513 ;; headline, while `org-export-number-to-roman' allows to convert it
2514 ;; to roman numbers.
2516 ;; `org-export-low-level-p', `org-export-first-sibling-p' and
2517 ;; `org-export-last-sibling-p' are three useful predicates when it
2518 ;; comes to fulfill the `:headline-levels' property.
2520 (defun org-export-get-relative-level (headline info)
2521 "Return HEADLINE relative level within current parsed tree.
2522 INFO is a plist holding contextual information."
2523 (+ (org-element-property :level headline)
2524 (or (plist-get info :headline-offset) 0)))
2526 (defun org-export-low-level-p (headline info)
2527 "Non-nil when HEADLINE is considered as low level.
2529 INFO is a plist used as a communication channel.
2531 A low level headlines has a relative level greater than
2532 `:headline-levels' property value.
2534 Return value is the difference between HEADLINE relative level
2535 and the last level being considered as high enough, or nil."
2536 (let ((limit (plist-get info :headline-levels)))
2537 (when (wholenump limit)
2538 (let ((level (org-export-get-relative-level headline info)))
2539 (and (> level limit) (- level limit))))))
2541 (defun org-export-get-headline-number (headline info)
2542 "Return HEADLINE numbering as a list of numbers.
2543 INFO is a plist holding contextual information."
2544 (cdr (assoc headline (plist-get info :headline-numbering))))
2546 (defun org-export-number-to-roman (n)
2547 "Convert integer N into a roman numeral."
2548 (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
2549 ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
2550 ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
2551 ( 1 . "I")))
2552 (res ""))
2553 (if (<= n 0)
2554 (number-to-string n)
2555 (while roman
2556 (if (>= n (caar roman))
2557 (setq n (- n (caar roman))
2558 res (concat res (cdar roman)))
2559 (pop roman)))
2560 res)))
2562 (defun org-export-first-sibling-p (headline info)
2563 "Non-nil when HEADLINE is the first sibling in its sub-tree.
2564 INFO is the plist used as a communication channel."
2565 (not (eq (org-element-type (org-export-get-previous-element headline info))
2566 'headline)))
2568 (defun org-export-last-sibling-p (headline info)
2569 "Non-nil when HEADLINE is the last sibling in its sub-tree.
2570 INFO is the plist used as a communication channel."
2571 (not (org-export-get-next-element headline info)))
2574 ;;;; For Links
2576 ;; `org-export-solidify-link-text' turns a string into a safer version
2577 ;; for links, replacing most non-standard characters with hyphens.
2579 ;; `org-export-get-coderef-format' returns an appropriate format
2580 ;; string for coderefs.
2582 ;; `org-export-inline-image-p' returns a non-nil value when the link
2583 ;; provided should be considered as an inline image.
2585 ;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
2586 ;; (i.e. links with "fuzzy" as type) within the parsed tree, and
2587 ;; returns an appropriate unique identifier when found, or nil.
2589 ;; `org-export-resolve-id-link' returns the first headline with
2590 ;; specified id or custom-id in parse tree, or nil when none was
2591 ;; found.
2593 ;; `org-export-resolve-coderef' associates a reference to a line
2594 ;; number in the element it belongs, or returns the reference itself
2595 ;; when the element isn't numbered.
2597 (defun org-export-solidify-link-text (s)
2598 "Take link text S and make a safe target out of it."
2599 (save-match-data
2600 (mapconcat 'identity (org-split-string s "[^a-zA-Z0-9_.-]+") "-")))
2602 (defun org-export-get-coderef-format (path desc)
2603 "Return format string for code reference link.
2604 PATH is the link path. DESC is its description."
2605 (save-match-data
2606 (cond ((string-match (regexp-quote (concat "(" path ")")) desc)
2607 (replace-match "%s" t t desc))
2608 ((string= desc "") "%s")
2609 (t desc))))
2611 (defun org-export-inline-image-p (link &optional rules)
2612 "Non-nil if LINK object points to an inline image.
2614 Optional argument is a set of RULES defining inline images. It
2615 is an alist where associations have the following shape:
2617 \(TYPE . REGEXP)
2619 Applying a rule means apply REGEXP against LINK's path when its
2620 type is TYPE. The function will return a non-nil value if any of
2621 the provided rules is non-nil. The default rule is
2622 `org-export-default-inline-image-rule'.
2624 This only applies to links without a description."
2625 (and (not (org-element-contents link))
2626 (let ((case-fold-search t)
2627 (rules (or rules org-export-default-inline-image-rule)))
2628 (some
2629 (lambda (rule)
2630 (and (string= (org-element-property :type link) (car rule))
2631 (string-match (cdr rule)
2632 (org-element-property :path link))))
2633 rules))))
2635 (defun org-export-resolve-fuzzy-link (link info)
2636 "Return LINK destination.
2638 INFO is a plist holding contextual information.
2640 Return value can be an object, an element, or nil:
2642 - If LINK path exactly matches any target, return the target
2643 object.
2645 - If LINK path exactly matches any headline name, return that
2646 element. If more than one headline share that name, priority
2647 will be given to the one with the closest common ancestor, if
2648 any, or the first one in the parse tree otherwise.
2650 - Otherwise, return nil.
2652 Assume LINK type is \"fuzzy\"."
2653 (let ((path (org-element-property :path link)))
2654 ;; Link points to a target: return it.
2655 (or (loop for target in (plist-get info :target-list)
2656 when (string= (org-element-property :raw-value target) path)
2657 return target)
2658 ;; Link either points to an headline or nothing. Try to find
2659 ;; the source, with priority given to headlines with the closest
2660 ;; common ancestor. If such candidate is found, return its
2661 ;; beginning position as an unique identifier, otherwise return
2662 ;; nil.
2663 (let ((find-headline
2664 (function
2665 ;; Return first headline whose `:raw-value' property
2666 ;; is NAME in parse tree DATA, or nil.
2667 (lambda (name data)
2668 (org-element-map
2669 data 'headline
2670 (lambda (headline local)
2671 (when (string=
2672 (org-element-property :raw-value headline)
2673 name)
2674 headline))
2675 info 'first-match)))))
2676 ;; Search among headlines sharing an ancestor with link,
2677 ;; from closest to farthest.
2678 (or (catch 'exit
2679 (mapc
2680 (lambda (parent)
2681 (when (eq (org-element-type parent) 'headline)
2682 (let ((foundp (funcall find-headline path parent)))
2683 (when foundp (throw 'exit foundp)))))
2684 (org-export-get-genealogy link info)) nil)
2685 ;; No match with a common ancestor: try the full parse-tree.
2686 (funcall find-headline path (plist-get info :parse-tree)))))))
2688 (defun org-export-resolve-id-link (link info)
2689 "Return headline referenced as LINK destination.
2691 INFO is a plist used as a communication channel.
2693 Return value can be an headline element or nil. Assume LINK type
2694 is either \"id\" or \"custom-id\"."
2695 (let ((id (org-element-property :path link)))
2696 (org-element-map
2697 (plist-get info :parse-tree) 'headline
2698 (lambda (headline local)
2699 (when (or (string= (org-element-property :id headline) id)
2700 (string= (org-element-property :custom-id headline) id))
2701 headline))
2702 info 'first-match)))
2704 (defun org-export-resolve-ref-link (link info)
2705 "Return element referenced as LINK destination.
2707 INFO is a plist used as a communication channel.
2709 Assume LINK type is \"ref\" and. Return value is the first
2710 element whose `:name' property matches LINK's `:path', or nil."
2711 (let ((name (org-element-property :path link)))
2712 (org-element-map
2713 (plist-get info :parse-tree) org-element-all-elements
2714 (lambda (el local)
2715 (when (string= (org-element-property :name el) name) el))
2716 info 'first-match)))
2718 (defun org-export-resolve-coderef (ref info)
2719 "Resolve a code reference REF.
2721 INFO is a plist used as a communication channel.
2723 Return associated line number in source code, or REF itself,
2724 depending on src-block or example element's switches."
2725 (org-element-map
2726 (plist-get info :parse-tree) '(src-block example)
2727 (lambda (el local)
2728 (let ((switches (or (org-element-property :switches el) "")))
2729 (with-temp-buffer
2730 (insert (org-trim (org-element-property :value el)))
2731 ;; Build reference regexp.
2732 (let* ((label
2733 (or (and (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
2734 (match-string 1 switches))
2735 org-coderef-label-format))
2736 (ref-re
2737 (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
2738 (replace-regexp-in-string "%s" ref label nil t))))
2739 ;; Element containing REF is found. Only associate REF to
2740 ;; a line number if element has "+n" or "-n" and "-k" or
2741 ;; "-r" as switches. When it has "+n", count accumulated
2742 ;; locs before, too.
2743 (when (re-search-backward ref-re nil t)
2744 (cond
2745 ((not (string-match "-[kr]\\>" switches)) ref)
2746 ((string-match "-n\\>" switches) (line-number-at-pos))
2747 ((string-match "\\+n\\>" switches)
2748 (+ (org-export-get-loc el local) (line-number-at-pos)))
2749 (t ref)))))))
2750 info 'first-match))
2753 ;;;; For Macros
2755 ;; `org-export-expand-macro' simply takes care of expanding macros.
2757 (defun org-export-expand-macro (macro info)
2758 "Expand MACRO and return it as a string.
2759 INFO is a plist holding export options."
2760 (let* ((key (org-element-property :key macro))
2761 (args (org-element-property :args macro))
2762 ;; User's macros are stored in the communication channel with
2763 ;; a ":macro-" prefix. If it's a string leave it as-is.
2764 ;; Otherwise, it's a secondary string that needs to be
2765 ;; expanded recursively.
2766 (value
2767 (let ((val (plist-get info (intern (format ":macro-%s" key)))))
2768 (if (stringp val) val
2769 (org-export-secondary-string
2770 val (plist-get info :back-end) info)))))
2771 ;; Replace arguments in VALUE.
2772 (let ((s 0) n)
2773 (while (string-match "\\$\\([0-9]+\\)" value s)
2774 (setq s (1+ (match-beginning 0))
2775 n (string-to-number (match-string 1 value)))
2776 (and (>= (length args) n)
2777 (setq value (replace-match (nth (1- n) args) t t value)))))
2778 ;; VALUE starts with "(eval": it is a s-exp, `eval' it.
2779 (when (string-match "\\`(eval\\>" value)
2780 (setq value (eval (read value))))
2781 ;; Return string.
2782 (format "%s" (or value ""))))
2785 ;;;; For References
2787 ;; `org-export-get-ordinal' associates a sequence number to any object
2788 ;; or element.
2790 (defun org-export-get-ordinal
2791 (element info &optional types within-section predicate)
2792 "Return ordinal number of an element or object.
2794 ELEMENT is the element or object considered. INFO is the plist
2795 used as a communication channel.
2797 Optional argument TYPES, when non-nil, is a list of element or
2798 object types, as symbols, that should also be counted in.
2799 Otherwise, only provided element's type is considered.
2801 When optional argument WITHIN-SECTION is non-nil, narrow counting
2802 to the section containing ELEMENT.
2804 Optional argument PREDICATE is a function returning a non-nil
2805 value if the current element or object should be counted in. It
2806 accepts one argument: the element or object being considered.
2807 This argument allows to count only a certain type of objects,
2808 like inline images, which are a subset of links \(in that case,
2809 `org-export-inline-image-p' might be an useful predicate\)."
2810 (let ((counter 0)
2811 ;; Determine if search should apply to current section, in
2812 ;; which case it should be retrieved first, or to full parse
2813 ;; tree. As a special case, an element or object without
2814 ;; a parent headline will also trigger a full search,
2815 ;; notwithstanding WITHIN-SECTION value.
2816 (data
2817 (if (not within-section) (plist-get info :parse-tree)
2818 (or (org-export-get-parent-headline element info)
2819 (plist-get info :parse-tree)))))
2820 ;; Increment counter until ELEMENT is found again.
2821 (org-element-map
2822 data (or types (org-element-type element))
2823 (lambda (el local)
2824 (cond
2825 ((equal element el) (1+ counter))
2826 ((not predicate) (incf counter) nil)
2827 ((funcall predicate el) (incf counter) nil)))
2828 info 'first-match)))
2831 ;;;; For Src-Blocks
2833 ;; `org-export-get-loc' counts number of code lines accumulated in
2834 ;; src-block or example-block elements with a "+n" switch until
2835 ;; a given element, excluded. Note: "-n" switches reset that count.
2837 ;; `org-export-handle-code' takes care of line numbering and reference
2838 ;; cleaning in source code, when appropriate.
2840 (defun org-export-get-loc (element info)
2841 "Return accumulated lines of code up to ELEMENT.
2843 INFO is the plist used as a communication channel.
2845 ELEMENT is excluded from count."
2846 (let ((loc 0))
2847 (org-element-map
2848 (plist-get info :parse-tree)
2849 `(src-block example-block ,(org-element-type element))
2850 (lambda (el local)
2851 (cond
2852 ;; ELEMENT is reached: Quit the loop.
2853 ((equal el element) t)
2854 ;; Only count lines from src-block and example-block elements
2855 ;; with a "+n" or "-n" switch. A "-n" switch resets counter.
2856 ((not (memq (org-element-type el) '(src-block example-block))) nil)
2857 ((let ((switches (org-element-property :switches el)))
2858 (when (and switches (string-match "\\([-+]\\)n\\>" switches))
2859 ;; Accumulate locs or reset them.
2860 (let ((accumulatep (string= (match-string 1 switches) "-"))
2861 (lines (org-count-lines
2862 (org-trim (org-element-property :value el)))))
2863 (setq loc (if accumulatep lines (+ loc lines))))))
2864 ;; Return nil to stay in the loop.
2865 nil)))
2866 info 'first-match)
2867 ;; Return value.
2868 loc))
2870 (defun org-export-handle-code (element info &optional num-fmt ref-fmt delayed)
2871 "Handle line numbers and code references in ELEMENT.
2873 ELEMENT has either a `src-block' an `example-block' type. INFO
2874 is a plist used as a communication channel.
2876 If optional argument NUM-FMT is a string, it will be used as
2877 a format string for numbers at beginning of each line.
2879 If optional argument REF-FMT is a string, it will be used as
2880 a format string for each line of code containing a reference.
2882 When optional argument DELAYED is non-nil, `org-loc' and
2883 `org-coderef' properties, set to an adequate value, are applied
2884 to, respectively, numbered lines and lines with a reference. No
2885 line numbering is done and all references are stripped from the
2886 resulting string. Both NUM-FMT and REF-FMT arguments are ignored
2887 in that situation.
2889 Return new code as a string."
2890 (let* ((switches (or (org-element-property :switches element) ""))
2891 (code (org-element-property :value element))
2892 (numberp (string-match "[-+]n\\>" switches))
2893 (accumulatep (string-match "\\+n\\>" switches))
2894 ;; Initialize loc counter when any kind of numbering is
2895 ;; active.
2896 (total-LOC (cond
2897 (accumulatep (org-export-get-loc element info))
2898 (numberp 0)))
2899 ;; Get code and clean it. Remove blank lines at its
2900 ;; beginning and end. Also remove protective commas.
2901 (preserve-indent-p (or org-src-preserve-indentation
2902 (string-match "-i\\>" switches)))
2903 (replace-labels (when (string-match "-r\\>" switches)
2904 (if (string-match "-k\\>" switches) 'keep t)))
2905 (code (let ((c (replace-regexp-in-string
2906 "\\`\\([ \t]*\n\\)+" ""
2907 (replace-regexp-in-string
2908 "\\(:?[ \t]*\n\\)*[ \t]*\\'" "\n" code))))
2909 ;; If appropriate, remove global indentation.
2910 (unless preserve-indent-p (setq c (org-remove-indentation c)))
2911 ;; Free up the protected lines. Note: Org blocks
2912 ;; have commas at the beginning or every line.
2913 (if (string=
2914 (or (org-element-property :language element) "")
2915 "org")
2916 (replace-regexp-in-string "^," "" c)
2917 (replace-regexp-in-string
2918 "^\\(,\\)\\(:?\\*\\|[ \t]*#\\+\\)" "" c nil nil 1))))
2919 ;; Split code to process it line by line.
2920 (code-lines (org-split-string code "\n"))
2921 ;; If numbering is active, ensure line numbers will be
2922 ;; correctly padded before applying the format string.
2923 (num-fmt
2924 (when (and (not delayed) numberp)
2925 (format (if (stringp num-fmt) num-fmt "%s: ")
2926 (format "%%%ds"
2927 (length (number-to-string
2928 (+ (length code-lines) total-LOC)))))))
2929 ;; Get format used for references.
2930 (label-fmt (or (and (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
2931 (match-string 1 switches))
2932 org-coderef-label-format))
2933 ;; Build a regexp matching a loc with a reference.
2934 (with-ref-re (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
2935 (replace-regexp-in-string
2936 "%s" "\\([-a-zA-Z0-9_ ]+\\)" label-fmt nil t))))
2937 (org-element-normalize-string
2938 (mapconcat
2939 (lambda (loc)
2940 ;; Maybe add line number to current line of code (LOC).
2941 (when numberp
2942 (incf total-LOC)
2943 (setq loc (if delayed (org-add-props loc nil 'org-loc total-LOC)
2944 (concat (format num-fmt total-LOC) loc))))
2945 ;; Take action if at a ref line.
2946 (when (string-match with-ref-re loc)
2947 (let ((ref (match-string 3 loc)))
2948 (setq loc
2949 ;; Option "-r" without "-k" removes labels.
2950 ;; A non-nil DELAYED removes labels unconditionally.
2951 (if (or delayed
2952 (and replace-labels (not (eq replace-labels 'keep))))
2953 (replace-match "" nil nil loc 1)
2954 (replace-match (format "(%s)" ref) nil nil loc 2)))
2955 ;; Store REF in `org-coderef' property if DELAYED asks to.
2956 (cond (delayed (setq loc (org-add-props loc nil 'org-coderef ref)))
2957 ;; If REF-FMT is defined, apply it to current LOC.
2958 ((stringp ref-fmt) (setq loc (format ref-fmt loc))))))
2959 ;; Return updated LOC for concatenation.
2960 loc)
2961 code-lines "\n"))))
2964 ;;;; For Tables
2966 ;; `org-export-table-format-info' extracts formatting information
2967 ;; (alignment, column groups and presence of a special column) from
2968 ;; a raw table and returns it as a property list.
2970 ;; `org-export-clean-table' cleans the raw table from any Org
2971 ;; table-specific syntax.
2973 (defun org-export-table-format-info (table)
2974 "Extract info from TABLE.
2975 Return a plist whose properties and values are:
2976 `:alignment' vector of strings among \"r\", \"l\" and \"c\",
2977 `:column-groups' vector of symbols among `start', `end', `start-end',
2978 `:row-groups' list of integers representing row groups.
2979 `:special-column-p' non-nil if table has a special column.
2980 `:width' vector of integers representing desired width of
2981 current column, or nil."
2982 (with-temp-buffer
2983 (insert table)
2984 (goto-char 1)
2985 (org-table-align)
2986 (let ((align (vconcat (mapcar (lambda (c) (if c "r" "l"))
2987 org-table-last-alignment)))
2988 (width (make-vector (length org-table-last-alignment) nil))
2989 (colgroups (make-vector (length org-table-last-alignment) nil))
2990 (row-group 0)
2991 (rowgroups)
2992 (special-column-p 'empty))
2993 (mapc (lambda (row)
2994 (if (string-match "^[ \t]*|[-+]+|[ \t]*$" row)
2995 (incf row-group)
2996 ;; Determine if a special column is present by looking
2997 ;; for special markers in the first column. More
2998 ;; accurately, the first column is considered special
2999 ;; if it only contains special markers and, maybe,
3000 ;; empty cells.
3001 (setq special-column-p
3002 (cond
3003 ((not special-column-p) nil)
3004 ((string-match "^[ \t]*| *\\\\?\\([/#!$*_^]\\) *|" row)
3005 'special)
3006 ((string-match "^[ \t]*| +|" row) special-column-p))))
3007 (cond
3008 ;; Read forced alignment and width information, if any,
3009 ;; and determine final alignment for the table.
3010 ((org-table-cookie-line-p row)
3011 (let ((col 0))
3012 (mapc (lambda (field)
3013 (when (string-match
3014 "<\\([lrc]\\)?\\([0-9]+\\)?>" field)
3015 (let ((align-data (match-string 1 field)))
3016 (when align-data (aset align col align-data)))
3017 (let ((w-data (match-string 2 field)))
3018 (when w-data
3019 (aset width col (string-to-number w-data)))))
3020 (incf col))
3021 (org-split-string row "[ \t]*|[ \t]*"))))
3022 ;; Read column groups information.
3023 ((org-table-colgroup-line-p row)
3024 (let ((col 0))
3025 (mapc (lambda (field)
3026 (aset colgroups col
3027 (cond ((string= "<" field) 'start)
3028 ((string= ">" field) 'end)
3029 ((string= "<>" field) 'start-end)))
3030 (incf col))
3031 (org-split-string row "[ \t]*|[ \t]*"))))
3032 ;; Contents line.
3033 (t (push row-group rowgroups))))
3034 (org-split-string table "\n"))
3035 ;; Return plist.
3036 (list :alignment align
3037 :column-groups colgroups
3038 :row-groups (reverse rowgroups)
3039 :special-column-p (eq special-column-p 'special)
3040 :width width))))
3042 (defun org-export-clean-table (table specialp)
3043 "Clean string TABLE from its formatting elements.
3044 Remove any row containing column groups or formatting cookies and
3045 rows starting with a special marker. If SPECIALP is non-nil,
3046 assume the table contains a special formatting column and remove
3047 it also."
3048 (let ((rows (org-split-string table "\n")))
3049 (mapconcat 'identity
3050 (delq nil
3051 (mapcar
3052 (lambda (row)
3053 (cond
3054 ((org-table-colgroup-line-p row) nil)
3055 ((org-table-cookie-line-p row) nil)
3056 ;; Ignore rows starting with a special marker.
3057 ((string-match "^[ \t]*| *[!_^/$] *|" row) nil)
3058 ;; Remove special column.
3059 ((and specialp
3060 (or (string-match "^\\([ \t]*\\)|-+\\+" row)
3061 (string-match "^\\([ \t]*\\)|[^|]*|" row)))
3062 (replace-match "\\1|" t nil row))
3063 (t row)))
3064 rows))
3065 "\n")))
3068 ;;;; For Tables Of Contents
3070 ;; `org-export-collect-headlines' builds a list of all exportable
3071 ;; headline elements, maybe limited to a certain depth. One can then
3072 ;; easily parse it and transcode it.
3074 ;; Building lists of tables, figures or listings is quite similar.
3075 ;; Once the generic function `org-export-collect-elements' is defined,
3076 ;; `org-export-collect-tables', `org-export-collect-figures' and
3077 ;; `org-export-collect-listings' can be derived from it.
3079 (defun org-export-collect-headlines (info &optional n)
3080 "Collect headlines in order to build a table of contents.
3082 INFO is a plist used as a communication channel.
3084 When non-nil, optional argument N must be an integer. It
3085 specifies the depth of the table of contents.
3087 Return a list of all exportable headlines as parsed elements."
3088 (org-element-map
3089 (plist-get info :parse-tree)
3090 'headline
3091 (lambda (headline local)
3092 ;; Strip contents from HEADLINE.
3093 (let ((relative-level (org-export-get-relative-level headline local)))
3094 (unless (and n (> relative-level n)) headline)))
3095 info))
3097 (defun org-export-collect-elements (type info &optional predicate)
3098 "Collect referenceable elements of a determined type.
3100 TYPE can be a symbol or a list of symbols specifying element
3101 types to search. Only elements with a caption or a name are
3102 collected.
3104 INFO is a plist used as a communication channel.
3106 When non-nil, optional argument PREDICATE is a function accepting
3107 one argument, an element of type TYPE. It returns a non-nil
3108 value when that element should be collected.
3110 Return a list of all elements found, in order of appearance."
3111 (org-element-map
3112 (plist-get info :parse-tree) type
3113 (lambda (element local)
3114 (and (or (org-element-property :caption element)
3115 (org-element-property :name element))
3116 (or (not predicate) (funcall predicate element))
3117 element)) info))
3119 (defun org-export-collect-tables (info)
3120 "Build a list of tables.
3122 INFO is a plist used as a communication channel.
3124 Return a list of table elements with a caption or a name
3125 affiliated keyword."
3126 (org-export-collect-elements 'table info))
3128 (defun org-export-collect-figures (info predicate)
3129 "Build a list of figures.
3131 INFO is a plist used as a communication channel. PREDICATE is
3132 a function which accepts one argument: a paragraph element and
3133 whose return value is non-nil when that element should be
3134 collected.
3136 A figure is a paragraph type element, with a caption or a name,
3137 verifying PREDICATE. The latter has to be provided since
3138 a \"figure\" is a vague concept that may depend on back-end.
3140 Return a list of elements recognized as figures."
3141 (org-export-collect-elements 'paragraph info predicate))
3143 (defun org-export-collect-listings (info)
3144 "Build a list of src blocks.
3146 INFO is a plist used as a communication channel.
3148 Return a list of src-block elements with a caption or a name
3149 affiliated keyword."
3150 (org-export-collect-elements 'src-block info))
3153 ;;;; Topology
3155 ;; Here are various functions to retrieve information about the
3156 ;; neighbourhood of a given element or object. Neighbours of interest
3157 ;; are direct parent (`org-export-get-parent'), parent headline
3158 ;; (`org-export-get-parent-headline'), parent paragraph
3159 ;; (`org-export-get-parent-paragraph'), previous element or object
3160 ;; (`org-export-get-previous-element') and next element or object
3161 ;; (`org-export-get-next-element').
3163 ;; All of these functions are just a specific use of the more generic
3164 ;; `org-export-get-genealogy', which returns the genealogy relative to
3165 ;; the element or object.
3167 (defun org-export-get-genealogy (blob info)
3168 "Return genealogy relative to a given element or object.
3169 BLOB is the element or object being considered. INFO is a plist
3170 used as a communication channel."
3171 (let* ((end (org-element-property :end blob))
3172 (walk-data
3173 (lambda (data genealogy)
3174 (mapc
3175 (lambda (el)
3176 (cond
3177 ((stringp el))
3178 ((equal el blob) (throw 'exit genealogy))
3179 ((>= (org-element-property :end el) end)
3180 (funcall walk-data el (cons el genealogy)))))
3181 (org-element-contents data)))))
3182 (catch 'exit (funcall walk-data (plist-get info :parse-tree) nil) nil)))
3184 (defun org-export-get-parent (blob info)
3185 "Return BLOB parent or nil.
3186 BLOB is the element or object considered. INFO is a plist used
3187 as a communication channel."
3188 (car (org-export-get-genealogy blob info)))
3190 (defun org-export-get-parent-headline (blob info)
3191 "Return closest parent headline or nil.
3193 BLOB is the element or object being considered. INFO is a plist
3194 used as a communication channel."
3195 (catch 'exit
3196 (mapc
3197 (lambda (el) (when (eq (org-element-type el) 'headline) (throw 'exit el)))
3198 (org-export-get-genealogy blob info))
3199 nil))
3201 (defun org-export-get-parent-paragraph (object info)
3202 "Return parent paragraph or nil.
3204 INFO is a plist used as a communication channel.
3206 Optional argument OBJECT, when provided, is the object to consider.
3207 Otherwise, return the paragraph containing current object.
3209 This is useful for objects, which share attributes with the
3210 paragraph containing them."
3211 (catch 'exit
3212 (mapc
3213 (lambda (el) (when (eq (org-element-type el) 'paragraph) (throw 'exit el)))
3214 (org-export-get-genealogy object info))
3215 nil))
3217 (defun org-export-get-previous-element (blob info)
3218 "Return previous element or object.
3220 BLOB is an element or object. INFO is a plist used as
3221 a communication channel.
3223 Return previous element or object, a string, or nil."
3224 (let ((parent (org-export-get-parent blob info)))
3225 (cadr (member blob (reverse (org-element-contents parent))))))
3227 (defun org-export-get-next-element (blob info)
3228 "Return next element or object.
3230 BLOB is an element or object. INFO is a plist used as
3231 a communication channel.
3233 Return next element or object, a string, or nil."
3234 (let ((parent (org-export-get-parent blob info)))
3235 (cadr (member blob (org-element-contents parent)))))
3239 ;;; The Dispatcher
3241 ;; `org-export-dispatch' is the standard interactive way to start an
3242 ;; export process. It uses `org-export-dispatch-ui' as a subroutine
3243 ;; for its interface. Most commons back-ends should have an entry in
3244 ;; it.
3246 (defun org-export-dispatch ()
3247 "Export dispatcher for Org mode.
3249 It provides an access to common export related tasks in a buffer.
3250 Its interface comes in two flavours: standard and expert. While
3251 both share the same set of bindings, only the former displays the
3252 valid keys associations. Set `org-export-dispatch-use-expert-ui'
3253 to switch to one or the other.
3255 Return an error if key pressed has no associated command."
3256 (interactive)
3257 (let* ((input (org-export-dispatch-ui
3258 (if (listp org-export-initial-scope) org-export-initial-scope
3259 (list org-export-initial-scope))
3260 org-export-dispatch-use-expert-ui))
3261 (raw-key (car input))
3262 (optns (cdr input)))
3263 ;; Translate "C-a", "C-b"... into "a", "b"... Then take action
3264 ;; depending on user's key pressed.
3265 (case (if (< raw-key 27) (+ raw-key 96) raw-key)
3266 ;; Allow to quit with "q" key.
3267 (?q nil)
3268 ;; Export with `e-ascii' back-end.
3269 ((?A ?N ?U)
3270 (let ((outbuf
3271 (org-export-to-buffer
3272 'e-ascii "*Org E-ASCII Export*"
3273 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)
3274 `(:ascii-charset
3275 ,(case raw-key (?A 'ascii) (?N 'latin1) (t 'utf-8))))))
3276 (with-current-buffer outbuf (text-mode))
3277 (when org-export-show-temporary-export-buffer
3278 (switch-to-buffer-other-window outbuf))))
3279 ((?a ?n ?u)
3280 (org-e-ascii-export-to-ascii
3281 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)
3282 `(:ascii-charset ,(case raw-key (?a 'ascii) (?n 'latin1) (t 'utf-8)))))
3283 ;; Export with `e-latex' back-end.
3285 (let ((outbuf
3286 (org-export-to-buffer
3287 'e-latex "*Org E-LaTeX Export*"
3288 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
3289 (with-current-buffer outbuf (latex-mode))
3290 (when org-export-show-temporary-export-buffer
3291 (switch-to-buffer-other-window outbuf))))
3292 (?l (org-e-latex-export-to-latex
3293 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
3294 (?p (org-e-latex-export-to-pdf
3295 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
3296 (?d (org-open-file
3297 (org-e-latex-export-to-pdf
3298 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
3299 ;; Export with `e-html' back-end.
3301 (let ((outbuf
3302 (org-export-to-buffer
3303 'e-html "*Org E-HTML Export*"
3304 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
3305 ;; set major mode
3306 (with-current-buffer outbuf
3307 (if (featurep 'nxhtml-mode) (nxhtml-mode) (nxml-mode)))
3308 (when org-export-show-temporary-export-buffer
3309 (switch-to-buffer-other-window outbuf))))
3310 (?h (org-e-html-export-to-html
3311 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
3312 (?b (org-open-file
3313 (org-e-html-export-to-html
3314 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
3315 ;; Export with `e-odt' back-end.
3316 (?o (org-e-odt-export-to-odt
3317 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
3318 (?O (org-open-file
3319 (org-e-odt-export-to-odt
3320 (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
3321 ;; Publishing facilities
3322 (?F (org-e-publish-current-file (memq 'force optns)))
3323 (?P (org-e-publish-current-project (memq 'force optns)))
3324 (?X (let ((project
3325 (assoc (org-icompleting-read
3326 "Publish project: " org-e-publish-project-alist nil t)
3327 org-e-publish-project-alist)))
3328 (org-e-publish project (memq 'force optns))))
3329 (?E (org-e-publish-all (memq 'force optns)))
3330 ;; Undefined command.
3331 (t (error "No command associated with key %s"
3332 (char-to-string raw-key))))))
3334 (defun org-export-dispatch-ui (options expertp)
3335 "Handle interface for `org-export-dispatch'.
3337 OPTIONS is a list containing current interactive options set for
3338 export. It can contain any of the following symbols:
3339 `body' toggles a body-only export
3340 `subtree' restricts export to current subtree
3341 `visible' restricts export to visible part of buffer.
3342 `force' force publishing files.
3344 EXPERTP, when non-nil, triggers expert UI. In that case, no help
3345 buffer is provided, but indications about currently active
3346 options are given in the prompt. Moreover, \[?] allows to switch
3347 back to standard interface.
3349 Return value is a list with key pressed as CAR and a list of
3350 final interactive export options as CDR."
3351 (let ((help
3352 (format "---- (Options) -------------------------------------------
3354 \[1] Body only: %s [2] Export scope: %s
3355 \[3] Visible only: %s [4] Force publishing: %s
3358 ----(ASCII/Latin-1/UTF-8 Export)--------------------------
3360 \[a/n/u] to TXT file [A/N/U] to temporary buffer
3362 ----(HTML Export)-----------------------------------------
3364 \[h] to HTML file [b] ... and open it
3365 \[H] to temporary buffer
3367 ----(LaTeX Export)----------------------------------------
3369 \[l] to TEX file [L] to temporary buffer
3370 \[p] to PDF file [d] ... and open it
3372 ----(ODF Export)------------------------------------------
3374 \[o] to ODT file [O] ... and open it
3376 ----(Publish)---------------------------------------------
3378 \[F] current file [P] current project
3379 \[X] a project [E] every project"
3380 (if (memq 'body options) "On " "Off")
3381 (if (memq 'subtree options) "Subtree" "Buffer ")
3382 (if (memq 'visible options) "On " "Off")
3383 (if (memq 'force options) "On " "Off")))
3384 (standard-prompt "Export command: ")
3385 (expert-prompt (format "Export command (%s%s%s%s): "
3386 (if (memq 'body options) "b" "-")
3387 (if (memq 'subtree options) "s" "-")
3388 (if (memq 'visible options) "v" "-")
3389 (if (memq 'force options) "f" "-")))
3390 (handle-keypress
3391 (function
3392 ;; Read a character from command input, toggling interactive
3393 ;; options when applicable. PROMPT is the displayed prompt,
3394 ;; as a string.
3395 (lambda (prompt)
3396 (let ((key (read-char-exclusive prompt)))
3397 (cond
3398 ;; Ignore non-standard characters (i.e. "M-a").
3399 ((not (characterp key)) (org-export-dispatch-ui options expertp))
3400 ;; Help key: Switch back to standard interface if
3401 ;; expert UI was active.
3402 ((eq key ??) (org-export-dispatch-ui options nil))
3403 ;; Toggle export options.
3404 ((memq key '(?1 ?2 ?3 ?4))
3405 (org-export-dispatch-ui
3406 (let ((option (case key (?1 'body) (?2 'subtree) (?3 'visible)
3407 (?4 'force))))
3408 (if (memq option options) (remq option options)
3409 (cons option options)))
3410 expertp))
3411 ;; Action selected: Send key and options back to
3412 ;; `org-export-dispatch'.
3413 (t (cons key options))))))))
3414 ;; With expert UI, just read key with a fancy prompt. In standard
3415 ;; UI, display an intrusive help buffer.
3416 (if expertp (funcall handle-keypress expert-prompt)
3417 (save-window-excursion
3418 (delete-other-windows)
3419 (with-output-to-temp-buffer "*Org Export/Publishing Help*" (princ help))
3420 (org-fit-window-to-buffer
3421 (get-buffer-window "*Org Export/Publishing Help*"))
3422 (funcall handle-keypress standard-prompt)))))
3425 (provide 'org-export)
3426 ;;; org-export.el ends here