mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 76bbd07de7add0f9d13c6914f158d19630fe2f62
commit | author | age
76bbd0 1 ;ELC
C 2 ;;; Compiled
3 ;;; in Emacs version 26.1
4 ;;; with all optimizations.
5
6 ;;; This file contains utf-8 non-ASCII characters,
7 ;;; and so cannot be loaded into Emacs 22 or earlier.
8 (and (boundp 'emacs-version)
9      (< (aref emacs-version (1- (length emacs-version))) ?A)
10      (string-lessp emacs-version "23")
11      (error "`%s' was compiled for Emacs 23 or later" #$))
12
13 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
15
16 (byte-code "\300\301!\210\300\302!\210\300\303!\210\300\304!\210\300\305!\207" [require cl-lib ob-exp org-element org-macro tabulated-list] 2)
17 #@55 Maximum nesting depth for headlines, counting from 0.
18 (defconst org-export-max-depth 19 (#$ . 551))
19 #@1398 Alist between export properties and ways to set them.
20
21 The key of the alist is the property name, and the value is a list
22 like (KEYWORD OPTION DEFAULT BEHAVIOR) where:
23
24 KEYWORD is a string representing a buffer keyword, or nil.  Each
25   property defined this way can also be set, during subtree
26   export, through a headline property named after the keyword
27   with the "EXPORT_" prefix (i.e. DATE keyword and EXPORT_DATE
28   property).
29 OPTION is a string that could be found in an #+OPTIONS: line.
30 DEFAULT is the default value for the property.
31 BEHAVIOR determines how Org should handle multiple keywords for
32   the same property.  It is a symbol among:
33   nil       Keep old value and discard the new one.
34   t         Replace old value with the new one.
35   `space'   Concatenate the values, separating them with a space.
36   `newline' Concatenate the values, separating them with
37         a newline.
38   `split'   Split values at white spaces, and cons them to the
39         previous list.
40   `parse'   Parse value as a list of strings and Org objects,
41             which can then be transcoded with, e.g.,
42             `org-export-data'.  It implies `space' behavior.
43
44 Values set through KEYWORD and OPTION have precedence over
45 DEFAULT.
46
47 All these properties should be back-end agnostic.  Back-end
48 specific properties are set through `org-export-define-backend'.
49 Properties redefined there have precedence over these.
50 (defconst org-export-options-alist '((:title "TITLE" nil nil parse) (:date "DATE" nil nil parse) (:author "AUTHOR" nil user-full-name parse) (:email "EMAIL" nil user-mail-address t) (:language "LANGUAGE" nil org-export-default-language t) (:select-tags "SELECT_TAGS" nil org-export-select-tags split) (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split) (:creator "CREATOR" nil org-export-creator-string) (:headline-levels nil "H" org-export-headline-levels) (:preserve-breaks nil "\\n" org-export-preserve-breaks) (:section-numbers nil "num" org-export-with-section-numbers) (:time-stamp-file nil "timestamp" org-export-time-stamp-file) (:with-archived-trees nil "arch" org-export-with-archived-trees) (:with-author nil "author" org-export-with-author) (:with-broken-links nil "broken-links" org-export-with-broken-links) (:with-clocks nil "c" org-export-with-clocks) (:with-creator nil "creator" org-export-with-creator) (:with-date nil "date" org-export-with-date) (:with-drawers nil "d" org-export-with-drawers) (:with-email nil "email" org-export-with-email) (:with-emphasize nil "*" org-export-with-emphasize) (:with-entities nil "e" org-export-with-entities) (:with-fixed-width nil ":" org-export-with-fixed-width) (:with-footnotes nil "f" org-export-with-footnotes) (:with-inlinetasks nil "inline" org-export-with-inlinetasks) (:with-latex nil "tex" org-export-with-latex) (:with-planning nil "p" org-export-with-planning) (:with-priority nil "pri" org-export-with-priority) (:with-properties nil "prop" org-export-with-properties) (:with-smart-quotes nil "'" org-export-with-smart-quotes) (:with-special-strings nil "-" org-export-with-special-strings) (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies) (:with-sub-superscript nil "^" org-export-with-sub-superscripts) (:with-toc nil "toc" org-export-with-toc) (:with-tables nil "|" org-export-with-tables) (:with-tags nil "tags" org-export-with-tags) (:with-tasks nil "tasks" org-export-with-tasks) (:with-timestamps nil "<" org-export-with-timestamps) (:with-title nil "title" org-export-with-title) (:with-todo-keywords nil "todo" org-export-with-todo-keywords)) (#$ . 659))
51 #@213 List of in-buffer keywords that require special treatment.
52 These keywords are not directly associated to a property.  The
53 way they are handled must be hard-coded into
54 `org-export--get-inbuffer-options' function.
55 (defconst org-export-special-keywords '("FILETAGS" "SETUPFILE" "OPTIONS") (#$ . 4234))
56 #@463 Alist between filters properties and initial values.
57
58 The key of each association is a property name accessible through
59 the communication channel.  Its value is a configurable global
60 variable defining initial filters.
61
62 This list is meant to install user specified filters.  Back-end
63 developers may install their own filters using
64 `org-export-define-backend'.  Filters defined there will always
65 be prepended to the current list, so they always get applied
66 first.
67 (defconst org-export-filters-alist '((:filter-body . org-export-filter-body-functions) (:filter-bold . org-export-filter-bold-functions) (:filter-babel-call . org-export-filter-babel-call-functions) (:filter-center-block . org-export-filter-center-block-functions) (:filter-clock . org-export-filter-clock-functions) (:filter-code . org-export-filter-code-functions) (:filter-diary-sexp . org-export-filter-diary-sexp-functions) (:filter-drawer . org-export-filter-drawer-functions) (:filter-dynamic-block . org-export-filter-dynamic-block-functions) (:filter-entity . org-export-filter-entity-functions) (:filter-example-block . org-export-filter-example-block-functions) (:filter-export-block . org-export-filter-export-block-functions) (:filter-export-snippet . org-export-filter-export-snippet-functions) (:filter-final-output . org-export-filter-final-output-functions) (:filter-fixed-width . org-export-filter-fixed-width-functions) (:filter-footnote-definition . org-export-filter-footnote-definition-functions) (:filter-footnote-reference . org-export-filter-footnote-reference-functions) (:filter-headline . org-export-filter-headline-functions) (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions) (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions) (:filter-inline-src-block . org-export-filter-inline-src-block-functions) (:filter-inlinetask . org-export-filter-inlinetask-functions) (:filter-italic . org-export-filter-italic-functions) (:filter-item . org-export-filter-item-functions) (:filter-keyword . org-export-filter-keyword-functions) (:filter-latex-environment . org-export-filter-latex-environment-functions) (:filter-latex-fragment . org-export-filter-latex-fragment-functions) (:filter-line-break . org-export-filter-line-break-functions) (:filter-link . org-export-filter-link-functions) (:filter-node-property . org-export-filter-node-property-functions) (:filter-options . org-export-filter-options-functions) (:filter-paragraph . org-export-filter-paragraph-functions) (:filter-parse-tree . org-export-filter-parse-tree-functions) (:filter-plain-list . org-export-filter-plain-list-functions) (:filter-plain-text . org-export-filter-plain-text-functions) (:filter-planning . org-export-filter-planning-functions) (:filter-property-drawer . org-export-filter-property-drawer-functions) (:filter-quote-block . org-export-filter-quote-block-functions) (:filter-radio-target . org-export-filter-radio-target-functions) (:filter-section . org-export-filter-section-functions) (:filter-special-block . org-export-filter-special-block-functions) (:filter-src-block . org-export-filter-src-block-functions) (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions) (:filter-strike-through . org-export-filter-strike-through-functions) (:filter-subscript . org-export-filter-subscript-functions) (:filter-superscript . org-export-filter-superscript-functions) (:filter-table . org-export-filter-table-functions) (:filter-table-cell . org-export-filter-table-cell-functions) (:filter-table-row . org-export-filter-table-row-functions) (:filter-target . org-export-filter-target-functions) (:filter-timestamp . org-export-filter-timestamp-functions) (:filter-underline . org-export-filter-underline-functions) (:filter-verbatim . org-export-filter-verbatim-functions) (:filter-verse-block . org-export-filter-verse-block-functions)) (#$ . 4540))
68 #@351 Default rule for link matching an inline image.
69 This rule applies to links with no description.  By default, it
70 will be considered as an inline image if it targets a local file
71 whose extension is either "png", "jpeg", "jpg", "gif",
72 "tiff", "tif", "xbm", "xpm", "pbm", "pgm" or "ppm".
73 See `org-export-inline-image-p' for more information about
74 rules.
75 (defconst org-export-default-inline-image-rule (byte-code "\300\301\302\303\"BC\207" ["file" format "\\.%s\\'" "\\(gif\\|jp\\(?:e?g\\)\\|p\\(?:bm\\|gm\\|ng\\|pm\\)\\|tiff?\\|x\\(?:[bp]m\\)\\)"] 4) (#$ . 8434))
76 #@284 List of variables not copied through upon buffer duplication.
77 Export process takes place on a copy of the original buffer.
78 When this copy is created, all Org related local variables not in
79 this list are copied to the new buffer.  Variables with an
80 unreadable value are also ignored.
81 (defconst org-export-ignored-local-variables '(org-font-lock-keywords org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer) (#$ . 9001))
82 #@323 Non-nil means asynchronous export process should leave data behind.
83
84 This data is found in the appropriate "*Org Export Process*"
85 buffer, and in files prefixed with "org-export-process" and
86 located in `temporary-file-directory'.
87
88 When non-nil, it will also set `debug-on-error' to a non-nil
89 value in the external process.
90 (defvar org-export-async-debug nil (#$ . 9513))
91 #@379 Record asynchronously generated export results and processes.
92 This is an alist: its CAR is the source of the
93 result (destination file or buffer for a finished process,
94 original buffer for a running one) and its CDR is a list
95 containing the back-end used, as a symbol, and either a process
96 or the time at which it finished.  It is used to build the menu
97 from `org-export-stack'.
98 (defvar org-export-stack-contents nil (#$ . 9890))
99 #@160 List of backends currently available in the exporter.
100 This variable is set with `org-export-define-backend' and
101 `org-export-define-derived-backend' functions.
102 (defvar org-export-registered-backends nil (#$ . 10326))
103 #@148 Last command called from the dispatcher.
104 The value should be a list.  Its CAR is the action, as a symbol,
105 and its CDR is a list of export options.
106 (defvar org-export-dispatch-last-action nil (#$ . 10549))
107 #@228 The position where the last export command was created using the dispatcher.
108 This marker will be used with `C-u C-c C-e' to make sure export repetition
109 uses the same subtree if the previous command was restricted to a subtree.
110 (defvar org-export-dispatch-last-position (make-marker) (#$ . 10761))
111 #@328 Name, if any, of the back-end used during an export process.
112
113 Its value is a symbol such as `html', `latex', `ascii', or nil if
114 the back-end is anonymous (see `org-export-create-backend') or if
115 there is no export process in progress.
116
117 It can be used to teach Babel blocks how to act differently
118 according to the back-end used.
119 (defvar org-export-current-backend nil (#$ . 11065))
120 (byte-code "\300\301\302\303\304\305\306\307&\210\300\310\302\311\304\312\306\301&\210\313\314\315\316\317DD\320\306\310\321\322\323\324&    \210\313\325\315\316\326DD\327\306\310\321\330\323\331&    \210\313\332\315\316\333DD\334\306\310\321\330\323\331&    \210\313\335\315\316\336DD\337\306\310\340\341\342\343\321\330\323\331& \210\313\344\315\316\345DD\346\306\310\321\330\323\331&    \210\313\347\315\316\350DD\351\306\310\321\352\323\353&    \210\313\354\315\316\355DD\356\306\310\321\357\323\360&    \210\313\361\315\316\362DD\363\306\310\340\364\342\365\321\366\323\367& \210\313\370\315\316\371DD\372\306\310\321\330\323\331&    \210\313\373\315\316\374DD\375\306\310\321\330\323\331&    \210\313\376\315\316\377DD\201@\306\310\321\201A\323\201B&    \210\313\201C\315\316\201DDD\201E\306\310\340\364\342\201F\321\330\323\331& \210\313\201G\315\316\201HDD\201I\306\310\321\330\323\331&    \210\313\201J\315\316\201KDD\201L\306\310\340\364\342\201M\321\201N\323\201O& \210\313\201P\315\316\201QDD\201R\306\310\321\201S\323\201T&    \210\313\201U\315\316\201VDD\201W\306\310\321\201X\323\360&    \210\313\201Y\315\316\201ZDD\201[\306\310\321\330\323\331&    \210\313\201\\\315\316\201]DD\201^\306\310\321\330\323\331&    \210\313\201_\315\316\201`DD\201a\306\310\340\364\342\201b\321\330\323\331& \210\313\201c\315\316\201dDD\201e\306\310\340\364\342\201f\321\330\323\331& \210\313\201g\315\316\201hDD\201i\306\310\321\330\323\331&    \210\313\201j\315\316\201kDD\201l\306\310\340\341\342\201m\321\201n\323\201o& \210\313\201p\315\316\201qDD\201r\306\310\321\330\323\331&    \210\313\201s\315\316\201tDD\201u\306\310\321\201v\323\201w&    \210\313\201x\315\316\201yDD\201z\306\310\340\364\342\201{\321\330\323\331& \210\313\201|\315\316\201}DD\201~\306\310\321\330\323\331&    \210\313\201\315\316\201\200DD\201\201\306\310\340\364\342\201\202\321\330\323\331& \210\313\201\203\315\316\201\204DD\201\205\306\310\340\364\342\201\206\321\201\207\323\201\210& \210\313\201\211\315\316\201\212DD\201\213\306\310\321\201\214\323\201\215&    \210\313\201\216\315\316\201\217DD\201\220\306\310\340\364\342\201\221\321\330\323\331& \210\313\201\222\315\316\201\223DD\201\224\306\310\321\201\225\323\201\226&    \210\313\201\227\315\316\201\230DD\201\231\306\310\321\201\232\323\201\233&    \210\313\201\234\315\316\201\235DD\201\236\306\310\340\341\342\201\237\321\330\323\331& \210\313\201\240\315\316\201\241DD\201\242\306\310\321\330\323\331&    \210\313\201\243\315\316\201\244DD\201\245\306\310\321\201\246\323\201\247&    \210\313\201\250\315\316\201\251DD\201\252\306\310\321\330&\210\313\201\253\315\316\201\254DD\201\255\306\310\340\364\342\201\256\321\330& \210\313\201\257\315\316\201\260DD\201\261\306\310\340\341\342\201\262\321\201\263& \210\313\201\264\315\316\201\265DD\201\266\306\310\340\364\342\201\267\321\201\270\323\201\271& \210\313\201\272\315\316\201\273DD\201\274\306\310\340\341\342\201\275\321\201\276& \210\313\201\277\315\316\201\300DD\201\301\306\310\340\364\342\201\302\321\201\303& \210\313\201\304\315\316\201\305DD\201\306\306\310\340\341\342\201\307\321\201\310& \210\313\201\311\315\316\201\312DD\201\313\306\310\321\201\314&\210\313\201\315\315\316\201\316DD\201\317\306\310\321\330&\210\313\201\320\315\316\201\321DD\201\322\306\310\340\364\342\201\323\321\330& \210\313\201\324\315\316\201\325DD\201\326\306\310\340\364\342\201\327\321\201\330& \210\313\201\331\315\316\201\332DD\201\333\306\310\340\364\342\201\334\321\330& \207" [custom-declare-group org-export nil "Options for exporting Org mode files." :tag "Org Export" :group org org-export-general "General options for export engine." "Org Export General" custom-declare-variable org-export-with-archived-trees funcall function #[0 "\300\207" [headline] 1] "Whether sub-trees with the ARCHIVE tag should be exported.\n\nThis can have three different values:\nnil         Do not export, pretend this tree is not present.\nt           Do export the entire tree.\n`headline'  Only export the headline, but skip the tree below it.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"arch:nil\"." :type (choice (const :tag "Not at all" nil) (const :tag "Headline only" headline) (const :tag "Entirely" t)) :safe #[257 "\211\300>\207" [(t nil headline)] 3 "\n\n(fn X)"] org-export-with-author #[0 "\300\207" [t] 1] "Non-nil means insert author name into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"author:nil\"." boolean booleanp org-export-with-clocks #[0 "\300\207" [nil] 1] "Non-nil means export CLOCK keywords.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"c:t\"." org-export-with-creator #[0 "\300\207" [nil] 1] "Non-nil means the postamble should contain a creator sentence.\n\nThe sentence can be set in `org-export-creator-string', which\nsee.\n\nThis option can also be set with the OPTIONS keyword, e.g.,\n\"creator:t\"." :version "26.1" :package-version (Org . "8.3") org-export-with-date #[0 "\300\207" [t] 1] "Non-nil means insert date in the exported document.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"date:nil\"." org-export-date-timestamp-format #[0 "\300\207" [nil] 1] "Time-stamp format string to use for DATE keyword.\n\nThe format string, when specified, only applies if date consists\nin a single time-stamp.  Otherwise its value will be ignored.\n\nSee `format-time-string' for details on how to build this\nstring." (choice (string :tag "Time-stamp format string") (const :tag "No format string" nil)) #[257 "\211?\206\211;\207" [] 2 "\n\n(fn X)"] org-export-creator-string #[0 "\301\302\303\304!\203\304 \202\305#\207" [emacs-version format "Emacs %s (Org mode %s)" fboundp org-version "unknown version"] 5] "Information about the creator of the document.\nThis option can also be set on with the CREATOR keyword." (string :tag "Creator string") stringp org-export-with-drawers #[0 "\300\207" [(not "LOGBOOK")] 1] "Non-nil means export contents of standard drawers.\n\nWhen t, all drawers are exported.  This may also be a list of\ndrawer names to export, as strings.  If that list starts with\n`not', only drawers with such names will be ignored.\n\nThis variable doesn't apply to properties drawers.  See\n`org-export-with-properties' instead.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"d:nil\"." "24.4" (Org . "8.0") (choice (const :tag "All drawers" t) (const :tag "None" nil) (repeat :tag "Selected drawers" (string :tag "Drawer name")) (list :tag "Ignored drawers" (const :format "" not) (repeat :tag "Specify names of drawers to ignore during export" :inline t (string :tag "Drawer name")))) #[257 "\300!\206\211:\207" [booleanp] 3 "\n\n(fn X)"] org-export-with-email #[0 "\300\207" [nil] 1] "Non-nil means insert author email into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"email:t\"." org-export-with-emphasize #[0 "\300\207" [t] 1] "Non-nil means interpret *word*, /word/, _word_ and +word+.\n\nIf the export target supports emphasizing text, the word will be\ntypeset in bold, italic, with an underline or strike-through,\nrespectively.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"*:nil\"." org-export-exclude-tags #[0 "\300\207" [("noexport")] 1] "Tags that exclude a tree from export.\n\nAll trees carrying any of these tags will be excluded from\nexport.  This is without condition, so even subtrees inside that\ncarry one of the `org-export-select-tags' will be removed.\n\nThis option can also be set with the EXCLUDE_TAGS keyword." (repeat (string :tag "Tag")) #[257 "\211<\205    \300\301\"\207" [cl-every stringp] 4 "\n\n(fn X)"] org-export-with-fixed-width #[0 "\300\207" [t] 1] "Non-nil means export lines starting with \":\".\nThis option can also be set with the OPTIONS keyword,\ne.g. \"::nil\"." (Org . "8.0") org-export-with-footnotes #[0 "\300\207" [t] 1] "Non-nil means Org footnotes should be exported.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"f:nil\"." org-export-with-latex #[0 "\300\207" [t] 1] "Non-nil means process LaTeX environments and fragments.\n\nThis option can also be set with the OPTIONS line,\ne.g. \"tex:verbatim\".  Allowed values are:\n\nnil         Ignore math snippets.\n`verbatim'  Keep everything in verbatim.\nt           Allow export of math snippets." (Org . "8.0") (choice (const :tag "Do not process math in any way" nil) (const :tag "Interpret math snippets" t) (const :tag "Leave math verbatim" verbatim)) #[257 "\211\300>\207" [(t nil verbatim)] 3 "\n\n(fn X)"] org-export-headline-levels #[0 "\300\207" [3] 1] "The last level which is still exported as a headline.\n\nInferior levels will usually produce itemize or enumerate lists\nwhen exported, but back-end behavior may differ.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"H:2\"." integer integerp org-export-default-language #[0 "\300\207" [#1="en"] 1 #1#] "The default language for export and clocktable translations, as a string.\nThis may have an association in\n`org-clock-clocktable-language-setup',\n`org-export-smart-quotes-alist' and `org-export-dictionary'.\nThis option can also be set with the LANGUAGE keyword." (string :tag "Language") org-export-preserve-breaks #[0 "\300\207" [nil] 1] "Non-nil means preserve all line breaks when exporting.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"\\n:t\"." org-export-with-entities #[0 "\300\207" [t] 1] "Non-nil means interpret entities when exporting.\n\nFor example, HTML export converts \\alpha to &alpha; and \\AA to\n&Aring;.\n\nFor a list of supported names, see the constant `org-entities'\nand the user option `org-entities-user'.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"e:nil\"." org-export-with-inlinetasks #[0 "\300\207" [t] 1] "Non-nil means inlinetasks should be exported.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"inline:nil\"." (Org . "8.0") org-export-with-planning #[0 "\300\207" [nil] 1] "Non-nil means include planning info in export.\n\nPlanning info is the line containing either SCHEDULED:,\nDEADLINE:, CLOSED: time-stamps, or a combination of them.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"p:t\"." (Org . "8.0") org-export-with-priority #[0 "\300\207" [nil] 1] "Non-nil means include priority cookies in export.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"pri:t\"." org-export-with-properties #[0 "\300\207" [nil] 1] "Non-nil means export contents of properties drawers.\n\nWhen t, all properties are exported.  This may also be a list of\nproperties to export, as strings.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"prop:t\"." (Org . "8.3") (choice (const :tag "All properties" t) (const :tag "None" nil) (repeat :tag "Selected properties" (string :tag "Property name"))) #[257 "\300!\206\211<\205\301\302\"\207" [booleanp cl-every stringp] 4 "\n\n(fn X)"] org-export-with-section-numbers #[0 "\300\207" [t] 1] "Non-nil means add section numbers to headlines when exporting.\n\nWhen set to an integer n, numbering will only happen for\nheadlines whose relative level is higher or equal to n.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"num:t\"." org-export-select-tags #[0 "\300\207" [("export")] 1] "Tags that select a tree for export.\n\nIf any such tag is found in a buffer, all trees that do not carry\none of these tags will be ignored during export.  Inside trees\nthat are selected like this, you can still deselect a subtree by\ntagging it with one of the `org-export-exclude-tags'.\n\nThis option can also be set with the SELECT_TAGS keyword." (repeat (string :tag "Tag")) #[257 "\211<\205    \300\301\"\207" [cl-every stringp] 4 "\n\n(fn X)"] org-export-with-smart-quotes #[0 "\300\207" [nil] 1] "Non-nil means activate smart quotes during export.\nThis option can also be set with the OPTIONS keyword,\ne.g., \"':t\".\n\nWhen setting this to non-nil, you need to take care of\nusing the correct Babel package when exporting to LaTeX.\nE.g., you can load Babel for french like this:\n\n#+LATEX_HEADER: \\usepackage[french]{babel}" (Org . "8.0") org-export-with-special-strings #[0 "\300\207" [t] 1] "Non-nil means interpret \"\\-\", \"--\" and \"---\" for export.\n\nWhen this option is turned on, these strings will be exported as:\n\n   Org     HTML     LaTeX    UTF-8\n  -----+----------+--------+-------\n   \\-    &shy;      \\-\n   --    &ndash;    --         –\n   ---   &mdash;    ---        —\n   ...   &hellip;   \\ldots     …\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"-:nil\"." org-export-with-statistics-cookies #[0 "\300\207" [t] 1] "Non-nil means include statistics cookies in export.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"stat:nil\"" (Org . "8.0") org-export-with-sub-superscripts #[0 "\300\207" [t] 1] "Non-nil means interpret \"_\" and \"^\" for export.\n\nIf you want to control how Org displays those characters, see\n`org-use-sub-superscripts'.  `org-export-with-sub-superscripts'\nused to be an alias for `org-use-sub-superscripts' in Org <8.0,\nit is not anymore.\n\nWhen this option is turned on, you can use TeX-like syntax for\nsub- and superscripts and see them exported correctly.\n\nYou can also set the option with #+OPTIONS: ^:t\n\nSeveral characters after \"_\" or \"^\" will be considered as a\nsingle item - so grouping with {} is normally not needed.  For\nexample, the following things will be parsed as single sub- or\nsuperscripts:\n\n 10^24   or   10^tau     several digits will be considered 1 item.\n 10^-12  or   10^-tau    a leading sign with digits or a word\n x^2-y^3                 will be read as x^2 - y^3, because items are\n             terminated by almost any nonword/nondigit char.\n x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.\n\nStill, ambiguity is possible.  So when in doubt, use {} to enclose\nthe sub/superscript.  If you set this variable to the symbol `{}',\nthe braces are *required* in order to trigger interpretations as\nsub/superscript.  This can be helpful in documents that need \"_\"\nfrequently in plain text." (Org . "8.0") (choice (const :tag "Interpret them" t) (const :tag "Curly brackets only" {}) (const :tag "Do not interpret them" nil)) #[257 "\211\300>\207" [(t nil {})] 3 "\n\n(fn X)"] org-export-with-toc #[0 "\300\207" [t] 1] "Non-nil means create a table of contents in exported files.\n\nThe table of contents contains headlines with levels up to\n`org-export-headline-levels'.\n\nWhen this variable is set to an integer N, include levels up to\nN in the table of contents.  Although it may then be different\nfrom `org-export-headline-levels', it is cannot be larger than\nthe number of headline levels.\n\nWhen nil, no table of contents is created.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"toc:nil\" or \"toc:3\"." (choice (const :tag "No Table of Contents" nil) (const :tag "Full Table of Contents" t) (integer :tag "TOC to level")) #[257 "\300!\206\211\250\207" [booleanp] 3 "\n\n(fn X)"] org-export-with-tables #[0 "\300\207" [t] 1] "Non-nil means export tables.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"|:nil\"." (Org . "8.0") org-export-with-tags #[0 "\300\207" [t] 1] "If nil, do not export tags, just remove them from headlines.\n\nIf this is the symbol `not-in-toc', tags will be removed from\ntable of contents entries, but still be shown in the headlines of\nthe document.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"tags:nil\"." (choice (const :tag "Off" nil) (const :tag "Not in TOC" not-in-toc) (const :tag "On" t)) #[257 "\211\300>\207" [(t nil not-in-toc)] 3 "\n\n(fn X)"] org-export-with-tasks #[0 "\300\207" [t] 1] "Non-nil means include TODO items for export.\n\nThis may have the following values:\nt                    include tasks independent of state.\n`todo'               include only tasks that are not yet done.\n`done'               include only tasks that are already done.\nnil                  ignore all tasks.\nlist of keywords     include tasks with these keywords.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"tasks:nil\"." (choice (const :tag "All tasks" t) (const :tag "No tasks" nil) (const :tag "Not-done tasks" todo) (const :tag "Only done tasks" done) (repeat :tag "Specific TODO keywords" (string :tag "Keyword"))) #[257 "\211\300>\206\211<\205\301\302\"\207" [(nil t todo done) cl-every stringp] 4 "\n\n(fn X)"] org-export-with-title #[0 "\300\207" [t] 1] "Non-nil means print title into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"title:nil\"." (Org . "8.3") org-export-time-stamp-file #[0 "\300\207" [t] 1] "Non-nil means insert a time stamp into the exported file.\nThe time stamp shows when the file was created.  This option can\nalso be set with the OPTIONS keyword, e.g. \"timestamp:nil\"." org-export-with-timestamps #[0 "\300\207" [t] 1] "Non nil means allow timestamps in export.\n\nIt can be set to any of the following values:\n  t          export all timestamps.\n  `active'   export active timestamps only.\n  `inactive' export inactive timestamps only.\n  nil        do not export timestamps\n\nThis only applies to timestamps isolated in a paragraph\ncontaining only timestamps.  Other timestamps are always\nexported.\n\nThis option can also be set with the OPTIONS keyword, e.g.\n\"<:nil\"." (choice (const :tag "All timestamps" t) (const :tag "Only active timestamps" active) (const :tag "Only inactive timestamps" inactive) (const :tag "No timestamp" nil)) #[257 "\211\300>\207" [(t nil active inactive)] 3 "\n\n(fn X)"] org-export-with-todo-keywords #[0 "\300\207" [t] 1] "Non-nil means include TODO keywords in export.\nWhen nil, remove all these keywords from the export.  This option\ncan also be set with the OPTIONS keyword, e.g.  \"todo:nil\"." org-export-allow-bind-keywords #[0 "\300\207" [nil] 1] "Non-nil means BIND keywords can define local variable values.\nThis is a potential security risk, which is why the default value\nis nil.  You can also allow them through local buffer variables." (Org . "8.0") org-export-with-broken-links #[0 "\300\207" [nil] 1] "Non-nil means do not raise an error on broken links.\n\nWhen this variable is non-nil, broken links are ignored, without\nstopping the export process.  If it is set to `mark', broken\nlinks are marked as such in the output, with a string like\n\n  [BROKEN LINK: path]\n\nwhere PATH is the un-resolvable reference.\n\nThis option can also be set with the OPTIONS keyword, e.g.,\n\"broken-links:mark\"." (Org . "9.0") (choice (const :tag "Ignore broken links" t) (const :tag "Mark broken links in output" mark) (const :tag "Raise an error" nil)) org-export-snippet-translation-alist #[0 "\300\207" [nil] 1] "Alist between export snippets back-ends and exporter back-ends.\n\nThis variable allows providing shortcuts for export snippets.\n\nFor example, with a value of \\='((\"h\" . \"html\")), the\nHTML back-end will recognize the contents of \"@@h:<b>@@\" as\nHTML code while every other back-end will ignore it." (Org . "8.0") (repeat (cons (string :tag "Shortcut") (string :tag "Back-end"))) #[257 "\211<\205\300\301\"\205\300\302\303\304\"\"\205\300\302\303\305\"\"\207" [cl-every consp stringp mapcar car cdr] 6 "\n\n(fn X)"] org-export-global-macros #[0 "\300\207" [nil] 1] "Alist between macro names and expansion templates.\n\nThis variable defines macro expansion templates available\nglobally.  Associations follow the pattern\n\n  (NAME . TEMPLATE)\n\nwhere NAME is a string beginning with a letter and consisting of\nalphanumeric characters only.\n\nTEMPLATE is the string to which the macro is going to be\nexpanded.  Inside, \"$1\", \"$2\"... are place-holders for\nmacro's arguments.  Moreover, if the template starts with\n\"(eval\", it will be parsed as an Elisp expression and evaluated\naccordingly." (Org . "9.1") (repeat (cons (string :tag "Name") (string :tag "Template"))) org-export-coding-system #[0 "\300\207" [nil] 1] "Coding system for the exported file." (Org . "8.0") coding-system org-export-copy-to-kill-ring #[0 "\300\207" [nil] 1] "Non-nil means pushing export output to the kill ring.\nThis variable is ignored during asynchronous export." (Org . "8.3") (choice (const :tag "Always" t) (const :tag "When export is done interactively" if-interactive) (const :tag "Never" nil)) org-export-initial-scope #[0 "\300\207" [buffer] 1] "The initial scope when exporting with `org-export-dispatch'.\nThis variable can be either set to `buffer' or `subtree'." (choice (const :tag "Export current buffer" buffer) (const :tag "Export current subtree" subtree)) org-export-show-temporary-export-buffer #[0 "\300\207" [t] 1] "Non-nil means show buffer after exporting to temp buffer.\nWhen Org exports to a file, the buffer visiting that file is never\nshown, but remains buried.  However, when exporting to\na temporary buffer, that buffer is popped up in a second window.\nWhen this variable is nil, the buffer remains buried also in\nthese cases." org-export-in-background #[0 "\300\207" [nil] 1] "Non-nil means export and publishing commands will run in background.\nResults from an asynchronous export are never displayed\nautomatically.  But you can retrieve them with `\\[org-export-stack]'." (Org . "8.0") org-export-async-init-file #[0 "\300\207" [nil] 1] "File used to initialize external export process.\n\nValue must be either nil or an absolute file name.  When nil, the\nexternal process is launched like a regular Emacs session,\nloading user's initialization file and any site specific\nconfiguration.  If a file is provided, it, and only it, is loaded\nat start-up.\n\nTherefore, using a specific configuration makes the process to\nload faster and the export more portable." (Org . "8.0") (choice (const :tag "Regular startup" nil) (file :tag "Specific start-up file" :must-match t)) org-export-dispatch-use-expert-ui #[0 "\300\207" [nil] 1] "Non-nil means using a non-intrusive `org-export-dispatch'.\nIn that case, no help buffer is displayed.  Though, an indicator\nfor current export scope is added to the prompt (\"b\" when\noutput is restricted to body only, \"s\" when it is restricted to\nthe current subtree, \"v\" when only visible elements are\nconsidered for export, \"f\" when publishing functions should be\npassed the FORCE argument and \"a\" when the export should be\nasynchronous).  Also, [?] allows switching back to standard\nmode." (Org . "8.0")] 14)
121 #@77 compiler-macro for inlining `org-export-backend-p'.
122
123 (fn CL-WHOLE-ARG CL-X)
124 (defalias 'org-export-backend-p--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-p (and (memq (type-of cl-x) cl-struct-org-export-backend-tags) t)) nil] 9 (#$ . 34077)])
125 (put 'org-export-backend-p 'compiler-macro 'org-export-backend-p--cmacro)
126 #@13 
127
128 (fn CL-X)
129 (defalias 'org-export-backend-p #[257 "\301!>\205    \302\207" [cl-struct-org-export-backend-tags type-of t] 3 (#$ . 34460)])
130 (byte-code "\300\301\302\303#\304\305\306\301#\207" [function-put org-export-backend-p side-effect-free error-free put org-export-backend cl-deftype-satisfies] 5)
131 #@80 compiler-macro for inlining `org-export-backend-name'.
132
133 (fn CL-WHOLE-ARG CL-X)
134 (defalias 'org-export-backend-name--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-name (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 1)) nil] 9 (#$ . 34767)])
135 (put 'org-export-backend-name 'compiler-macro 'org-export-backend-name--cmacro)
136 #@125 Access slot "name" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
137
138 (fn CL-X)
139 (defalias 'org-export-backend-name #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 1] 5 (#$ . 35211)])
140 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-name side-effect-free t] 4)
141 #@82 compiler-macro for inlining `org-export-backend-parent'.
142
143 (fn CL-WHOLE-ARG CL-X)
144 (defalias 'org-export-backend-parent--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-parent (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 2)) nil] 9 (#$ . 35641)])
145 (put 'org-export-backend-parent 'compiler-macro 'org-export-backend-parent--cmacro)
146 #@127 Access slot "parent" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
147
148 (fn CL-X)
149 (defalias 'org-export-backend-parent #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 2] 5 (#$ . 36095)])
150 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-parent side-effect-free t] 4)
151 #@87 compiler-macro for inlining `org-export-backend-transcoders'.
152
153 (fn CL-WHOLE-ARG CL-X)
154 (defalias 'org-export-backend-transcoders--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-transcoders (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 3)) nil] 9 (#$ . 36531)])
155 (put 'org-export-backend-transcoders 'compiler-macro 'org-export-backend-transcoders--cmacro)
156 #@132 Access slot "transcoders" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
157
158 (fn CL-X)
159 (defalias 'org-export-backend-transcoders #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 3] 5 (#$ . 37010)])
160 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-transcoders side-effect-free t] 4)
161 #@83 compiler-macro for inlining `org-export-backend-options'.
162
163 (fn CL-WHOLE-ARG CL-X)
164 (defalias 'org-export-backend-options--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-options (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 4)) nil] 9 (#$ . 37461)])
165 (put 'org-export-backend-options 'compiler-macro 'org-export-backend-options--cmacro)
166 #@128 Access slot "options" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
167
168 (fn CL-X)
169 (defalias 'org-export-backend-options #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 4] 5 (#$ . 37920)])
170 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-options side-effect-free t] 4)
171 #@83 compiler-macro for inlining `org-export-backend-filters'.
172
173 (fn CL-WHOLE-ARG CL-X)
174 (defalias 'org-export-backend-filters--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-filters (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 5)) nil] 9 (#$ . 38359)])
175 (put 'org-export-backend-filters 'compiler-macro 'org-export-backend-filters--cmacro)
176 #@128 Access slot "filters" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
177
178 (fn CL-X)
179 (defalias 'org-export-backend-filters #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 5] 5 (#$ . 38818)])
180 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-filters side-effect-free t] 4)
181 #@82 compiler-macro for inlining `org-export-backend-blocks'.
182
183 (fn CL-WHOLE-ARG CL-X)
184 (defalias 'org-export-backend-blocks--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-blocks (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 6)) nil] 9 (#$ . 39257)])
185 (put 'org-export-backend-blocks 'compiler-macro 'org-export-backend-blocks--cmacro)
186 #@127 Access slot "blocks" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
187
188 (fn CL-X)
189 (defalias 'org-export-backend-blocks #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 6] 5 (#$ . 39711)])
190 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-blocks side-effect-free t] 4)
191 #@80 compiler-macro for inlining `org-export-backend-menu'.
192
193 (fn CL-WHOLE-ARG CL-X)
194 (defalias 'org-export-backend-menu--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-menu (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 7)) nil] 9 (#$ . 40147)])
195 (put 'org-export-backend-menu 'compiler-macro 'org-export-backend-menu--cmacro)
196 #@125 Access slot "menu" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
197
198 (fn CL-X)
199 (defalias 'org-export-backend-menu #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 7] 5 (#$ . 40591)])
200 (byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-menu side-effect-free t] 4)
201 #@140 compiler-macro for inlining `org-export-create-backend'.
202
203 (fn CL-WHOLE &cl-quote &key NAME PARENT TRANSCODERS OPTIONS FILTERS BLOCKS MENU)
204 (defalias 'org-export-create-backend--cmacro #[385 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\300\307\"A@\211\203Y\211@\310>\203A\211AA\262\202.\311    >A@\203P\312\262\202.\313\314@\"\210\202.\210\315\316\317\312\f\312\f\f\f\f\f\f\f&\f\207" [plist-member :name :parent :transcoders :options :filters :blocks :menu (:name :parent :transcoders :options :filters :blocks :menu :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:name :parent :transcoders :options :filters :blocks :menu)" cl--defsubst-expand (name parent transcoders options filters blocks menu) (cl-block org-export-create-backend (record 'org-export-backend name parent transcoders options filters blocks menu))] 22 (#$ . 41022)])
205 (put 'org-export-create-backend 'compiler-macro 'org-export-create-backend--cmacro)
206 #@118 Constructor for objects of type `org-export-backend'.
207
208 (fn &key NAME PARENT TRANSCODERS OPTIONS FILTERS BLOCKS MENU)
209 (defalias 'org-export-create-backend #[128 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\300\307\"A@\211\203Y\211@\310>\203A\211AA\262\202.\311    >A@\203P\312\262\202.\313\314@\"\210\202.\210\315\316&\207" [plist-member :name :parent :transcoders :options :filters :blocks :menu (:name :parent :transcoders :options :filters :blocks :menu :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:name :parent :transcoders :options :filters :blocks :menu)" record org-export-backend] 17 (#$ . 42036)])
210 (byte-code "\300\301\302\303#\304\305\306\307\310\306\311\312\305\303&    \207" [function-put org-export-create-backend side-effect-free t cl-struct-define org-export-backend nil cl-structure-object record ((cl-tag-slot) (name) (parent) (transcoders) (options) (filters) (blocks) (menu)) cl-struct-org-export-backend-tags] 11)
211 #@113 Return export back-end named after NAME.
212 NAME is a symbol.  Return nil if no such back-end is found.
213
214 (fn NAME)
215 (defalias 'org-export-get-backend #[257 "\301\302\303\304\305\306!\307\"\310\311%\"\207" [org-export-registered-backends cl-find-if make-byte-code 257 "\300\302!    >\204\303\304\305D\"\210\306H=\207" vconcat vector [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 1] 6 "\n\n(fn B)"] 8 (#$ . 43071)])
216 #@115 Register BACKEND as a known export back-end.
217 BACKEND is a structure with `org-export-backend' type.
218
219 (fn BACKEND)
220 (defalias 'org-export-register-backend #[257 "\302!>\204\303\304\305D\"\210\211\306H\204\307\310!\210\302!>\204(\303\304\305D\"\210\211\311H\211\203:\312!\204:\307\313\"\210\210\312\302!>\204K\303\304\305D\"\210\306H!\211\203[\211    >\240\202`    B\211\207" [cl-struct-org-export-backend-tags org-export-registered-backends type-of signal wrong-type-argument org-export-backend 1 error "Cannot register a unnamed export back-end" 2 org-export-get-backend "Cannot use unknown \"%s\" back-end as a parent"] 6 (#$ . 43536)])
221 #@57 Signal an error if BACKEND isn't defined.
222
223 (fn BACKEND)
224 (defalias 'org-export-barf-if-invalid-backend #[257 "\301!>\205    \302?\205\303\304\"\207" [cl-struct-org-export-backend-tags type-of t error "Unknown \"%s\" back-end: Aborting export"] 4 (#$ . 44198)])
225 #@249 Non-nil if BACKEND is derived from one of BACKENDS.
226 BACKEND is an export back-end, as returned by, e.g.,
227 `org-export-create-backend', or a symbol referring to
228 a registered back-end.  BACKENDS is constituted of symbols.
229
230 (fn BACKEND &rest BACKENDS)
231 (defalias 'org-export-derived-backend-p #[385 "9\203\n\301!\262\205q\3022q\303!>\204!\304\305\306D\"\210\307H\203\\\303!>\2046\304\305\306D\"\210\310H>\203C\311\302\312\"\210\301\303!>\204S\304\305\306D\"\210\307H!\262\202\303!>\204k\304\305\306D\"\210\310H>0\207" [cl-struct-org-export-backend-tags org-export-get-backend exit type-of signal wrong-type-argument org-export-backend 2 1 throw t] 7 (#$ . 44468)])
232 #@370 Return full translation table for BACKEND.
233
234 BACKEND is an export back-end, as return by, e.g,,
235 `org-export-create-backend'.  Return value is an alist where
236 keys are element or object types, as symbols, and values are
237 transcoders.
238
239 Unlike to `org-export-backend-transcoders', this function
240 also returns transcoders inherited from parent back-ends,
241 if any.
242
243 (fn BACKEND)
244 (defalias 'org-export-get-all-transcoders #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 3 nil 2 append] 9 (#$ . 45169)])
245 #@350 Return export options for BACKEND.
246
247 BACKEND is an export back-end, as return by, e.g,,
248 `org-export-create-backend'.  See `org-export-options-alist'
249 for the shape of the return value.
250
251 Unlike to `org-export-backend-options', this function also
252 returns options inherited from parent back-ends, if any.
253
254 Return nil if BACKEND is unknown.
255
256 (fn BACKEND)
257 (defalias 'org-export-get-all-options #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 4 nil 2 append] 9 (#$ . 45960)])
258 #@338 Return complete list of filters for BACKEND.
259
260 BACKEND is an export back-end, as return by, e.g,,
261 `org-export-create-backend'.  Return value is an alist where
262 keys are symbols and values lists of functions.
263
264 Unlike to `org-export-backend-filters', this function also
265 returns filters inherited from parent back-ends, if any.
266
267 (fn BACKEND)
268 (defalias 'org-export-get-all-filters #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 5 nil 2 append] 9 (#$ . 46727)])
269 #@3974 Define a new back-end BACKEND.
270
271 TRANSCODERS is an alist between object or element types and
272 functions handling them.
273
274 These functions should return a string without any trailing
275 space, or nil.  They must accept three arguments: the object or
276 element itself, its contents or nil when it isn't recursive and
277 the property list used as a communication channel.
278
279 Contents, when not nil, are stripped from any global indentation
280 (although the relative one is preserved).  They also always end
281 with a single newline character.
282
283 If, for a given type, no function is found, that element or
284 object type will simply be ignored, along with any blank line or
285 white space at its end.  The same will happen if the function
286 returns the nil value.  If that function returns the empty
287 string, the type will be ignored, but the blank lines or white
288 spaces will be kept.
289
290 In addition to element and object types, one function can be
291 associated to the `template' (or `inner-template') symbol and
292 another one to the `plain-text' symbol.
293
294 The former returns the final transcoded string, and can be used
295 to add a preamble and a postamble to document's body.  It must
296 accept two arguments: the transcoded string and the property list
297 containing export options.  A function associated to `template'
298 will not be applied if export has option "body-only".
299 A function associated to `inner-template' is always applied.
300
301 The latter, when defined, is to be called on every text not
302 recognized as an element or an object.  It must accept two
303 arguments: the text string and the information channel.  It is an
304 appropriate place to protect special chars relative to the
305 back-end.
306
307 BODY can start with pre-defined keyword arguments.  The following
308 keywords are understood:
309
310   :filters-alist
311
312     Alist between filters and function, or list of functions,
313     specific to the back-end.  See `org-export-filters-alist' for
314     a list of all allowed filters.  Filters defined here
315     shouldn't make a back-end test, as it may prevent back-ends
316     derived from this one to behave properly.
317
318   :menu-entry
319
320     Menu entry for the export dispatcher.  It should be a list
321     like:
322
323       \='(KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
324
325     where :
326
327       KEY is a free character selecting the back-end.
328
329       DESCRIPTION-OR-ORDINAL is either a string or a number.
330
331       If it is a string, is will be used to name the back-end in
332       its menu entry.  If it is a number, the following menu will
333       be displayed as a sub-menu of the back-end with the same
334       KEY.  Also, the number will be used to determine in which
335       order such sub-menus will appear (lowest first).
336
337       ACTION-OR-MENU is either a function or an alist.
338
339       If it is an action, it will be called with four
340       arguments (booleans): ASYNC, SUBTREEP, VISIBLE-ONLY and
341       BODY-ONLY.  See `org-export-as' for further explanations on
342       some of them.
343
344       If it is an alist, associations should follow the
345       pattern:
346
347         \='(KEY DESCRIPTION ACTION)
348
349       where KEY, DESCRIPTION and ACTION are described above.
350
351     Valid values include:
352
353       \='(?m "My Special Back-end" my-special-export-function)
354
355       or
356
357       \='(?l "Export to LaTeX"
358            (?p "As PDF file" org-latex-export-to-pdf)
359            (?o "As PDF file and open"
360                (lambda (a s v b)
361                  (if a (org-latex-export-to-pdf t s v b)
362                    (org-open-file
363                     (org-latex-export-to-pdf nil s v b)))))))
364
365       or the following, which will be added to the previous
366       sub-menu,
367
368       \='(?l 1
369           ((?B "As TEX buffer (Beamer)" org-beamer-export-as-latex)
370            (?P "As PDF file (Beamer)" org-beamer-export-to-pdf)))
371
372   :options-alist
373
374     Alist between back-end specific properties introduced in
375     communication channel and how their value are acquired.  See
376     `org-export-options-alist' for more information about
377     structure of the values.
378
379 (fn BACKEND TRANSCODERS &rest BODY)
380 (defalias 'org-export-define-backend #[642 "\300\211\211\301@!\203@\211A\262\242\211\302\267\2027\211A\262\242\262\202<\211A\262\242\262\202<\211A\262\242\262\202<\303\304\"\210\210\202\305\306\307\300        \300\n&!\207" [nil keywordp #s(hash-table size 3 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:filters-alist 22 :menu-entry 33 :options-alist 44)) error "Unknown keyword: %s" org-export-register-backend record org-export-backend] 16 (#$ . 47483)])
381 (byte-code "\300\301\302\303#\300\207" [function-put org-export-define-backend lisp-indent-function 1] 4)
382 #@1420 Create a new back-end as a variant of an existing one.
383
384 CHILD is the name of the derived back-end.  PARENT is the name of
385 the parent back-end.
386
387 BODY can start with pre-defined keyword arguments.  The following
388 keywords are understood:
389
390   :filters-alist
391
392     Alist of filters that will overwrite or complete filters
393     defined in PARENT back-end.  See `org-export-filters-alist'
394     for a list of allowed filters.
395
396   :menu-entry
397
398     Menu entry for the export dispatcher.  See
399     `org-export-define-backend' for more information about the
400     expected value.
401
402   :options-alist
403
404     Alist of back-end specific properties that will overwrite or
405     complete those defined in PARENT back-end.  Refer to
406     `org-export-options-alist' for more information about
407     structure of the values.
408
409   :translate-alist
410
411     Alist of element and object types and transcoders that will
412     overwrite or complete transcode table from PARENT back-end.
413     Refer to `org-export-define-backend' for detailed information
414     about transcoders.
415
416 As an example, here is how one could define "my-latex" back-end
417 as a variant of `latex' back-end with a custom template function:
418
419   (org-export-define-derived-backend \='my-latex \='latex
420      :translate-alist \='((template . my-latex-template-fun)))
421
422 The back-end could then be called with, for example:
423
424   (org-export-to-buffer \='my-latex "*Test my-latex*")
425
426 (fn CHILD PARENT &rest BODY)
427 (defalias 'org-export-define-derived-backend #[642 "\300\211\211\211\301@!\203L\211A\262\242\211\302\267\202C\211A\262\242\262\202H\211A\262\242\262\202H\211A\262\242\262\202H\211A\262\242\262\202H\303\304\"\210\210\202\305\306\307        \n\300 &!\207" [nil keywordp #s(hash-table size 4 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:filters-alist 23 :menu-entry 34 :options-alist 45 :translate-alist 56)) error "Unknown keyword: %s" org-export-register-backend record org-export-backend] 17 (#$ . 52069)])
428 (byte-code "\300\301\302\303#\300\207" [function-put org-export-define-derived-backend lisp-indent-function 2] 4)
429 #@442 Collect export options from the current buffer.
430
431 Optional argument BACKEND is an export back-end, as returned by
432 `org-export-create-backend'.
433
434 When optional argument SUBTREEP is non-nil, assume the export is
435 done against the current sub-tree.
436
437 Third optional argument EXT-PLIST is a property list with
438 external parameters overriding Org default settings, but still
439 inferior to file-local settings.
440
441 (fn &optional BACKEND SUBTREEP EXT-PLIST)
442 (defalias 'org-export-get-environment #[768 "\300 \211\203\211@\301@!A@L\210A\266\202\202\210\302\303!\304!\205*\305!$\207" [org-export--list-bound-variables make-local-variable org-combine-plists org-export--get-global-options org-export--get-inbuffer-options org-export--get-subtree-options] 9 (#$ . 54163)])
443 #@246 Parse an OPTIONS line and return values as a plist.
444 Optional argument BACKEND is an export back-end, as returned by,
445 e.g., `org-export-create-backend'.  It specifies which back-end
446 specific items to read, if any.
447
448 (fn OPTIONS &optional BACKEND)
449 (defalias 'org-export--parse-option-keyword #[513 "\301\302\303\304#\203!\301\225\262\305\306\"\307\305\310\"!BB\262\202\262\311\312!\"\302\205[\211\203X\211@\3108\211\203P\313\314#\211\203O\315@A#\262\210\210A\266\202\202/\262\207" [org-export-options-alist 0 nil string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[     ]*" match-string 1 read 2 append org-export-get-all-options assoc-string t plist-put] 13 (#$ . 54937)])
450 #@233 Get export options in subtree at point.
451 Optional argument BACKEND is an export back-end, as returned by,
452 e.g., `org-export-create-backend'.  It specifies back-end used
453 for export.  Return options as a plist.
454
455 (fn &optional BACKEND)
456 (defalias 'org-export--get-subtree-options #[256 "\212\214~\210\304 \203\305 \210\202\306\307!\210\310`\311\312#\211\205 \313\"\262\314\310`\315\312#\2065\316\317    !\210\320\321!)BC\322\323!\n\"\211\211\203\276\211@\211@A@\211\203\265\324\"A\206h\310`\325P\312#BB\262\211\262\211\203\264\326\3218\211\327\267\202\256\330\331\2119\203\206\211\202\237\211\211:\204\225\211;\205\235\332\202\235\211@9\205\235\211@\262 \236A\262\"\202\257\333!\202\257\262#\262\210\266A\266\202\202>\262\266\203*\207" [case-fold-search org-complex-heading-regexp org-export-options-alist org-element-object-restrictions org-at-heading-p org-up-heading-safe org-back-to-heading t org-entry-get "EXPORT_OPTIONS" selective org-export--parse-option-keyword "TITLE" "EXPORT_TITLE" nil looking-at match-string-no-properties 4 append org-export-get-all-options assoc "EXPORT_" plist-put #s(hash-table size 2 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (parse 122 split 168)) org-element-parse-secondary-string keyword plain-text split-string] 18 (#$ . 55636)])
457 #@336 Return current buffer export options, as a plist.
458
459 Optional argument BACKEND, when non-nil, is an export back-end,
460 as returned by, e.g., `org-export-create-backend'.  It specifies
461 which back-end specific options should also be read in the
462 process.
463
464 Assume buffer is in Org mode.  Narrowing, if any, is ignored.
465
466 (fn &optional BACKEND)
467 (defalias 'org-export--get-inbuffer-options #[256 "\305\306\307!    \"\310\311\312\313\314\315\316\"\"\n\244!\"\314C\314C\314C\314C\317\320\321\322\323 !\324\"\325\326%\240\210\211\317\327\330\322\323\f\f\f\f\f\f\f&\331\"\332\333%\240\210\211\242 \205T C!\210\242\211\203\247\211@\334\335\242\"\336\2119\203o\211\202\210\211\211:\204~\211;\205\206\337\202\206\211@9\205\206\211@\262\f\236A\262\"\340\337\341#\210\342\242#\240\266A\266\202\202X\242\262\266\202)\207" [case-fold-search org-export-options-alist org-export-special-keywords buffer-file-name org-element-object-restrictions t append org-export-get-all-options format "^[     ]*#\\+%s:" regexp-opt delq nil mapcar cadr make-byte-code 257 "\301\300\211\203&\211@\211A@\232\203\211@\302\"\204\211B\262\210A\266\202\202\262\207" vconcat vector [nil memql] 8 "\n\n(fn KEYWORD)" 256 "\212\214~\210eb\210\307\302\310\311#\205\312 \211\211:\204 \211;\205(\313\202(\211@9\205(\211@\262\314=\203\315\211;\203>\316\317#\202D\320A@\"\266\202\321\211;\203U\316\317#\202[\320A@\"\266\202\322\267\202\370\323\324\211\310\325\203q\326\202r\327\330\325\331\330##\266\202#\332!\211\203\210\202\213\333!\211\235\204\305\334\335!r\211q\210\336\317\337\340\341!\342\"\343$\216\204\256\344!>\345\346\"c\210\311?\347 \210)\306\242    B!\210*\210\266\202\303\350\303\242\351\300\"\"\240\210\202\303\350\303\242\352\353\354\355\"\320\303\242\352\"\"\356!\357!\266\202D\"\240\210\202\305\242!\211\203\211@\303\360\303\242\361\301\2368\362\363\"\203F\304\242>\204\"\304\304\242B\240\210\320\303\242\"\364    !\2043\211\202A\211\203?\211\365\nQ\202A\262\202\362\366\"\203\222\320\303\242\"\204p\310\325\203b\326\202c\327\330\325\331\330##\266\202\202\320\303\242\"\367    \310\325\203\203\326\202\204\327\330\325\331\330##\266\202Q\202\362\370\"\203\320\320\303\242\"\365    \310\325\203\254\326\202\255\327\330\325\331\330##\266\202Q\310\325\203\302\326\202\303\327\330\325\331\330##\266\202\202\362\371\"\203\346\353\320\303\242\"\372\n!\"\202\373\374\"\203\362\202\375\303\242\"\204\202\320\303\242\"\262#\240\210A\266\202\202\374\210\266\210\202*\207" [re-search-forward nil t org-element-at-point plain-text keyword :key get-text-property 0 plist-get :value #s(hash-table size 3 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ("SETUPFILE" 99 "OPTIONS" 202 "FILETAGS" 216)) org-unbracket-string "\"" replace-regexp-in-string "\\`\\([     ]*\n\\)+" "\\`[     \n ]+" "" "[     \n ]+\\'" org-file-url-p expand-file-name generate-new-buffer " *temp*" make-byte-code "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 file-name-directory org-file-contents noerror org-mode org-combine-plists org-export--parse-option-keyword :filetags append org-split-string ":" copy-sequence delete-dups plist-put 4 eql parse org-string-nw-p "\n" space " " newline split split-string memql (t) plist-member default-directory org-inhibit-startup] 22 "\n\n(fn &optional FILES)" org-element-parse-secondary-string plist-get keyword plain-text org-element-map #[257 "\300\301\302\303#\"\207" [org-element-set-element replace-regexp-in-string "\n" " "] 7 "\n\n(fn S)"] plist-put] 20 (#$ . 56980)])
468 #@251 Return properties related to export process, as a plist.
469 Optional arguments BACKEND, SUBTREEP, VISIBLE-ONLY and BODY-ONLY
470 are like the arguments with the same names of function
471 `org-export-as'.
472
473 (fn &optional BACKEND SUBTREEP VISIBLE-ONLY BODY-ONLY)
474 (defalias 'org-export--get-export-attributes #[1024 "\300\301\302\205\303\205 \304\205\305E\"\306\307\310    !\311\312\313\314\315\316$\257\207" [:export-options delq nil subtree visible-only body-only :back-end :translate-alist org-export-get-all-transcoders :exported-data make-hash-table :test eq :size 4001] 16 (#$ . 60660)])
475 #@61 Return properties related to buffer attributes, as a plist.
476 (defalias 'org-export--get-buffer-attributes #[0 "\300\301\302 !\303\304\302 !F\207" [:input-buffer buffer-name buffer-base-buffer :input-file buffer-file-name] 5 (#$ . 61255)])
477 #@268 Return global export options as a plist.
478 Optional argument BACKEND, if non-nil, is an export back-end, as
479 returned by, e.g., `org-export-create-backend'.  It specifies
480 which back-end specific export options should also be read in the
481 process.
482
483 (fn &optional BACKEND)
484 (defalias 'org-export--get-global-options #[256 "\302\303\304!\"\211\211\203e\211@\211@\305\"\204]\306\307\3108!\3118\312=\203W\313\314\2119\2035\211\202N\211\211:\204D\211;\205L\315\202L\211@9\205L\211@\262    \236A\262\"\202X\211\262#\262\210A\266\202\202\262\207" [org-export-options-alist org-element-object-restrictions nil append org-export-get-all-options plist-member plist-put eval 3 4 parse org-element-parse-secondary-string keyword plain-text] 15 (#$ . 61500)])
485 #@182 Return variables bound from BIND keywords in current buffer.
486 Also look for BIND keywords in setup files.  The return value is
487 an alist where associations are (VARIABLE-NAME VALUE).
488 (defalias 'org-export--list-bound-variables #[0 "\205\301C\211\302\303\304\305\306!\307\"\310\311%\240\210\211\242\301\211\"\237\262\207" [org-export-allow-bind-keywords nil make-byte-code 514 "\304\212\214~\210eb\210\305\306\307\304#\203\306\310 \211\211:\204\"\211;\205*\311\202*\211@9\205*\211@\262\312=\203\302\313\211;\203@\314\315#\202F\316A@\"\266\202\317\211;\203W\314\315#\202]\316A@\"\266\202\320\232\203q\321\322\323\"!B\262\202\301\324\325\211#\326!\211\203\201\202\204\327!\211\235\204\277\330\331!r\211q\210\332\315\333\334\335!\336\"\337$\216\204\246\340!\304\341 \210)\342\343\"c\210\300\242    B\"\262*\210\266\210\210\202    +\207" vconcat vector [case-fold-search default-directory org-inhibit-startup t re-search-forward "^[     ]*#\\+\\(BIND\\|SETUPFILE\\):" nil org-element-at-point plain-text keyword :value get-text-property 0 plist-get :key "BIND" read format "(%s)" org-unbracket-string "\"" org-file-url-p expand-file-name generate-new-buffer " *temp*" make-byte-code "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 file-name-directory org-mode org-file-contents noerror] 14 "\n\n(fn FILES ALIST)"] 8 (#$ . 62275)])
489 #@81 Return BLOB parent or nil.
490 BLOB is the element or object considered.
491
492 (fn BLOB)
493 (defalias 'org-export-get-parent #[257 "\300\211;\203\301\302#\202\303A@\"\207" [:parent get-text-property 0 plist-get] 7 (#$ . 63678)])
494 (put 'org-export-get-parent 'byte-optimizer 'byte-compile-inline-expand)
495 #@613 Extract tree properties from parse tree.
496
497 DATA is the parse tree from which information is retrieved.  INFO
498 is a list holding export options.
499
500 Following tree properties are set or updated:
501
502 `:headline-offset' Offset between true level of headlines and
503            local level.  An offset of -1 means a headline
504            of level 2 should be considered as a level
505            1 headline in the context.
506
507 `:headline-numbering' Alist of all headlines as key and the
508               associated numbering as value.
509
510 `:id-alist' Alist of all ID references as key and associated file
511             as value.
512
513 Return updated plist.
514
515 (fn DATA INFO)
516 (defalias 'org-export--collect-tree-properties #[514 "\300\301#\262\300\302\303\304\"Z#\262\305\306\307\"\310\311\312\313#F\"\207" [plist-put :parse-tree :headline-offset 1 org-export--get-min-level org-combine-plists :headline-numbering org-export--collect-headline-numbering :id-alist org-element-map link #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304\230\205B\305\211;\203+\301\302#\2021\303A@\"\266\202\306!@\211\205@\307!B\266\202\207" [:type get-text-property 0 plist-get "id" :path org-id-find file-relative-name] 7 "\n\n(fn L)"]] 11 (#$ . 63984)])
517 #@178 Return minimum exportable headline's level in DATA.
518 DATA is parsed tree as returned by `org-element-parse-buffer'.
519 OPTIONS is a plist holding export options.
520
521 (fn DATA OPTIONS)
522 (defalias 'org-export--get-min-level #[514 "\3002\241\301\211:\204\302\202\211@9\203\211AA\202\211\262\211\203\222\211@\211\211:\2043\211;\205;\303\202;\211@9\205;\211@\262\304=\203\213\305\211;\203Q\306\307#\202W\310A@\"\266\202\204\213\211\310\311\">\204\213\312\211;\203t\306\307#\202z\310A@\"\266\202^\262\313U\203\213\314\300\313\"\210A\266\202\202\210\211\301U\203\235\313\202\236\211\2620\207" [exit 10000 nil plain-text headline :footnote-section-p get-text-property 0 plist-get :ignore-list :level 1 throw] 11 (#$ . 65202)])
523 #@310 Return numbering of all exportable, numbered headlines in a parse tree.
524
525 DATA is the parse tree.  OPTIONS is the plist holding export
526 options.
527
528 Return an alist whose key is a headline and value is its
529 associated numbering (in the shape of a list of numbers) or nil
530 for a footnotes section.
531
532 (fn DATA OPTIONS)
533 (defalias 'org-export--collect-headline-numbering #[514 "\301\302\"\303\304\305\306\307\310\311        \"\312\"\313\314%$\207" [org-export-max-depth make-vector 0 org-element-map headline make-byte-code 257 "\303\300\"\205{\304\211;\203\305\306#\202\307A@\"\266\202?\205{\310\300\"S\301\311\312\306\n\312T\211\262GW\203tH\262X\203tW\203QB\262U\203a\301TIB\262V\203m\301\306I\210T\262\202.\211\237\266\206B\262\207" vconcat vector [org-export-max-depth org-export-numbered-headline-p :footnote-section-p get-text-property 0 plist-get org-export-get-relative-level -1 nil] 12 "\n\n(fn HEADLINE)"] 13 (#$ . 65965)])
534 #@184 List headlines and inlinetasks with a select tag in their tree.
535 DATA is parsed data as returned by `org-element-parse-buffer'.
536 INFO is a plist holding export options.
537
538 (fn DATA INFO)
539 (defalias 'org-export--selected-trees #[514 "\300\301\302\303\"\"\304\305\306\307\310\311!\312\"\313\314%\302\315\"\"\203%\316\317\320#\202K\321C\321C\321\240\210\211\305\322\323\310\311#\324\"\325\326%\240\210\211\242\321\"\210\242\266\202\207" [cl-mapcan #[257 "\300\301\"\207" [org-tags-expand t] 4 "\n\n(fn TAG)"] plist-get :select-tags cl-some make-byte-code 257 "\211\300\235\207" vconcat vector #1=[] 3 "\n\n(fn TAG)" :filetags org-element-map (headline inlinetask) identity nil 514 "\211:\204\211;\205\304\202\211@9\205\211@\262\211\305>\203\225\306\211;\203.\307\310#\2024\311A@\"\266\202\312\313\314\315\316\317\300!\320\"\321\322%\"\203X\301\323\324\325\326#\301\242#\240\202\220\327=\205\220\211:\204h\330\202u\211@9\203t\211AA\202u\211\262\211\205\216\211@\302\242B\"\210A\266\202\202w\262\262\202\317\211\331=\204\241\211 >\205\317\211:\204\253\330\202\270\211@9\203\267\211AA\202\270\211\262\211\205\315\211@\302\242\"\210A\266\202\202\272\262\207" [org-element-greater-elements plain-text (headline inlinetask) :tags get-text-property 0 plist-get cl-some make-byte-code 257 "\211\300\235\207" vconcat vector #1# 3 "\n\n(fn TAG)" append org-element-map (headline inlinetask) identity headline nil org-data] 11 "\n\n(fn DATA GENEALOGY)"] 14 (#$ . 66942)])
540 #@367 Non-nil when element or object DATUM should be skipped during export.
541 OPTIONS is the plist holding export options.  SELECTED, when
542 non-nil, is a list of headlines or inlinetasks belonging to
543 a tree with a select tag.  EXCLUDED is a list of tags, as
544 strings.  Any headline or inlinetask marked with one of those is
545 not exported.
546
547 (fn DATUM OPTIONS SELECTED EXCLUDED)
548 (defalias 'org-export--skip-p #[1028 "\211:\204\211;\205\301\202\211@9\205\211@\262\302\303\"\203\210\304\"\305\211;\2033\306\307#\2029\310A@\"\266\202\206?\307\305\211;\203O\306\307#\202U\310A@\"\266\202\206[\307\203\202\305]\311];\203u\312\313$\210\202\200A\314A@#\240\210\266\266\315\202F\316\317\"\203\227\310\320\"?\202F\316\321\"\203\337\310\322\"\211?\206\332\211:\205\332\323\211;\203\274\306\307#\202\302\310A@\"\266\202@\324=\203\323\325A\"\202\330\325\"?\262\262\202F\316\326\"\203\356\310\327\"?\202F\302\330\"\203\375\310\331\"?\202F\302\332\"\203\354\310\333\"\334\211;\203\306\307#\202\310A@\"\266\202\335\211;\2030\306\307#\2026\310A@\"\266\202\310\336\"\337        \313\315$    \211:\204U\211;\205]\301\202]\211@9\205]\211@\262\340=\203m\310    \341\"?\206\347\342\343\344\345\346\347\f!\350\"\351\352%\"\206\347\203\216    >?\206\347\353\n\211;\203\236\306\307#\202\244\310A@\"\266\202\206\347\204\310\354\n\211;\203\275\306\307#\202\303\310A@\"\266\202\206\347\205\347?\206\347\355>\203\336=?\206\347:\205\347\235?\266\205\202F\302\356\"\203\373\310\357\"?\202F\316\360\"\2034\310\361\"\211\204\315\202/\211:\205/\325\362\211;\203$\306\307#\202*\310A@\"\266\202\"?\262\202F\316\363\"\203C\310\364\"?\202F\316\365\"\203R\310\361\"?\202F\316\366\"\203a\310\367\"?\202F\316\370\"\203p\310\371\"?\202F\316\372\"\203\207\373\374!!\205F\375\"\202F\316\376\"\203\225\377\"\202F\316\201@\"\205F\201A!\211\211:\204\262\211;\205\272\301\202\272\211@9\205\272\211@\262\201B>\205\331\201C\301\201D\201@\"B\201E\315%?\262\205F\310\201F\"\302\201G\"\203\361\315\202D\316\201H\"\203\201I\211;\203\f\306\307#\202\310A@\"\266\202\201J>?\202D\316\201K\"\205D\201I\211;\2037\306\307#\202=\310A@\"\266\202\201L>?\262\207" [org-element-all-objects plain-text memql (comment comment-block) org-export-get-previous-element :post-blank get-text-property 0 plist-get 1 org-add-props nil plist-put t eql clock :with-clocks drawer :with-drawers :drawer-name not member-ignore-case fixed-width :with-fixed-width (footnote-definition footnote-reference) :with-footnotes (headline inlinetask) :with-tasks :todo-keyword :todo-type :with-archived-trees org-export-get-tags inlinetask :with-inlinetasks cl-some make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn TAG)" :commentedp :archivedp (todo done) (latex-environment latex-fragment) :with-latex node-property :with-properties :key planning :with-planning property-drawer statistics-cookie :with-statistics-cookies table :with-tables table-cell org-export-table-has-special-column-p org-export-get-parent-table org-export-first-sibling-p table-row org-export-table-row-is-special-p timestamp org-export-get-parent-element (paragraph verse-block) org-element-map remq #[257 "\211;?\206    \300!\207" [org-string-nw-p] 3 "\n\n(fn OBJ)"] :with-timestamps (nil) active :type (active active-range) inactive (inactive inactive-range)] 17 (#$ . 68476)])
549 #@103 Return appropriate transcoder for BLOB.
550 INFO is a plist containing export directives.
551
552 (fn BLOB INFO)
553 (defalias 'org-export-transcoder #[514 "\211:\204\211;\205\300\202\211@9\205\211@\262\211\301=\203#\302\2023\211\303\304\"\236A\305!\2051\211\262\207" [plain-text org-data #[771 "\207" [] 4 "\n\n(fn DATUM CONTENTS INFO)"] plist-get :translate-alist functionp] 7 (#$ . 72005)])
554 #@189 Convert DATA into current back-end format.
555
556 DATA is a parse tree, an element or an object or a secondary
557 string.  INFO is a plist holding export options.
558
559 Return a string.
560
561 (fn DATA INFO)
562 (defalias 'org-export-data #[514 "\305\306\307\"\"\206\377\211:\204\211;\205!\310\202!\211@9\205!\211@\262\311\211;\2033\312\313#\2029\306A@\"\266\203\306\314\">\203H\315\202\363\310=\203o\316\306\317\"\320\"\211\203f\211\"\202h\262#\202\363\204\207\321\322\323\324\325\326!\327\"\330\331%\332#\202\363\211:\204\221\315\202\236\211@9\203\235\211AA\202\236\211\262\203\314\333=\203\306\334\"\333=\203\335\211;\203\301\312\313#\202\307\306A@\"\266\202\203\320\"\336!\203\3371\344\211\315#0\202 \306\340\"\211\204\365\341\342A@\"\202    \211\343=\203\344\345\346A@\"\"\202    \315\262\262\206\347=\205\332\262\202\363\320\"\211\205\361>\211?\205/    >\321\322\323\324\325\326 !\350\"\330\351%\204E\203J\202\222\352    \353=\205\221\211:\204_\315\202l\211@9\203k\211AA\202l\211\262@ =\205\221\211:\204\205\211;\205\215\310\202\215\211@9\205\215\211@\262\354>\"\211:\204\233\315\202\250\211@9\203\247\211AA\202\250\211\262\332#\3551\305\204\273\202\276\356!    #0\202\357\306\340\"\211\204\327\341\342A@\"\202\353\211\343=\203\352\344\345\346A@\"\n\"\202\353\315\262\262\266\203\262\357\204\375\332\202\367\360>\203\202\367\316\306\361\345\362\n\"!\"\363    \211;\203#\312\313#\202)\306A@\"\266\202\206/\313    \211:\204B\211;\205J\310\202J\211@9\205J\211@\262\206g\311\211;\203_\312\313#\202e\306A@\"\266\202\n>\203q\364\202\327 >\203{\365\202\327\366=\203\205\365\202\327\310=\203\217\364\202\327\204\227\364\202\327\211\204\237\365\202\327\211\211:\204\256\211;\205\266\310\202\266\211@9\205\266\211@\262\211\204\300\364\202\325\211\f>\203\312\364\202\325\367!\203\324\364\202\325\365\262\266\202\266\202\364=\203\351\370\371\"P\202\362\356!\370\372\"P\262#\306\307\"#\266\203\207" [org-element-greater-elements org-element-recursive-objects org-element-all-objects org-element-all-elements org-element-object-containers gethash plist-get :exported-data plain-text :parent get-text-property 0 :ignore-list nil org-export-filter-apply-functions :filter-plain-text org-export-transcoder mapconcat make-byte-code 257 "\301\300\"\207" vconcat vector [org-export-data] 4 "\n\n(fn OBJ)" "" headline :with-archived-trees :archivedp functionp (org-link-broken) :with-broken-links user-error "Unable to resolve link: %S" mark org-export-data format "[BROKEN LINK: %s]" export-snippet [org-export-data] "\n\n(fn ELEMENT)" org-element-normalize-contents paragraph (footnote-definition item) (org-link-broken) org-element-normalize-string puthash (org-data plain-text nil) intern ":filter-%s" :post-blank object element org-data org-element-secondary-p make-string 32 10] 19 (#$ . 72408)])
563 #@309 Convert DATA into BACKEND format.
564
565 DATA is an element, an object, a secondary string or a string.
566 BACKEND is a symbol.  INFO is a plist used as a communication
567 channel.
568
569 Unlike to `org-export-with-backend', this function will
570 recursively convert DATA using BACKEND translation table.
571
572 (fn DATA BACKEND INFO)
573 (defalias 'org-export-data-with-backend #[771 "9\203\n\300!\262\301\302\303\304!\305\306\307\310\311\312$\257\"\313\"\314\315\316\315\"#\210\207" [org-export-get-backend org-combine-plists :back-end :translate-alist org-export-get-all-transcoders :exported-data make-hash-table :test eq :size 401 org-export-data plist-put :internal-references plist-get] 15 (#$ . 75399)])
574 #@283 Expand a parsed element or object to its original state.
575
576 BLOB is either an element or an object.  CONTENTS is its
577 contents, as a string or nil.
578
579 When optional argument WITH-AFFILIATED is non-nil, add affiliated
580 keywords before output.
581
582 (fn BLOB CONTENTS &optional WITH-AFFILIATED)
583 (defalias 'org-export-expand #[770 "\211:\204\211;\205\303\202\211@9\205\211@\262\205\317\304\211:\204.\211;\2056\303\2026\211@9\2056\211@\262\206S\305\211;\203K\306\307#\202Q\310A@\"\266\202>\203]\311\202\303    >\203g\312\202\303\313=\203q\312\202\303\303=\203{\311\202\303\204\203\311\202\303\211\204\213\312\202\303\211\211:\204\232\211;\205\242\303\202\242\211@9\205\242\211@\262\211\204\254\311\202\301\211\n>\203\266\311\202\301\314!\203\300\311\202\301\312\262\266\202\266\202\312=\205\317\315!\316\317\320\"!\"P\207" [org-element-all-objects org-element-all-elements org-element-object-containers plain-text nil :parent get-text-property 0 plist-get object element org-data org-element-secondary-p org-element--interpret-affiliated-keywords intern format "org-element-%s-interpreter"] 13 (#$ . 76100)])
584 #@380 Hook run at the beginning of the export process.
585
586 This is run before include keywords and macros are expanded and
587 Babel code blocks executed, on a copy of the original buffer
588 being exported.  Visibility and narrowing are preserved.  Point
589 is at the beginning of the buffer.
590
591 Every function in this hook will be called with one argument: the
592 back-end currently used, as a symbol.
593 (defvar org-export-before-processing-hook nil (#$ . 77262))
594 #@378 Hook run before parsing an export buffer.
595
596 This is run after include keywords and macros have been expanded
597 and Babel code blocks executed, on a copy of the original buffer
598 being exported.  Visibility and narrowing are preserved.  Point
599 is at the beginning of the buffer.
600
601 Every function in this hook will be called with one argument: the
602 back-end currently used, as a symbol.
603 (defvar org-export-before-parsing-hook nil (#$ . 77708))
604 #@214 List of functions applied to the export options.
605 Each filter is called with two arguments: the export options, as
606 a plist, and the back-end, as a symbol.  It must return
607 a property list containing export options.
608 (defvar org-export-filter-options-functions nil (#$ . 78149))
609 #@274 List of functions applied to the parsed tree.
610 Each filter is called with three arguments: the parse tree, as
611 returned by `org-element-parse-buffer', the back-end, as
612 a symbol, and the communication channel, as a plist.  It must
613 return the modified parse tree to transcode.
614 (defvar org-export-filter-parse-tree-functions nil (#$ . 78431))
615 #@228 List of functions applied to plain text.
616 Each filter is called with three arguments: a string which
617 contains no Org syntax, the back-end, as a symbol, and the
618 communication channel, as a plist.  It must return a string or
619 nil.
620 (defvar org-export-filter-plain-text-functions nil (#$ . 78776))
621 #@233 List of functions applied to transcoded body.
622 Each filter is called with three arguments: a string which
623 contains no Org syntax, the back-end, as a symbol, and the
624 communication channel, as a plist.  It must return a string or
625 nil.
626 (defvar org-export-filter-body-functions nil (#$ . 79075))
627 #@266 List of functions applied to the transcoded string.
628 Each filter is called with three arguments: the full transcoded
629 string, the back-end, as a symbol, and the communication channel,
630 as a plist.  It must return a string that will be used as the
631 final export output.
632 (defvar org-export-filter-final-output-functions nil (#$ . 79373))
633 #@236 List of functions applied to a transcoded babel-call.
634 Each filter is called with three arguments: the transcoded data,
635 as a string, the back-end, as a symbol, and the communication
636 channel, as a plist.  It must return a string or nil.
637 (defvar org-export-filter-babel-call-functions nil (#$ . 79712))
638 #@238 List of functions applied to a transcoded center block.
639 Each filter is called with three arguments: the transcoded data,
640 as a string, the back-end, as a symbol, and the communication
641 channel, as a plist.  It must return a string or nil.
642 (defvar org-export-filter-center-block-functions nil (#$ . 80019))
643 #@231 List of functions applied to a transcoded clock.
644 Each filter is called with three arguments: the transcoded data,
645 as a string, the back-end, as a symbol, and the communication
646 channel, as a plist.  It must return a string or nil.
647 (defvar org-export-filter-clock-functions nil (#$ . 80330))
648 #@236 List of functions applied to a transcoded diary-sexp.
649 Each filter is called with three arguments: the transcoded data,
650 as a string, the back-end, as a symbol, and the communication
651 channel, as a plist.  It must return a string or nil.
652 (defvar org-export-filter-diary-sexp-functions nil (#$ . 80627))
653 #@232 List of functions applied to a transcoded drawer.
654 Each filter is called with three arguments: the transcoded data,
655 as a string, the back-end, as a symbol, and the communication
656 channel, as a plist.  It must return a string or nil.
657 (defvar org-export-filter-drawer-functions nil (#$ . 80934))
658 #@239 List of functions applied to a transcoded dynamic-block.
659 Each filter is called with three arguments: the transcoded data,
660 as a string, the back-end, as a symbol, and the communication
661 channel, as a plist.  It must return a string or nil.
662 (defvar org-export-filter-dynamic-block-functions nil (#$ . 81233))
663 #@239 List of functions applied to a transcoded example-block.
664 Each filter is called with three arguments: the transcoded data,
665 as a string, the back-end, as a symbol, and the communication
666 channel, as a plist.  It must return a string or nil.
667 (defvar org-export-filter-example-block-functions nil (#$ . 81546))
668 #@238 List of functions applied to a transcoded export-block.
669 Each filter is called with three arguments: the transcoded data,
670 as a string, the back-end, as a symbol, and the communication
671 channel, as a plist.  It must return a string or nil.
672 (defvar org-export-filter-export-block-functions nil (#$ . 81859))
673 #@237 List of functions applied to a transcoded fixed-width.
674 Each filter is called with three arguments: the transcoded data,
675 as a string, the back-end, as a symbol, and the communication
676 channel, as a plist.  It must return a string or nil.
677 (defvar org-export-filter-fixed-width-functions nil (#$ . 82170))
678 #@245 List of functions applied to a transcoded footnote-definition.
679 Each filter is called with three arguments: the transcoded data,
680 as a string, the back-end, as a symbol, and the communication
681 channel, as a plist.  It must return a string or nil.
682 (defvar org-export-filter-footnote-definition-functions nil (#$ . 82479))
683 #@234 List of functions applied to a transcoded headline.
684 Each filter is called with three arguments: the transcoded data,
685 as a string, the back-end, as a symbol, and the communication
686 channel, as a plist.  It must return a string or nil.
687 (defvar org-export-filter-headline-functions nil (#$ . 82804))
688 #@241 List of functions applied to a transcoded horizontal-rule.
689 Each filter is called with three arguments: the transcoded data,
690 as a string, the back-end, as a symbol, and the communication
691 channel, as a plist.  It must return a string or nil.
692 (defvar org-export-filter-horizontal-rule-functions nil (#$ . 83107))
693 #@236 List of functions applied to a transcoded inlinetask.
694 Each filter is called with three arguments: the transcoded data,
695 as a string, the back-end, as a symbol, and the communication
696 channel, as a plist.  It must return a string or nil.
697 (defvar org-export-filter-inlinetask-functions nil (#$ . 83424))
698 #@230 List of functions applied to a transcoded item.
699 Each filter is called with three arguments: the transcoded data,
700 as a string, the back-end, as a symbol, and the communication
701 channel, as a plist.  It must return a string or nil.
702 (defvar org-export-filter-item-functions nil (#$ . 83731))
703 #@233 List of functions applied to a transcoded keyword.
704 Each filter is called with three arguments: the transcoded data,
705 as a string, the back-end, as a symbol, and the communication
706 channel, as a plist.  It must return a string or nil.
707 (defvar org-export-filter-keyword-functions nil (#$ . 84026))
708 #@243 List of functions applied to a transcoded latex-environment.
709 Each filter is called with three arguments: the transcoded data,
710 as a string, the back-end, as a symbol, and the communication
711 channel, as a plist.  It must return a string or nil.
712 (defvar org-export-filter-latex-environment-functions nil (#$ . 84327))
713 #@239 List of functions applied to a transcoded node-property.
714 Each filter is called with three arguments: the transcoded data,
715 as a string, the back-end, as a symbol, and the communication
716 channel, as a plist.  It must return a string or nil.
717 (defvar org-export-filter-node-property-functions nil (#$ . 84648))
718 #@235 List of functions applied to a transcoded paragraph.
719 Each filter is called with three arguments: the transcoded data,
720 as a string, the back-end, as a symbol, and the communication
721 channel, as a plist.  It must return a string or nil.
722 (defvar org-export-filter-paragraph-functions nil (#$ . 84961))
723 #@236 List of functions applied to a transcoded plain-list.
724 Each filter is called with three arguments: the transcoded data,
725 as a string, the back-end, as a symbol, and the communication
726 channel, as a plist.  It must return a string or nil.
727 (defvar org-export-filter-plain-list-functions nil (#$ . 85266))
728 #@234 List of functions applied to a transcoded planning.
729 Each filter is called with three arguments: the transcoded data,
730 as a string, the back-end, as a symbol, and the communication
731 channel, as a plist.  It must return a string or nil.
732 (defvar org-export-filter-planning-functions nil (#$ . 85573))
733 #@241 List of functions applied to a transcoded property-drawer.
734 Each filter is called with three arguments: the transcoded data,
735 as a string, the back-end, as a symbol, and the communication
736 channel, as a plist.  It must return a string or nil.
737 (defvar org-export-filter-property-drawer-functions nil (#$ . 85876))
738 #@243 List of functions applied to a transcoded quote block.
739 Each filter is called with three arguments: the transcoded quote
740 data, as a string, the back-end, as a symbol, and the
741 communication channel, as a plist.  It must return a string or
742 nil.
743 (defvar org-export-filter-quote-block-functions nil (#$ . 86193))
744 #@233 List of functions applied to a transcoded section.
745 Each filter is called with three arguments: the transcoded data,
746 as a string, the back-end, as a symbol, and the communication
747 channel, as a plist.  It must return a string or nil.
748 (defvar org-export-filter-section-functions nil (#$ . 86508))
749 #@239 List of functions applied to a transcoded special block.
750 Each filter is called with three arguments: the transcoded data,
751 as a string, the back-end, as a symbol, and the communication
752 channel, as a plist.  It must return a string or nil.
753 (defvar org-export-filter-special-block-functions nil (#$ . 86809))
754 #@235 List of functions applied to a transcoded src-block.
755 Each filter is called with three arguments: the transcoded data,
756 as a string, the back-end, as a symbol, and the communication
757 channel, as a plist.  It must return a string or nil.
758 (defvar org-export-filter-src-block-functions nil (#$ . 87122))
759 #@231 List of functions applied to a transcoded table.
760 Each filter is called with three arguments: the transcoded data,
761 as a string, the back-end, as a symbol, and the communication
762 channel, as a plist.  It must return a string or nil.
763 (defvar org-export-filter-table-functions nil (#$ . 87427))
764 #@236 List of functions applied to a transcoded table-cell.
765 Each filter is called with three arguments: the transcoded data,
766 as a string, the back-end, as a symbol, and the communication
767 channel, as a plist.  It must return a string or nil.
768 (defvar org-export-filter-table-cell-functions nil (#$ . 87724))
769 #@235 List of functions applied to a transcoded table-row.
770 Each filter is called with three arguments: the transcoded data,
771 as a string, the back-end, as a symbol, and the communication
772 channel, as a plist.  It must return a string or nil.
773 (defvar org-export-filter-table-row-functions nil (#$ . 88031))
774 #@237 List of functions applied to a transcoded verse block.
775 Each filter is called with three arguments: the transcoded data,
776 as a string, the back-end, as a symbol, and the communication
777 channel, as a plist.  It must return a string or nil.
778 (defvar org-export-filter-verse-block-functions nil (#$ . 88336))
779 #@233 List of functions applied to transcoded bold text.
780 Each filter is called with three arguments: the transcoded data,
781 as a string, the back-end, as a symbol, and the communication
782 channel, as a plist.  It must return a string or nil.
783 (defvar org-export-filter-bold-functions nil (#$ . 88645))
784 #@233 List of functions applied to transcoded code text.
785 Each filter is called with three arguments: the transcoded data,
786 as a string, the back-end, as a symbol, and the communication
787 channel, as a plist.  It must return a string or nil.
788 (defvar org-export-filter-code-functions nil (#$ . 88943))
789 #@232 List of functions applied to a transcoded entity.
790 Each filter is called with three arguments: the transcoded data,
791 as a string, the back-end, as a symbol, and the communication
792 channel, as a plist.  It must return a string or nil.
793 (defvar org-export-filter-entity-functions nil (#$ . 89241))
794 #@240 List of functions applied to a transcoded export-snippet.
795 Each filter is called with three arguments: the transcoded data,
796 as a string, the back-end, as a symbol, and the communication
797 channel, as a plist.  It must return a string or nil.
798 (defvar org-export-filter-export-snippet-functions nil (#$ . 89540))
799 #@244 List of functions applied to a transcoded footnote-reference.
800 Each filter is called with three arguments: the transcoded data,
801 as a string, the back-end, as a symbol, and the communication
802 channel, as a plist.  It must return a string or nil.
803 (defvar org-export-filter-footnote-reference-functions nil (#$ . 89855))
804 #@243 List of functions applied to a transcoded inline-babel-call.
805 Each filter is called with three arguments: the transcoded data,
806 as a string, the back-end, as a symbol, and the communication
807 channel, as a plist.  It must return a string or nil.
808 (defvar org-export-filter-inline-babel-call-functions nil (#$ . 90178))
809 #@242 List of functions applied to a transcoded inline-src-block.
810 Each filter is called with three arguments: the transcoded data,
811 as a string, the back-end, as a symbol, and the communication
812 channel, as a plist.  It must return a string or nil.
813 (defvar org-export-filter-inline-src-block-functions nil (#$ . 90499))
814 #@235 List of functions applied to transcoded italic text.
815 Each filter is called with three arguments: the transcoded data,
816 as a string, the back-end, as a symbol, and the communication
817 channel, as a plist.  It must return a string or nil.
818 (defvar org-export-filter-italic-functions nil (#$ . 90818))
819 #@240 List of functions applied to a transcoded latex-fragment.
820 Each filter is called with three arguments: the transcoded data,
821 as a string, the back-end, as a symbol, and the communication
822 channel, as a plist.  It must return a string or nil.
823 (defvar org-export-filter-latex-fragment-functions nil (#$ . 91120))
824 #@236 List of functions applied to a transcoded line-break.
825 Each filter is called with three arguments: the transcoded data,
826 as a string, the back-end, as a symbol, and the communication
827 channel, as a plist.  It must return a string or nil.
828 (defvar org-export-filter-line-break-functions nil (#$ . 91435))
829 #@230 List of functions applied to a transcoded link.
830 Each filter is called with three arguments: the transcoded data,
831 as a string, the back-end, as a symbol, and the communication
832 channel, as a plist.  It must return a string or nil.
833 (defvar org-export-filter-link-functions nil (#$ . 91742))
834 #@238 List of functions applied to a transcoded radio-target.
835 Each filter is called with three arguments: the transcoded data,
836 as a string, the back-end, as a symbol, and the communication
837 channel, as a plist.  It must return a string or nil.
838 (defvar org-export-filter-radio-target-functions nil (#$ . 92037))
839 #@243 List of functions applied to a transcoded statistics-cookie.
840 Each filter is called with three arguments: the transcoded data,
841 as a string, the back-end, as a symbol, and the communication
842 channel, as a plist.  It must return a string or nil.
843 (defvar org-export-filter-statistics-cookie-functions nil (#$ . 92348))
844 #@243 List of functions applied to transcoded strike-through text.
845 Each filter is called with three arguments: the transcoded data,
846 as a string, the back-end, as a symbol, and the communication
847 channel, as a plist.  It must return a string or nil.
848 (defvar org-export-filter-strike-through-functions nil (#$ . 92669))
849 #@235 List of functions applied to a transcoded subscript.
850 Each filter is called with three arguments: the transcoded data,
851 as a string, the back-end, as a symbol, and the communication
852 channel, as a plist.  It must return a string or nil.
853 (defvar org-export-filter-subscript-functions nil (#$ . 92987))
854 #@237 List of functions applied to a transcoded superscript.
855 Each filter is called with three arguments: the transcoded data,
856 as a string, the back-end, as a symbol, and the communication
857 channel, as a plist.  It must return a string or nil.
858 (defvar org-export-filter-superscript-functions nil (#$ . 93292))
859 #@232 List of functions applied to a transcoded target.
860 Each filter is called with three arguments: the transcoded data,
861 as a string, the back-end, as a symbol, and the communication
862 channel, as a plist.  It must return a string or nil.
863 (defvar org-export-filter-target-functions nil (#$ . 93601))
864 #@235 List of functions applied to a transcoded timestamp.
865 Each filter is called with three arguments: the transcoded data,
866 as a string, the back-end, as a symbol, and the communication
867 channel, as a plist.  It must return a string or nil.
868 (defvar org-export-filter-timestamp-functions nil (#$ . 93900))
869 #@238 List of functions applied to transcoded underline text.
870 Each filter is called with three arguments: the transcoded data,
871 as a string, the back-end, as a symbol, and the communication
872 channel, as a plist.  It must return a string or nil.
873 (defvar org-export-filter-underline-functions nil (#$ . 94205))
874 #@237 List of functions applied to transcoded verbatim text.
875 Each filter is called with three arguments: the transcoded data,
876 as a string, the back-end, as a symbol, and the communication
877 channel, as a plist.  It must return a string or nil.
878 (defvar org-export-filter-verbatim-functions nil (#$ . 94513))
879 #@553 Call every function in FILTERS.
880
881 Functions are called with three arguments: a value, the export
882 back-end name and the communication channel.  First function in
883 FILTERS is called with VALUE as its first argument.  Second
884 function in FILTERS is called with the previous result as its
885 value, etc.
886
887 Functions returning nil are skipped.  Any function returning the
888 empty string ends the process, which returns the empty string.
889
890 Call is done in a LIFO fashion, to be sure that developer
891 specified filters, if any, are called first.
892
893 (fn FILTERS VALUE INFO)
894 (defalias 'org-export-filter-apply-functions #[771 "\3012O\302\303\"\211\205\304!>\204\305\306\307D\"\210\211\310H\211\203I\211@\211#\211\203A\211\311\267\202>\312\301\313\"\210\202A\211\262\210A\266\202\202\262\266\2020\207" [cl-struct-org-export-backend-tags :exit plist-get :back-end type-of signal wrong-type-argument org-export-backend 1 #s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (#1="" 54)) throw #1#] 11 (#$ . 94819)])
895 #@169 Install filters properties in communication channel.
896 INFO is a plist containing the current communication channel.
897 Return the updated communication channel.
898
899 (fn INFO)
900 (defalias 'org-export-install-filters #[257 "\301\211\203/\211@\211@\302\"AJ\303\304<\203\202!C\"#\262\266A\266\202\202\210\305\302\306\"!\211\203l\211@\211@A\211\203c\303:\204W\302    \"B\202`\304\302\n\"\"#\262\266A\266\202\2026\210\307\"\207" [org-export-filters-alist nil plist-get plist-put append org-export-get-all-filters :back-end org-combine-plists] 14 (#$ . 95875)])
901 #@111 Return a copy of the current buffer.
902 The copy preserves Org buffer-local variables, visibility and
903 narrowing.
904 (defalias 'org-export-copy-buffer #[0 "\300p!\301\302 !r\211q\210 \210\303\304!\210)\207" [org-export--generate-copy-script generate-new-buffer buffer-name set-buffer-modified-p nil] 4 (#$ . 96468)])
905 #@209 Apply BODY in a copy of the current buffer.
906 The copy preserves local variables, visibility and contents of
907 the original buffer.  Point is at the beginning of the buffer
908 when BODY is applied.
909
910 (fn &rest BODY)
911 (defalias 'org-export-with-buffer-copy '(macro . #[128 "\300\301!\302\303BC\304\305\306\307BF\310\311D\307\305\312BB\313    DEEEE\207" [make-symbol "--buf-copy" let ((org-export-copy-buffer)) unwind-protect with-current-buffer (goto-char (point-min)) progn and buffer-live-p ((restore-buffer-modified-p nil)) kill-buffer] 12 (#$ . 96786)]))
912 (put 'org-export-with-buffer-copy 'edebug-form-spec t)
913 #@422 Generate a function duplicating BUFFER.
914
915 The copy will preserve local variables, visibility, contents and
916 narrowing of the original buffer.  If a region was active in
917 BUFFER, contents will be narrowed to that region instead.
918
919 The resulting function can be evaluated at a later time, from
920 another buffer, effectively cloning the original buffer there.
921
922 The function assumes BUFFER's major mode is `org-mode'.
923
924 (fn BUFFER)
925 (defalias 'org-export--generate-copy-script #[257 "r\211q\210\301\302\303\304\305\306\307 \302\310\311 !\211\203j\211@\211:\203c\211@A>\204a\312>\204<\236\204<\313\314\315!\"\203a\211\203S\3161N\317\320\321\"!0\202P\210\302\203a\322\323\324DD\324DEB\262\266A\266\202\202\262\266\202\325\212\214~\210\326ed\"*D\327 \203\210\330\331 \332 E\202\214\330edE\333`DE\302\334ed\"\211\203\275\211@\335\336\"\211\203\265\337\340\341!\342!E\343\324DFB\262\210A\266\202\202\225\262\262#BBBE)\207" [org-export-ignored-local-variables lambda nil let ((inhibit-modification-hooks t)) (let ((org-mode-hook nil) (org-inhibit-startup t)) (org-mode)) append org-export--list-bound-variables buffer-local-variables buffer-base-buffer (default-directory buffer-file-name buffer-file-coding-system) string-match "^\\(org-\\|orgtbl-\\)" symbol-name (error) read format "%S" set make-local-variable quote insert buffer-substring-no-properties org-region-active-p narrow-to-region region-beginning region-end goto-char overlays-in overlay-get invisible overlay-put make-overlay overlay-start overlay-end 'invisible] 18 (#$ . 97403)])
926 #@96 Delete commented trees and commented inlinetasks in the buffer.
927 Narrowing, if any, is ignored.
928 (defalias 'org-export--delete-comment-trees #[0 "\212\214~\210eb\210\303    \304\nQ\305\306\303#\205e\307 \310\211;\203&\311\312#\202,\313A@\"\266\202\203a\314\211;\203@\311\312#\202F\313A@\"\266\202\315\211;\203W\311\312#\202]\313A@\"\266\202|\210\210\202 )\262*\207" [case-fold-search org-outline-regexp-bol org-comment-string t ".*" re-search-forward nil org-element-at-point :commentedp get-text-property 0 plist-get :begin :end] 9 (#$ . 98983)])
929 #@254 Prune non exportable elements from DATA.
930 DATA is the parse tree to traverse.  INFO is the plist holding
931 export info.  Also set `:ignore-list' in INFO to a list of
932 objects which should be ignored during export, but not removed
933 from tree.
934
935 (fn DATA INFO)
936 (defalias 'org-export--prune-tree #[514 "\301C\301C\301C\301C\301\301\240\210\302\"\240\210\303\304\305    \306\"\"\240\210\307\310\311\312\313     %\314\"\315\316%\240\210\317\320\321#\262\242\203\204\211:\204Q\301\202^\211@9\203]\211AA\202^\211\262@\211\211:\204p\211;\205x\322\202x\211@9\205x\211@\262\323=\203\203\324!\210\210\242!\210\325\326\305\327\"!\"\211\203\263\211@\3308\331=\203\254\242\305    @\"!\210A\266\202\202\224\210\332\"\242!\210\333    \"\266\334\335\242#\207" [org-export-options-alist nil org-export--selected-trees cl-mapcan #[257 "\300\301\"\207" [org-tags-expand t] 4 "\n\n(fn TAG)"] plist-get :exclude-tags make-byte-code 257 "\211\205\330\211\211:\204\211;\205\306\202\211@9\205\211@\262\307\300\302\242\303\242$\203=\211\310>\2037\301\301\242B\240\202\326\311!\202\326\211\312=\203\210\313\300\314\"\312=\203\210\315\211;\203[\316\317#\202a\313A@\"\266\202\203\210\320\203\203@9\203\203A\203A\241\210\202\203\244\210\266\202\246\321\304\242\211:\204\225\320\202\242\211@9\203\241\211AA\202\242\211\262\"\210\211 \236A\211\205\324\211@\321\304\242\211;\203\303\316\317#\202\311\313A@\"\266\202\"\210A\266\202\202\252\262\262\207" vconcat vector [org-element-secondary-value-alist plain-text org-export--skip-p (table-cell table-row) org-element-extract-element headline plist-get :with-archived-trees :archivedp get-text-property 0 nil mapc] 12 "\n\n(fn DATA)" org-element-map (footnote-definition footnote-reference) #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\207\302\211;\203.\303\304#\2024\305A@\"\266\202\306=\203V\307\211;\203J\303\304#\202P\305A@\"\266\202\203V\207\310\207" [plain-text footnote-definition :type get-text-property 0 plist-get inline :label nil] 7 "\n\n(fn F)"] plain-text section org-element-extract-element append org-export-get-all-options :back-end 4 parse org-export--missing-definitions org-export--install-footnote-definitions plist-put :ignore-list] 18 (#$ . 99560)])
937 #@188 List footnote definitions missing from TREE.
938 Missing definitions are searched within DEFINITIONS, which is
939 a list of footnote definitions or in the widened buffer.
940
941 (fn TREE DEFINITIONS)
942 (defalias 'org-export--missing-definitions #[514 "\300\301\211\211\302\303\304#\301!\211\2037\211@\211\235\2040\211\235\203*\211B\262\2020\211B\262A\266\202\202\266\203\211A\262\242\305\306\307\310\311\312!\313\"\314\315%\"\206\340\316!\211:\205\327\211A\211:\205\325\211@\211\212\214~\210\211b\210\317 \211\211:\204\201\211;\205\211\320\202\211\211@9\205\211\211@\262\321=\203\224\211\202\316\214\322\211;\203\244\323\324#\202\252\325A@\"\266\202\326\211;\203\273\323\324#\202\301\325A@\"\266\202}\210\302\327 \330\331\301\332%)\262*\262\262\262\262\206\340\333\334\"B\262\211B\262!\211\203\211@\211\235\204\211\235\204\211B\262A\266\202\202\355\266\2029\335\336\"\207" [#[257 "\300\301\302#\207" [org-element-map footnote-reference #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\2053\305\211;\203+\301\302#\2021\303A@\"\266\202\207" [:type get-text-property 0 plist-get standard :label] 7 "\n\n(fn REFERENCE)"]] 5 "\n\n(fn DATA)"] nil org-element-map (footnote-reference footnote-definition) #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\204:\302\211;\203-\303\304#\2023\305A@\"\266\202\306=\205Q\307\211;\203I\303\304#\202O\305A@\"\266\202\207" [plain-text footnote-definition :type get-text-property 0 plist-get inline :label] 7 "\n\n(fn F)"] cl-some make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\205\211\207" vconcat vector [:label get-text-property 0 plist-get] 7 "\n\n(fn D)" org-footnote-get-definition org-element-context plain-text footnote-reference :begin get-text-property 0 plist-get :end org-element-parse-buffer footnote-definition identity t user-error "Definition not found for footnote %s" mapcar #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\207\302\211;\203.\303\304#\2024\305A@\"\266\202\306\307\301\302\310BB\211:\204H\311\202U\211@9\203T\211AA\202U\211\262$\207" [plain-text footnote-definition :label get-text-property 0 plist-get apply org-element-create (:post-blank 1) nil] 8 "\n\n(fn D)"]] 19 (#$ . 101911)])
943 #@433 Install footnote definitions in tree.
944
945 DEFINITIONS is the list of footnote definitions to install.  TREE
946 is the parse tree.
947
948 If there is a footnote section in TREE, definitions found are
949 appended to it.  If `org-footnote-section' is non-nil, a new
950 footnote section containing all definitions is inserted in TREE.
951 Otherwise, definitions are appended at the end of the section
952 containing their first reference.
953
954 (fn DEFINITIONS TREE)
955 (defalias 'org-export--install-footnote-definitions #[514 "?\206\274\301\302\303\304\305%\211\205\306\307\237#\262\206\274\203\232\211\310\302\311\305\312\313\314\315\257\306\310\316\304    \237$#C\211\204>\202\231\211\211\203o\211@\211\317\206L;\203[\320\304$\210\202fA\321A@#\240\210\266A\266\202\202?\210\203\224\306\322\211\211:\204\201\304\202\216\211@9\203\215\211AA\202\216\211\262\244#\210\206\231\211\207\304C\304C\304\240\210\211\323\324\325\326\327    #\330\"\331\332%\240\210\211\242!\266\202\207" [org-footnote-section org-element-map headline #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\205\211\207" [:footnote-section-p get-text-property 0 plist-get] 7 "\n\n(fn H)"] nil t apply org-element-adopt-elements org-element-create :footnote-section-p :level 1 :title :raw-value section :parent org-add-props plist-put org-element-set-contents make-byte-code 257 "\303\304\305\306\307\310\311\300\301\302#\312\"\313\314%#\207" vconcat vector [org-element-map footnote-reference make-byte-code 257 "\303\211;\203\304\305#\202\306A@\"\266\202\307=\205\274\310\211;\203+\304\305#\2021\306A@\"\266\202\211\301\242\235?\205\272\301\301\242B\240\210\311\312\313\314\315\316!\317\"\320\321%\300\"\322\323\"C\211\203\262\211\211\203\215\211@\211\324\206j;\203y\325\326$\210\202\204A\327A@#\240\210\266A\266\202\202]\210\203\262\330\331\211\211:\204\237\326\202\254\211@9\203\253\211AA\202\254\211\262\244#\210\266\302\242!\262\262\207" vconcat vector [:type get-text-property 0 plist-get standard :label cl-some make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\205\211\207" vconcat vector [:label get-text-property 0 plist-get] 7 "\n\n(fn D)" org-element-lineage (section) :parent org-add-props nil plist-put apply org-element-set-contents] 15 "\n\n(fn REFERENCE)"] 12 "\n\n(fn DATA)"] 14 (#$ . 104278)])
956 #@218 Change uninterpreted elements back into Org syntax.
957 DATA is a parse tree or a secondary string.  INFO is a plist
958 containing export options.  It is modified by side effect and
959 returned by the function.
960
961 (fn DATA INFO)
962 (defalias 'org-export--remove-uninterpreted-data #[514 "\300\301\302\303\304\305\306!\307\"\310\311%\312\211\313&\210\207" [org-element-map (entity bold italic latex-environment latex-fragment strike-through subscript superscript underline) make-byte-code 257 "\211\211:\204\211;\205\301\202\211@9\205\211@\262\302\303\"\203O\304\300\305\"?\205\241\306\307\"\310\311\211;\203<\312\313#\202B\304A@\"\266\202\206H\313\314\"PC\202\241\315\316\"\203\324\304\300\317\"?\205\241\211:\204m\211;\205u\301\202u\211@9\205u\211@\262\211\320\267\202\215\321\202\216\322\202\216\323\202\216\324\202\216\307\262\325C\211:\204\235\307\202\252\211@9\203\251\211AA\202\252\211\262\310\311\211;\203\276\312\313#\202\304\304A@\"\266\202\206\312\313\314\"PC#\262\202\241\315\326\"\203\354\304\300\327\"\330=\205\241\306\307\"C\202\241\315\331\"\205\241\304\300\332\"\333\211;\203\312\313#\202\f\304A@\"\266\202\203\334=\205\237\211?\205\237\325\211:\204-\211;\2055\301\2025\211@9\2055\211@\262\335=\203@\324\202A\336\205F\337PC\211:\204R\307\202_\211@9\203^\211AA\202_\211\262\205f\340\311\211;\203v\312\313#\202|\304A@\"\266\202\205\234\310\311    \211;\203\222\312\313#\202\230\304A@\"\266\202\314\"PC#\266\202\262\211\205\305\211\211\203\300\211@\211\341\232\204\271\342\"\210A\266\202\202\250\343!\262\207" vconcat vector [plain-text eql entity plist-get :with-entities org-export-expand nil make-string :post-blank get-text-property 0 32 memql (bold italic strike-through underline) :with-emphasize #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (bold 125 italic 129 strike-through 133 underline 137)) "*" "/" "+" "_" append (latex-environment latex-fragment) :with-latex verbatim (subscript superscript) :with-sub-superscript :use-brackets-p {} subscript "^" "{" "}" "" org-element-insert-before org-element-extract-element] 15 "\n\n(fn DATUM)" nil t] 11 (#$ . 106674)])
963 #@899 Transcode current Org buffer into BACKEND code.
964
965 BACKEND is either an export back-end, as returned by, e.g.,
966 `org-export-create-backend', or a symbol referring to
967 a registered back-end.
968
969 If narrowing is active in the current buffer, only transcode its
970 narrowed part.
971
972 If a region is active, transcode that region.
973
974 When optional argument SUBTREEP is non-nil, transcode the
975 sub-tree at point, extracting information from the headline
976 properties first.
977
978 When optional argument VISIBLE-ONLY is non-nil, don't export
979 contents of hidden elements.
980
981 When optional argument BODY-ONLY is non-nil, only return body
982 code, without surrounding template.
983
984 Optional argument EXT-PLIST, when provided, is a property list
985 with external parameters overriding Org default settings, but
986 still inferior to file-local settings.
987
988 Return code as a string.
989
990 (fn BACKEND &optional SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)
991 (defalias 'org-export-as #[1281 "9\203\n\306!\262\307!\210\212\214\310 \203\311 \312 }\210\202/\203/\313 \210eb\210\314 \210`d}\210\315!>\204?\316\317\320D\"\210\321H\322\323$\324 \"\325\326\327\330\331\332 !\n\"\"\"\326\333 \334\335\336\337\340!\341\"\342$\216r\211q\210eb\210\343\344\315 !>\204\207\316\317\320 D\"\210\n\321H\"\210\345 \210\346 \210\347 \210\350\331 \f\"\326#\210\351 \210\352 \210 \203\262\353 \210\351 \210\352 \210eb\210\212\343\354\315 !>\204\311\316\317\320 D\"\210\n\321H\"\210)\351 \210\352 \210\322\355      #\"\262\331\332\n!\n\"\211\203B\211@\211:\203;\211@A\211:\2039\211A\211:\2038\211A\211:\2037\211A\211:\2036\211@\211\356=\2035A\211\2044\357\"\360\361\"#\266\210\210\210\210\210\266A\266\202\202\352\210\362!\262\315    !>\204Y\316\317\320 D\"\210\321H\357\363\"\211\203{\211@\211\"\211\203s\211\262\210A\266\202\202a\266\350\364\365\357\366\"!B\367\357\370\"\365!\206\224\371:\203\314A\204\314@\211:\204\256\211;\205\266\372\202\266\211@9\205\266\211@\262\373=\203\314\374\375\374\376\377@!\"#\202\315\211\266\202B\201A\365\357    \201B\"!B\201C\365\357\n\201D\"!B\201E\201FB\257\201G#\210\201H\326\"\262\201I\"\210\361\"\210\201J\357\201K\"#\262\201L\"\262\201M\201N\"\2063\371!\201O\357\201P\"\236A\201J\357\201Q\"\201R!\204V\202[    \"#\201S\357\201P\"\236A\201J\357    \201T\"\201R!\203\201 \203\205\202\212 \"\n#\326\211\203\240\201U\335G@$\210\202\252\201V\335G\326$\210\266\202\266\204*\262)\266\203*\207" [cl-struct-org-export-backend-tags org-export-current-backend org-export-options-alist org-macro-templates org-export-global-macros org-export-use-babel org-export-get-backend org-export-barf-if-invalid-backend org-region-active-p region-beginning region-end org-narrow-to-subtree org-end-of-meta-data type-of signal wrong-type-argument org-export-backend 1 org-combine-plists org-export--get-export-attributes org-export--get-buffer-attributes delq nil mapcar #[257 "\3008\301=\205 \211A@\207" [4 parse] 3 "\n\n(fn O)"] append org-export-get-all-options org-export-copy-buffer make-byte-code 0 "\301\300!\205r\300q\210\302\303!\210)\304\300!\207" vconcat vector [buffer-live-p restore-buffer-modified-p nil kill-buffer] 2 run-hook-with-args org-export-before-processing-hook org-export-expand-include-keyword org-export--delete-comment-trees org-macro-initialize-templates org-macro-replace-all org-set-regexps-and-options org-update-radio-target-regexp org-babel-exp-process-buffer org-export-before-parsing-hook org-export-get-environment parse plist-get plist-put org-export--remove-uninterpreted-data org-export-install-filters :filter-options "author" org-element-interpret-data :author "date" :date "" plain-text timestamp format "(eval (if (org-string-nw-p \"$1\") %s %S))" "(org-timestamp-format '%S \"$1\")" org-element-copy org-rm-props "email" :email "title" :title "results" "$1" finalize org-element-parse-buffer org-export--prune-tree org-export-filter-apply-functions :filter-parse-tree org-export--collect-tree-properties org-element-normalize-string org-export-data inner-template :translate-alist :filter-body functionp template :filter-final-output remove-text-properties set-text-properties] 26 (#$ . 108918)])
992 #@518 Transcode STRING into BACKEND code.
993
994 BACKEND is either an export back-end, as returned by, e.g.,
995 `org-export-create-backend', or a symbol referring to
996 a registered back-end.
997
998 When optional argument BODY-ONLY is non-nil, only return body
999 code, without preamble nor postamble.
1000
1001 Optional argument EXT-PLIST, when provided, is a property list
1002 with external parameters overriding Org default settings, but
1003 still inferior to file-local settings.
1004
1005 Return code as a string.
1006
1007 (fn STRING BACKEND &optional BODY-ONLY EXT-PLIST)
1008 (defalias 'org-export-string-as #[1026 "\301\302!r\211q\210\303\304\305\306\307!\310\"\311$\216c\210\312\313 \210)\314\315\211%*\207" [org-inhibit-startup generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 t org-mode org-export-as nil] 11 (#$ . 113185)])
1009 #@204 Replace the active region by its export to BACKEND.
1010 BACKEND is either an export back-end, as returned by, e.g.,
1011 `org-export-create-backend', or a symbol referring to
1012 a registered back-end.
1013
1014 (fn BACKEND)
1015 (defalias 'org-export-replace-region-by #[257 "\300 \204    \301\302!\210\303\304\305 \306 \"\307#c\207" [org-region-active-p user-error "No active region to replace" org-export-string-as delete-and-extract-region region-beginning region-end t] 5 (#$ . 114042)])
1016 #@450 Insert all export keywords with default values at beginning of line.
1017
1018 BACKEND is a symbol referring to the name of a registered export
1019 back-end, for which specific export options should be added to
1020 the template, or `default' for default template.  When it is nil,
1021 the user will be prompted for a category.
1022
1023 If SUBTREEP is non-nil, export configuration will be set up
1024 locally for the subtree through node properties.
1025
1026 (fn &optional BACKEND SUBTREEP)
1027 (defalias 'org-export-insert-default-template #[512 "\304\305!\204\n\306\307!\210\211\203\310 \203\306\311!\210\211\205\"\212\312\313!\210`)\2063\314\315\316\317\320\321\"B\322\313$!\322\211\323=\203?    \202s\324!\n>\203\\\324!\n>\204V\325\326\327D\"\210\330H\202s\331!\324!\n>\204n\325\326\327D\"\210\211\330H\262\211\203\322\211@\211A@\3328\203\261\333\"\204\311\3308\334=\203\240\335\336\337\3408!\341#\202\245\337\3408!BB\262\210\202\311\211\203\311\333\"\204\311\211\337\3408!BB\262\266A\266\202\202s\210\204\332\342 \210\203+\320\343\344\345\"\"\203\366\346\347\335\336\341##\210\202*\211\203*\350c\210\351\203#\352@G\353# W\203#\211A\262\242\341\261\210GT\\\266\202\202\376\210\354c\210\202\366\210\211\237\211\205\265\211@\211@\355\232\203\\\211A\206~\356\357!r\211q\210\360\361\362\363\364!\365\"\332$\216\366\367 !*\262\202~\211@\370\232\203|\371\372 !\211\205p\373\374!!\262\206~\375\372 !\202~\211A\203\220\346\376@P#\210\202\255\377\201@@\201A!\203\247\377\201B\"\202\252\201C#c\210\210A\266\202\202-\262\207" [org-export-registered-backends org-export-options-alist cl-struct-org-export-backend-tags fill-column derived-mode-p org-mode user-error "Not in an Org mode buffer" org-before-first-heading-p "No subtree to set export options for" org-back-to-heading t intern org-completing-read "Options category: " "default" mapcar #[257 "\301\302!>\204\303\304\305D\"\210\306H!\207" [cl-struct-org-export-backend-tags symbol-name type-of signal wrong-type-argument org-export-backend 1] 6 "\n\n(fn B)"] nil default type-of signal wrong-type-argument org-export-backend 4 org-export-get-backend 2 assoc split mapconcat identity eval 3 " " beginning-of-line #[257 "\300\301@A#\207" [format "%s:%S"] 5 "\n\n(fn OPT)"] sort #[514 "@@\231\207" [] 4 "\n\n(fn K1 K2)"] org-entry-put "EXPORT_OPTIONS" "#+OPTIONS:" 10 + 1 "\n" "DATE" generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] org-insert-time-stamp current-time "TITLE" buffer-file-name buffer-base-buffer file-name-sans-extension file-name-nondirectory buffer-name "EXPORT_" format "#+%s:%s\n" org-string-nw-p " %s" ""] 15 (#$ . 114514) nil])
1028 #@456 Expand every include keyword in buffer.
1029 Optional argument INCLUDED is a list of included file names along
1030 with their line restriction, when appropriate.  It is used to
1031 avoid infinite recursion.  Optional argument DIR is the current
1032 working directory.  It is used to properly resolve relative
1033 paths.  Optional argument FOOTNOTES is a hash-table used for
1034 storing and resolving footnotes.  It is created automatically.
1035
1036 (fn &optional INCLUDED DIR FOOTNOTES)
1037 (defalias 'org-export-expand-include-keyword #[768 "\302\303\304\305\"\306\206\303\304\305\"\307eb\210\310\311\302#\2030\312\313 \314 \315\316\317 \206)\306!T$\210\202eb\210\310\311\302#\205\204\320 \2043\321 \322\306\323\324\325!\326\"\327$\216\330 )\262\211\211:\204b\211;\205j\331\202j\211@9\205j\211@\262\332=\203\200\333 \210\334\211;\203\203\335\306#\202\211\336A@\"\266\202\337 \311\340\341\"\205\324\321 \322\306\323\324\325!\342\"\327$\216\343\344\"\340\345\"\203\275\343\346\"\262\347\350\311\211\344%\262\351\352\353\211#\"\262)\262\347\350\311\211$\262\340\354\"\205\353\355\343\344\"!\347\350\311\211$\262\340\356\"\205\343\344\"\347\350\311\211    $\262\340\357\"\203 \360\202\"\340\361\"\203\360\202\"\340\362\"\205\"\360\211?\205F\340\363\"\203B\364\343\344    \"!\347\350\311\211 $\262\202F\335`\315\"\360=\205Q\343\344    \"\340\365\n\"\205^\343\344\n\"`\313\346!|\210\203~\366!\204y\367\370\"\210\202~D\235\203\214\367\371\"\210\202~\360=\203\302\372    \373\";\203\243\374\375\"\202\244\350\376\377\n    \"!\374\201@\n&\266\203c\210\202g\211;\203\346\372    \373\"\377\"\374\201A&\266\202c\210\202g\201B\201C!r\211q\210\322\306\201D\324\325!\201E\"\346$\216\302    \203\201F     \n\n$\202\201G \210\377\n    \201H\"\206@\201IT\211\262#&c\210)\266\201JDB\201K\n!#\210\201L *\262c\210\204~\212\214~\210db\210\201M\201N\"\210*\266\n\210\2023)\207" [case-fold-search org-inhibit-startup t make-hash-table :test equal 0 "^[     ]*#\\+INCLUDE:" re-search-forward nil put-text-property line-beginning-position line-end-position :org-include-induced-level org-reduced-level org-current-level org-in-commented-heading-p match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 org-element-at-point plain-text keyword beginning-of-line :value get-text-property plist-get org-get-indentation string-match "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" [set-match-data evaporate] match-string 1 "\\(::\\(.*?\\)\\)\"?\\'" 2 replace-match "" expand-file-name org-unbracket-string "\"" ":only-contents *\\([^:      \n]\\S-*\\)?" org-not-nil ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\"" "\\<example\\>" literal "\\<export\\(?: +\\(.*\\)\\)?" "\\<src\\(?: +\\(.*\\)\\)?" ":minlevel +\\([0-9]+\\)" string-to-number "\\<\\(\\S-+\\)\\>" file-readable-p error "Cannot include file %s" "Recursive file inclusion: %s" make-string 32 format " %s" org-escape-code-in-string org-export--prepare-file-contents "%s#+BEGIN_%s%s\n%s%s#+END_%s\n" "%s#+BEGIN_%s\n%s%s#+END_%s\n" generate-new-buffer " *temp*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] org-export--inclusion-absolute-lines org-mode gethash puthash org-export-expand-include-keyword file-name-directory buffer-string maphash #[514 "\300\301#c\207" [format "\n[fn:%s] %s\n"] 6 "\n\n(fn K V)"]] 31 (#$ . 117262)])
1038 #@507 Resolve absolute lines for an included file with file-link.
1039
1040 FILE is string file-name of the file to include.  LOCATION is a
1041 string name within FILE to be included (located via
1042 `org-link-search').  If ONLY-CONTENTS is non-nil only the
1043 contents of the named element will be included, as determined
1044 Org-Element.  If LINES is non-nil only those lines are included.
1045
1046 Return a string of lines to be included in the format expected by
1047 `org-export--prepare-file-contents'.
1048
1049 (fn FILE LOCATION ONLY-CONTENTS LINES)
1050 (defalias 'org-export--inclusion-absolute-lines #[1028 "\306\307!r\211q\210\310\311\312\313\314!\315\"\316$\216\317!\210\320=\204#\321\320 \210)\32211\323\324!)0\202=\325\326\327!$\262\210\330 \205[\331\211;\203S\332\311#\202Y\333A@\"\266\202\211\206v\334\211;\203n\332\311#\202t\333A@\"\266\202\203~\335\202\336\211;\203\215\332\311#\202\223\333A@\"\266\202}\210\203\340\211:\204\252\211;\205\262\337\202\262\211@9\205\262\211@\262\340>\203\340eb\210 \321\341!)\262\203\313\323y\210\341 !\203\325\311\225b\210n\204\334\323y\210`d}\210\266\203\"\342 \210\343 \210\344\345\"\346@!\346A@!\311U\203e\202 eb\210Sy\210`\311U\203d\202\211b\210Sy\210`}\266deb\210~\210\347 \350\351\212\311`W\203A\211T\262\323y\210\2020\211\262\\)#\262\262*\207" [major-mode org-inhibit-startup org-link-search-must-match-exact-headline org-planning-line-re inhibit-changing-match-data org-property-drawer-re generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 insert-file-contents org-mode t (error) nil org-link-search error "%s for %s::%s" error-message-string org-element-at-point :contents-begin get-text-property plist-get :begin :contents-end :end plain-text (headline inlinetask) looking-at org-skip-whitespace beginning-of-line split-string "-" string-to-number line-number-at-pos format "%d-%d"] 14 (#$ . 120713)])
1051 #@957 Prepare contents of FILE for inclusion and return it as a string.
1052
1053 When optional argument LINES is a string specifying a range of
1054 lines, include only those lines.
1055
1056 Optional argument IND, when non-nil, is an integer specifying the
1057 global indentation of returned contents.  Since its purpose is to
1058 allow an included file to stay in the same environment it was
1059 created (e.g., a list item), it doesn't apply past the first
1060 headline encountered.
1061
1062 Optional argument MINLEVEL, when non-nil, is an integer
1063 specifying the level that any top-level headline in the included
1064 file should have.
1065
1066 Optional argument ID is an integer that will be inserted before
1067 each footnote definition and reference if FILE is an Org file.
1068 This is useful to avoid conflicts when more than one Org file
1069 with footnotes is included in a document.
1070
1071 Optional argument FOOTNOTES is a hash-table to store footnotes in
1072 the included document.
1073
1074 (fn FILE &optional LINES IND MINLEVEL ID FOOTNOTES)
1075 (defalias 'org-export--prepare-file-contents #[1537 "\306\307!r\211q\210\310\311\312\313\314!\315\"\316$\216\317!\210\203S\320\321\"\322@!\322A@!\311U\2034e\202<eb\210Sy\210`\311U\203Fd\202Neb\210Sy\210`}\266eb\210\323 \210\324 \210e`|\210db\210\325\326x\210\326y\210`d|\210\203\304\311V\203\304\327=\204\204\330\327 \210)eb\210\331\332\"m\204\303\333\n!\204\303\333 !\203\272\334 \211:\204\253\211;\205\263\335\202\263\211@9\205\263\211@\262\336=\204\275\211c\210\326y\210\202\213\210\203\327=\204\324\330\327 \210)\330\337 \2118\340 P\341\342!\211\203\343\344\"ZC\211\242\311U\2049\203\211\242\316_\240\210\341\310\311\345\313\314!\346\"\347$!\210\210\210,\203\312\350 \351 \352\353\326eb\210\354:\326\330#\203\277\212\355u\210\356 )\211\211:\204@\211;\205H\335\202H\211@9\205H\211@\262\357>\203\273\360\211;\203^\361\311#\202d\362A@\"\266\202\211\203\272\363\"A\211\203|#\210\202\271 \"BB\262\212\214~\210\364!\211A@\203\257\211 W\204\244\211\nY\203\257\365\366\3478!#\210\266*#\266\210\210\210\202!\326\211\223\210\326\211\223\266\366\367 !*\207" [major-mode org-inhibit-startup org-outline-regexp-bol org-footnote-definition-re org-called-with-limited-levels org-outline-regexp generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 insert-file-contents split-string "-" string-to-number org-skip-whitespace beginning-of-line "      \n" nil org-mode t make-string 32 looking-at org-element-at-point plain-text footnote-definition org-get-limited-outline-regexp "^" org-map-entries #[0 "\300\301 !\207" [org-reduced-level org-current-level] 2] apply min "\300\242\301W\203\302\303\300\242!!\207\304\300\242\305\"c\207" [0 delete-char abs make-string 42] 3 point-min-marker point-max-marker #[514 "\300\301#\207" [format "-%d-%s"] 6 "\n\n(fn ID LABEL)"] #[771 "\212\300\211;\203\301\302#\202\303A@\"\266\202\304\\b\210\305\306!!\210\307!)\207" [:begin get-text-property 0 plist-get 4 looking-at regexp-quote replace-match] 9 "\n\n(fn F OLD NEW)"] re-search-forward -1 org-element-context (footnote-definition footnote-reference) :label get-text-property plist-get assoc org-footnote-get-definition puthash org-element-normalize-string buffer-string outline-regexp org-odd-levels-only org-footnote-re] 24 (#$ . 122684)])
1076 #@111 Return a non-nil value when output should be added to the kill ring.
1077 See also `org-export-copy-to-kill-ring'.
1078 (defalias 'org-export--copy-to-kill-ring-p #[0 "\303=\203     \206 \n?\207\304=\207" [org-export-copy-to-kill-ring executing-kbd-macro noninteractive if-interactive t] 2 (#$ . 126062)])
1079 #@529 Turn ATTRIBUTE property from ELEMENT into a plist.
1080
1081 When optional argument PROPERTY is non-nil, return the value of
1082 that property within attributes.
1083
1084 This function assumes attributes are defined as ":keyword
1085 value" pairs.  It is appropriate for `:attr_html' like
1086 properties.
1087
1088 All values will become strings except the empty string and
1089 "nil", which will become nil.  Also, values containing only
1090 double quotes will be read as-is, which means that "" value
1091 will become the empty string.
1092
1093 (fn ATTRIBUTE ELEMENT &optional PROPERTY)
1094 (defalias 'org-export-read-attribute #[770 "\300\211;\203\301\302#\202\303A@\"\266\202\211\205R\304\305\306#\307\310\311\"\203I\302\211\224O!B\266\202\312\313\314\"!B\262\302\225\307O\262\202\"!B\237A\266\202\262\203_\303\"\202`\211\207" [#[257 "\300 \301\302\303\304\305!\306\"\307$\216\310\235\203\311\202+\312\313\"\203*\314\315\"\206+\316\202+)\207" [match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 (nil #1="" "nil") nil string-match "^\"\\(\"+\\)?\"$" match-string 1 #1#] 8 "\n\n(fn STR)"] get-text-property 0 plist-get mapconcat identity " " nil string-match "\\(?:^\\|[     ]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([     ]+\\|$\\)" intern match-string 1] 11 (#$ . 126366)])
1095 #@227 Return caption from ELEMENT as a secondary string.
1096
1097 When optional argument SHORTP is non-nil, return short caption,
1098 as a secondary string, instead.
1099
1100 Caption lines are separated by a white space.
1101
1102 (fn ELEMENT &optional SHORTP)
1103 (defalias 'org-export-get-caption #[513 "\300\211;\203\301\302#\202\303A@\"\266\202\304\211\203@\211@\203'\305\202(\306!\211\2038\307C\310!\244\244\262\210A\266\202\202A\262\207" [:caption get-text-property 0 plist-get nil cdr car " " copy-sequence] 10 (#$ . 127653)])
1104 #@436 Call a transcoder from BACKEND on DATA.
1105 BACKEND is an export back-end, as returned by, e.g.,
1106 `org-export-create-backend', or a symbol referring to
1107 a registered back-end.  DATA is an Org element, object, secondary
1108 string or string.  CONTENTS, when non-nil, is the transcoded
1109 contents of DATA element, as a string.  INFO, when non-nil, is
1110 the communication channel used for export, as a plist.
1111
1112 (fn BACKEND DATA &optional CONTENTS INFO)
1113 (defalias 'org-export-with-backend #[1026 "9\203\n\300!\262\301!\210\211:\204\211;\205%\302\202%\211@9\205%\211@\262\211\303>\2031\304\305!\210\306!\236A\307!\204B\304\305!\210\310\311    \312\313\314\315\316\317\320$\257\"\302=\203b\"\202i#\321\322\323\322\"#\210\262\266\202\207" [org-export-get-backend org-export-barf-if-invalid-backend plain-text (nil org-data) error "No foreign transcoder available" org-export-get-all-transcoders functionp org-combine-plists :back-end :translate-alist :exported-data make-hash-table :test eq :size 401 plist-put :internal-references plist-get] 19 (#$ . 128179)])
1114 #@145 Return EXPORT-SNIPPET targeted back-end as a symbol.
1115 Translation, with `org-export-snippet-translation-alist', is
1116 applied.
1117
1118 (fn EXPORT-SNIPPET)
1119 (defalias 'org-export-snippet-backend #[257 "\301\211;\203\302\303#\202\304A@\"\266\202\305\306\"A\206!!\207" [org-export-snippet-translation-alist :back-end get-text-property 0 plist-get intern assoc] 7 (#$ . 129263)])
1120 #@191 Return definition of FOOTNOTE-REFERENCE as parsed data.
1121 INFO is the plist used as a communication channel.  If no such
1122 definition can be found, raise an error.
1123
1124 (fn FOOTNOTE-REFERENCE INFO)
1125 (defalias 'org-export-get-footnote-definition #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\211\2047\211:\204%\304\2022\211@9\2031\211AA\2022\211\262\202w\303\305\"\206K\306\307\310\"\311\305#\210\211\262\312\"\206u\313\314\303\315\"\316\317\320\321\322\323 !\324\"\325\326%\327%#\206u\330\331\"\262\207" [:label get-text-property 0 plist-get nil :footnote-definition-cache make-hash-table :test equal plist-put gethash puthash org-element-map :parse-tree (footnote-definition footnote-reference) make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\204\305\207\306\211;\203-\302\303#\2023\304A@\"\266\202\307=\203<\305\207\211\211:\204F\305\202S\211@9\203R\211AA\202S\211\262\206Y\310\207" vconcat vector [:label get-text-property 0 plist-get nil :type standard ""] 7 "\n\n(fn F)" t error "Definition not found for footnote %s"] 15 (#$ . 129647)])
1126 #@332 Apply FUNCTION on every footnote reference in DATA.
1127 INFO is a plist containing export state.  By default, as soon as
1128 a new footnote reference is encountered, FUNCTION is called onto
1129 its definition.  However, if BODY-FIRST is non-nil, this step is
1130 delayed until the end of the process.
1131
1132 (fn FUNCTION DATA INFO &optional BODY-FIRST)
1133 (defalias 'org-export--footnote-reference-map #[1027 "\300C\300C\300C\300\240\210\300\240\210\211\301\302\303\304\305\f \n\n\n%\306\"\307\310%\240\210\211\242\"\210\211\242\242\237\300\"\207" [nil make-byte-code 514 "\305\306\307\310\311\312\313\300\301\302\303\304 &\314\"\315\316%\301\317\203!\320\202\"\321&\207" vconcat vector [org-element-map footnote-reference make-byte-code 257 "\300!\210\306\211;\203\307\310#\202\311A@\"\266\202\211\205#\211\303\242\235?\205f\211\2032\303\303\242B\240\210\305\203B\302\312\301\"\302\242B\240\202f\313\211;\203Q\307\310#\202W\311A@\"\266\202\314=\206f\304\242\312\301\"\315\"\207" vconcat vector [:label get-text-property 0 plist-get org-export-get-footnote-definition :type inline nil] 8 "\n\n(fn F)" nil (footnote-definition footnote-reference) footnote-definition] 16 "\n\n(fn DATA DELAYP)"] 18 (#$ . 130775)])
1134 #@659 Return an alist between footnote numbers, labels and definitions.
1135
1136 INFO is the current export state, as a plist.
1137
1138 Definitions are collected throughout the whole parse tree, or
1139 DATA when non-nil.
1140
1141 Sorting is done by order of references.  As soon as a new
1142 reference is encountered, other references are searched within
1143 its definition.  However, if BODY-FIRST is non-nil, this step is
1144 delayed after the whole tree is checked.  This alters results
1145 when references are found in footnote definitions.
1146
1147 Definitions either appear as Org data or as a secondary string
1148 for inlined footnotes.  Unreferenced definitions are ignored.
1149
1150 (fn INFO &optional DATA BODY-FIRST)
1151 (defalias 'org-export-collect-footnote-definitions #[769 "\300C\301C\301C\302\303\304\305\306\307             $\310\"\311\312%\206$\313\314\"$\210\211\242\237\207" [0 nil org-export--footnote-reference-map make-byte-code 257 "\304\211;\203\305\306#\202\307A@\"\266\202\211\203\"\211\302\242\235\2046\301\211\242T\240\210\303\301\242\310\300\"E\303\242B\240\210\211\205@\302\302\242B\240\207" vconcat vector [:label get-text-property 0 plist-get org-export-get-footnote-definition] 8 "\n\n(fn F)" plist-get :parse-tree] 16 (#$ . 132015)])
1152 #@587 Non-nil when a footnote reference is the first one for its label.
1153
1154 FOOTNOTE-REFERENCE is the footnote reference being considered.
1155 INFO is a plist containing current export state.
1156
1157 Search is done throughout the whole parse tree, or DATA when
1158 non-nil.
1159
1160 By default, as soon as a new footnote reference is encountered,
1161 other references are searched within its definition.  However, if
1162 BODY-FIRST is non-nil, this step is delayed after the whole tree
1163 is checked.  This alters results when references are found in
1164 footnote definitions.
1165
1166 (fn FOOTNOTE-REFERENCE INFO &optional DATA BODY-FIRST)
1167 (defalias 'org-export-footnote-first-reference-p #[1026 "\300\211;\203\301\302#\202\303A@\"\266\202\211?\206>\3042>\305\306\307\310\311\312\n\"\313\"\314\315%\2069\303\316\"$0\207" [:label get-text-property 0 plist-get exit org-export--footnote-reference-map make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\211\205+\301\205+\301\230\205+\306\307\300=\"\207" vconcat vector [:label get-text-property 0 plist-get throw exit] 7 "\n\n(fn F)" :parse-tree] 13 (#$ . 133237)])
1168 #@523 Return number associated to a footnote.
1169
1170 FOOTNOTE is either a footnote reference or a footnote definition.
1171 INFO is the plist containing export state.
1172
1173 Number is unique throughout the whole parse tree, or DATA, when
1174 non-nil.
1175
1176 By default, as soon as a new footnote reference is encountered,
1177 counting process moves into its definition.  However, if
1178 BODY-FIRST is non-nil, this step is delayed until the end of the
1179 process, leading to a different order when footnotes are nested.
1180
1181 (fn FOOTNOTE INFO &optional DATA BODY-FIRST)
1182 (defalias 'org-export-get-footnote-number #[1026 "\300C\301C\302\211;\203\303\300#\202\304A@\"\266\202\3052D\306\307\310\311\312\313\f            $\314\"\315\316%\206>\304\317\"$0\207" [0 nil :label get-text-property plist-get exit org-export--footnote-reference-map make-byte-code 257 "\304\211;\203\305\306#\202\307A@\"\266\202\211\204.\303\204.\300=\203.\310\311\301\242T\"\202e\303\203E\211\203E\303\230\203E\310\311\301\242T\"\202e\211\204Q\301\211\242T\240\202e\211\302\242\235?\205e\302\302\242B\240\210\301\211\242T\240\207" vconcat vector [:label get-text-property 0 plist-get throw exit] 7 "\n\n(fn F)" :parse-tree] 17 (#$ . 134350)])
1183 #@128 Return HEADLINE relative level within current parsed tree.
1184 INFO is a plist holding contextual information.
1185
1186 (fn HEADLINE INFO)
1187 (defalias 'org-export-get-relative-level #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\303\304\"\206\302\\\207" [:level get-text-property 0 plist-get :headline-offset] 8 (#$ . 135562)])
1188 #@337 Non-nil when HEADLINE is considered as low level.
1189
1190 INFO is a plist used as a communication channel.
1191
1192 A low level headlines has a relative level greater than
1193 `:headline-levels' property value.
1194
1195 Return value is the difference between HEADLINE relative level
1196 and the last level being considered as high enough, or nil.
1197
1198 (fn HEADLINE INFO)
1199 (defalias 'org-export-low-level-p #[514 "\300\301\"\302!\205\303\"\211V\205\211Z\262\207" [plist-get :headline-levels wholenump org-export-get-relative-level] 6 (#$ . 135898)])
1200 #@126 Return numbered HEADLINE numbering as a list of numbers.
1201 INFO is a plist holding contextual information.
1202
1203 (fn HEADLINE INFO)
1204 (defalias 'org-export-get-headline-number #[514 "\300\"\205\301\302\"\236A\207" [org-export-numbered-headline-p plist-get :headline-numbering] 6 (#$ . 136429)])
1205 #@133 Return a non-nil value if HEADLINE element should be numbered.
1206 INFO is a plist used as a communication channel.
1207
1208 (fn HEADLINE INFO)
1209 (defalias 'org-export-numbered-headline-p #[514 "\300\301\302\303#!?\205\"\304\305\"\306\"\307!\203\211X\202 \266\202\207" [org-not-nil org-export-get-node-property :UNNUMBERED t plist-get :section-numbers org-export-get-relative-level wholenump] 7 (#$ . 136728)])
1210 #@49 Convert integer N into a roman numeral.
1211
1212 (fn N)
1213 (defalias 'org-export-number-to-roman #[257 "\300\301\302X\203\303!\2025\2034@@Y\203+@@Z\262\211@AP\262\202\211A\262\210\202\211\207" [((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD") (100 . "C") (90 . "XC") (50 . "L") (40 . "XL") (10 . "X") (9 . "IX") (5 . "V") (4 . "IV") (1 . "I")) "" 0 number-to-string] 5 (#$ . 137142)])
1214 #@435 Return list of tags associated to ELEMENT.
1215
1216 ELEMENT has either an `headline' or an `inlinetask' type.  INFO
1217 is a plist used as a communication channel.
1218
1219 When non-nil, optional argument TAGS should be a list of strings.
1220 Any tag belonging to this list will also be removed.
1221
1222 When optional argument INHERITED is non-nil, tags can also be
1223 inherited from parent headlines and FILETAGS keywords.
1224
1225 (fn ELEMENT INFO &optional TAGS INHERITED)
1226 (defalias 'org-export-get-tags #[1026 "\300\301\302\303\304\305!\306\"\307\310%\204-\311\211;\203\"\312\313#\202(\314A@\"\266\202\202\267\311\211;\203=\312\313#\202C\314A@\"\266\202\315!\211\203\244\211@\311\211;\203^\312\313#\202d\314A@\"\266\202\211\203\234\211@\211:\204{\211;\205\203\316\202\203\211@9\205\203\211@\262\317>\203\225\211\235\204\225\211B\262A\266\202\202f\210A\266\202\202I\210\320\314\321\"\"\322!\323!\266\202\262\"\207" [cl-remove-if make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn TAG)" :tags get-text-property 0 plist-get org-element-lineage plain-text (headline inlinetask) append :filetags copy-sequence delete-dups] 15 (#$ . 137547)])
1227 #@291 Return node PROPERTY value for BLOB.
1228
1229 PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA').  BLOB is an
1230 element or object.
1231
1232 If optional argument INHERITED is non-nil, the value can be
1233 inherited from a parent headline.
1234
1235 Return value is a string or nil.
1236
1237 (fn PROPERTY BLOB &optional INHERITED)
1238 (defalias 'org-export-get-node-property #[770 "\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\"\202%\302!\204C\211;\2038\303\304#\202>\305A@\"\266\202\202\221\211\3062\217\211\205\216\307A@\"\203r\310\306\211;\203h\303\304#\202n\305A@\"\266\202\"\210\311\211;\203\201\303\304#\202\207\305A@\"\266\202\262\202H0\262\207" [plain-text headline org-export-get-parent-headline get-text-property 0 plist-get found plist-member throw :parent] 13 (#$ . 138722)])
1239 #@279 Return category for element or object BLOB.
1240
1241 INFO is a plist used as a communication channel.
1242
1243 CATEGORY is automatically inherited from a parent headline, from
1244 #+CATEGORY: keyword or created out of original file name.  If all
1245 fail, the fall-back value is "???".
1246
1247 (fn BLOB INFO)
1248 (defalias 'org-export-get-category #[514 "\300\301\302#\206(\303\304\305\"\306\307\310%\206(\304\311\"\211\205\"\312\313!!\262\206(\314\207" [org-export-get-node-property :CATEGORY t org-element-map plist-get :parse-tree keyword #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304\232\2053\305\211;\203+\301\302#\2021\303A@\"\266\202\207" [:key get-text-property 0 plist-get "CATEGORY" :value] 7 "\n\n(fn KWD)"] first-match :input-file file-name-sans-extension file-name-nondirectory "???"] 8 (#$ . 139532)])
1249 #@145 Return alternative title for HEADLINE, as a secondary string.
1250 If no optional title is defined, fall-back to the regular title.
1251
1252 (fn HEADLINE _)
1253 (defalias 'org-export-get-alt-title #[514 "\301\211;\203\302\303#\202\304A@\"\266\202\211\203J\305\306\2119\203'\211\202@\211\211:\2046\211;\205>\307\202>\211@9\205>\211@\262\236A\262#\202a\310\211;\203Y\302\303#\202_\304A@\"\266\202\207" [org-element-object-restrictions :ALT_TITLE get-text-property 0 plist-get org-element-parse-secondary-string headline plain-text :title] 9 (#$ . 140355)])
1254 #@233 Non-nil when BLOB is the first sibling in its parent.
1255 BLOB is an element or an object.  If BLOB is a headline, non-nil
1256 means it is the first sibling in the sub-tree.  INFO is a plist
1257 used as a communication channel.
1258
1259 (fn BLOB INFO)
1260 (defalias 'org-export-first-sibling-p #[514 "\300\"\211:\204\211;\205\301\202\211@9\205\211@\262\302>\207" [org-export-get-previous-element plain-text (nil section)] 5 (#$ . 140929)])
1261 #@156 Non-nil when DATUM is the last sibling in its parent.
1262 DATUM is an element or an object.  INFO is a plist used as
1263 a communication channel.
1264
1265 (fn DATUM INFO)
1266 (defalias 'org-export-last-sibling-p #[514 "\300\"\211?\206V\211:\204\211;\205 \301\202 \211@9\205 \211@\262\302=\205V\303\211;\2036\304\305#\202<\306A@\"\266\202\303\211;\203M\304\305#\202S\306A@\"\266\202V\207" [org-export-get-next-element plain-text headline :level get-text-property 0 plist-get] 10 (#$ . 141363)])
1267 #@425 Return date value for the current document.
1268
1269 INFO is a plist used as a communication channel.  FMT, when
1270 non-nil, is a time format string that will be applied on the date
1271 if it consists in a single timestamp object.  It defaults to
1272 `org-export-date-timestamp-format' when nil.
1273
1274 A proper date can be a secondary string, a string or nil.  It is
1275 meant to be translated with `org-export-data' or alike.
1276
1277 (fn INFO &optional FMT)
1278 (defalias 'org-export-get-date #[513 "\301\302\"\206    \204\303\202B\211\203AA\204A@\211:\204*\211;\2052\304\2022\211@9\2052\211@\262\305=\203A\306@\"\202B\207" [org-export-date-timestamp-format plist-get :date nil plain-text timestamp org-timestamp-format] 7 (#$ . 141869)])
1279 (org-define-error 'org-link-broken "Unable to resolve link; aborting")
1280 #@371 Try exporting LINK with a dedicated function.
1281
1282 DESC is its description, as a string, or nil.  BACKEND is the
1283 back-end used for export, as a symbol.
1284
1285 Return output as a string, or nil if no protocol handles LINK.
1286
1287 A custom protocol has precedence over regular back-end export.
1288 The function ignores links with an implicit type (e.g.,
1289 "custom-id").
1290
1291 (fn LINK DESC BACKEND)
1292 (defalias 'org-export-custom-protocol-maybe #[771 "\300\211;\203\301\302#\202\303A@\"\266\202\211\304\235\206??\205M\305\306\"\307!\205K\211\310\311\211;\203?\301\302#\202E\303A@\"\266\202!#\262\207" [:type get-text-property 0 plist-get ("coderef" "custom-id" "fuzzy" "radio") org-link-get-parameter :export functionp org-link-unescape :path] 13 (#$ . 142667)])
1293 #@112 Return format string for code reference link.
1294 PATH is the link path.  DESC is its description.
1295
1296 (fn PATH DESC)
1297 (defalias 'org-export-get-coderef-format #[514 "\300 \301\302\303\304\305!\306\"\307$\216\204\310\202,\311\312\313\314Q!\"\203+\315\310\316\211$\202,)\207" [match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "%s" string-match regexp-quote "(" ")" replace-match t] 9 (#$ . 143433)])
1298 #@493 Non-nil if LINK object points to an inline image.
1299
1300 Optional argument is a set of RULES defining inline images.  It
1301 is an alist where associations have the following shape:
1302
1303   (TYPE . REGEXP)
1304
1305 Applying a rule means apply REGEXP against LINK's path when its
1306 type is TYPE.  The function will return a non-nil value if any of
1307 the provided rules is non-nil.  The default rule is
1308 `org-export-default-inline-image-rule'.
1309
1310 This only applies to links without a description.
1311
1312 (fn LINK &optional RULES)
1313 (defalias 'org-export-inline-image-p #[513 "\211:\204\n\302\202\211@9\203\211AA\202\211\262?\2054\303\304\305\306\307\310\311!\312\"\313\314%\2062    \")\207" [case-fold-search org-export-default-inline-image-rule nil t cl-some make-byte-code 257 "\302\300\211;\203\303\304#\202\305A@\"\266\202@\230\205A\211A\306\300\211;\203.\303\304#\2024\305A@\"\266\202\307\310\311#)\266\203\207" vconcat vector [inhibit-changing-match-data :type get-text-property 0 plist-get :path nil t string-match] 8 "\n\n(fn RULE)"] 9 (#$ . 143886)])
1314 #@794 Insert image links in DATA.
1315
1316 Org syntax does not support nested links.  Nevertheless, some
1317 export back-ends support images as descriptions of links.  Since
1318 images are really links to image files, we need to make an
1319 exception about links nesting.
1320
1321 This function recognizes links whose contents are really images
1322 and turn them into proper nested links.  It is meant to be used
1323 as a parse tree filter in back-ends supporting such constructs.
1324
1325 DATA is a parse tree.  INFO is the current state of the export
1326 process, as a plist.
1327
1328 A description is a valid images if it matches any rule in RULES,
1329 if non-nil, or `org-export-default-inline-image-rule' otherwise.
1330 See `org-export-inline-image-p' for more information about the
1331 structure of RULES.
1332
1333 Return modified DATA.
1334
1335 (fn DATA INFO &optional RULES)
1336 (defalias 'org-export-insert-image-links #[770 "\303\304    #\305\306\307\310\311\312\313\314        \"\315\"\316\317%\320\211\305&\210)\210\207" [org-plain-link-re org-angle-link-re case-fold-search format "\\`\\(?:%s\\|%s\\)\\'" t org-element-map link make-byte-code 257 "\303\211:\204 \304\202\211@9\203\211AA\202\211\262!\305!\205\366\306\301\"\205\366\307\310\"\307\311\"\312\313\314\315\316\317\"\320\"\321\322%\300\206E\n\"\205\364\304C\204T\211\202o@9\204^\211\202oA\203lA\241\210\202o\244\266\202\323\324!r\211q\210\313\325\326\316\317!\327\"\311$\216\212c\210)\330 *\262C\211\204\227\202\362\211\211\203\310\211@\211\331\206\245;\203\264\332\304$\210\202\277A\333A@#\240\210\266A\266\202\202\230\210\203\355\334\335\211\211:\204\332\304\202\347\211@9\203\346\211AA\202\347\211\262\244#\210\206\362\211\266\202\266\202\207" vconcat vector [org-export-default-inline-image-rule org-element-interpret-data nil org-string-nw-p string-match match-string 1 2 cl-some make-byte-code 257 "\300@\230\205\211A\301\303\304\305#)\266\203\207" vconcat vector [inhibit-changing-match-data nil t string-match] 8 "\n\n(fn RULE)" generate-new-buffer " *temp*" 0 "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] org-element-link-parser :parent org-add-props plist-put apply org-element-set-contents] 16 "\n\n(fn L)" nil] 14 (#$ . 144945)])
1337 #@254 Resolve a code reference REF.
1338
1339 INFO is a plist used as a communication channel.
1340
1341 Return associated line number in source code, or REF itself,
1342 depending on src-block or example element's switches.  Throw an
1343 error if no block contains REF.
1344
1345 (fn REF INFO)
1346 (defalias 'org-export-resolve-coderef #[514 "\300\301\302\"\303\304\305\306\307\310        \"\311\"\312\313%\314%\206 \315\316C\"\207" [org-element-map plist-get :parse-tree (example-block src-block) make-byte-code 257 "\303\304!r\211q\210\305\306\307\310\311!\312\"\313$\216\314\211;\203\"\315\306#\202(\316A@\"\266\202\317\320\2034\321\2025\322\323\320\324\323##\266\202c\210\325\211;\203P\315\306#\202V\316A@\"\266\202\206\\\n\326\300\"\327\317\330#\205\221\331\211;\203w\315\306#\202}\316A@\"\266\202\203\206\300\202\221\332\301\"\206\216\306\333 \\\266\202*\207" vconcat vector [org-coderef-label-format generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 :value get-text-property plist-get nil replace-regexp-in-string "\\`\\([     ]*\n\\)+" "\\`[     \n ]+" "" "[     \n ]+\\'" :label-fmt org-src-coderef-regexp re-search-backward t :use-labels org-export-get-loc line-number-at-pos] 11 "\n\n(fn EL)" first-match signal org-link-broken] 12 (#$ . 147162)])
1347 #@673 List search cells for element or object DATUM.
1348
1349 A search cell follows the pattern (TYPE . SEARCH) where
1350
1351   TYPE is a symbol among `headline', `custom-id', `target' and
1352   `other'.
1353
1354   SEARCH is the string a link is expected to match.  More
1355   accurately, it is
1356
1357     - headline's title, as a list of strings, if TYPE is
1358       `headline'.
1359
1360     - CUSTOM_ID value, as a string, if TYPE is `custom-id'.
1361
1362     - target's or radio-target's name as a list of strings if
1363       TYPE is `target'.
1364
1365     - NAME affiliated keyword if TYPE is `other'.
1366
1367 A search cell is the internal representation of a fuzzy link.  It
1368 ignores white spaces and statistics cookies, if applicable.
1369
1370 (fn DATUM)
1371 (defalias 'org-export-search-cells #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\211\301\267\202\214\302\303\304\305\306\211;\2033\307\310#\2029\311A@\"\266\202#!\312\313\314B\315B\316\211;\203U\307\310#\202[\311A@\"\266\202\211\205d\317B\262E\"\262\202\262\320\302\321\211;\203~\307\310#\202\204\311A@\"\266\202!BC\202\262\322\211;\203\233\307\310#\202\241\311A@\"\266\202\211\205\260\211\315\302!BC\262\262\207" [plain-text #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (headline 31 target 109)) split-string replace-regexp-in-string "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]" "" :raw-value get-text-property 0 plist-get delq nil headline other :custom-id custom-id target :value :name] 13 (#$ . 148480)])
1372 #@211 Return search cells associated to string S.
1373 S is either the path of a fuzzy link or a search option, i.e., it
1374 tries to match either a headline (through custom ID or title),
1375 a target or a named element.
1376
1377 (fn S)
1378 (defalias 'org-export-string-to-search-cell #[257 "\300!\211\301\267\202\302\303\304\305O!BC\202.\306\304\305OBC\202.\303!\211\307B\310BD\262\262\207" [string-to-char #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (42 9 35 21)) headline split-string 1 nil custom-id target other] 7 (#$ . 149960)])
1379 #@173 Non-nil when DATUM matches search cells CELLS.
1380 DATUM is an element or object.  CELLS is a list of search cells,
1381 as returned by `org-export-search-cells'.
1382
1383 (fn DATUM CELLS)
1384 (defalias 'org-export-match-search-cell-p #[514 "\300!\211\205\301\302\303\304\305\306!\307\"\310\311%\"\207" [org-export-search-cells cl-some make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn CELL)"] 10 (#$ . 150525)])
1385 #@491 Return LINK destination.
1386
1387 INFO is a plist holding contextual information.
1388
1389 Return value can be an object or an element:
1390
1391 - If LINK path matches a target object (i.e. <<path>>) return it.
1392
1393 - If LINK path exactly matches the name affiliated keyword
1394   (i.e. #+NAME: path) of an element, return that element.
1395
1396 - If LINK path exactly matches any headline name, return that
1397   element.
1398
1399 - Otherwise, throw an error.
1400
1401 Assume LINK type is "fuzzy".  White spaces are not
1402 significant.
1403
1404 (fn LINK INFO)
1405 (defalias 'org-export-resolve-fuzzy-link #[514 "\301\302\303\211;\203\304\305#\202\306A@\"\266\202!!\306\307\"\206/\310\311\312\"\313\307#\210\211\262\314\315#\211\315=\204>\211\202\204\316\306\317\"\320B\321\322\323\324\325\n!\326\"\327\330%#\211\204u\331\332\303\211;\203j\304\305#\202p\306A@\"\266\202C\"\210\333\334\335\"\206\200@#\262\207" [org-element-all-elements org-export-string-to-search-cell org-link-unescape :path get-text-property 0 plist-get :resolve-fuzzy-link-cache make-hash-table :test eq plist-put gethash not-found org-element-map :parse-tree target make-byte-code 257 "\301\300\"\205\211\207" vconcat vector [org-export-match-search-cell-p] 4 "\n\n(fn DATUM)" signal org-link-broken puthash cl-some #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=?\205 \211\207" [plain-text headline] 3 "\n\n(fn DATUM)"]] 14 (#$ . 150947)])
1406 #@290 Return headline referenced as LINK destination.
1407
1408 INFO is a plist used as a communication channel.
1409
1410 Return value can be the headline element matched in current parse
1411 tree or a file name.  Assume LINK type is either "id" or
1412 "custom-id".  Throw an error if no match is found.
1413
1414 (fn LINK INFO)
1415 (defalias 'org-export-resolve-id-link #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304\303\305\"\306\307\310\311\312\313!\314\"\315\316%\317%\206@\320\303\321\"\"A\206@\322\323C\"\207" [:path get-text-property 0 plist-get org-element-map :parse-tree headline make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\2048\305\211;\203+\302\303#\2021\304A@\"\266\202\300\232\2059\211\207" vconcat vector [:ID get-text-property 0 plist-get :CUSTOM_ID] 7 "\n\n(fn HEADLINE)" first-match assoc :id-alist signal org-link-broken] 12 (#$ . 152354)])
1416 #@208 Return radio-target object referenced as LINK destination.
1417
1418 INFO is a plist used as a communication channel.
1419
1420 Return value can be a radio-target object or nil.  Assume LINK
1421 has type "radio".
1422
1423 (fn LINK INFO)
1424 (defalias 'org-export-resolve-radio-link #[514 "\300\301\302\303\211;\203\304\305#\202\306A@\"\266\202#\307\306\310\"\311\312\313\314\315\316!\317\"\320\321%\322%\207" [replace-regexp-in-string "[      \n]+" " " :path get-text-property 0 plist-get org-element-map :parse-tree radio-target make-byte-code 257 "\301\302\303\304\305\211;\203\306\307#\202\310A@\"\266\202#\311\211\300\311\211\312&\312=\205*\211\207" vconcat vector [compare-strings replace-regexp-in-string "[      \n]+" " " :value get-text-property 0 plist-get nil t] 11 "\n\n(fn RADIO)" first-match] 12 (#$ . 153247)])
1425 #@56 Return file URI associated to FILENAME.
1426
1427 (fn FILENAME)
1428 (defalias 'org-export-file-uri #[257 "\300\301\"\203 \302P\207\303!\204\207\304!\203\305P\207\306!\300\307\"\203*\310\202+\311P\207" [string-prefix-p "//" "file:" file-name-absolute-p org-file-remote-p "file:/" expand-file-name "/" "file://" "file:///"] 5 (#$ . 154062)])
1429 #@247 Return a unique reference, among REFERENCES.
1430 REFERENCES is an alist whose values are in-use references, as
1431 numbers.  Returns a number, which is the internal representation
1432 of a reference.  See also `org-export-format-reference'.
1433
1434 (fn REFERENCES)
1435 (defalias 'org-export-new-reference #[257 "\300\301!\302\"\203\300\301!\262\202\211\207" [random 268435456 rassq] 5 (#$ . 154411)])
1436 #@151 Format REFERENCE into a string.
1437 REFERENCE is a number representing a reference, as returned by
1438 `org-export-new-reference', which see.
1439
1440 (fn REFERENCE)
1441 (defalias 'org-export-format-reference #[257 "\300\301\"\207" [format "org%07x"] 4 (#$ . 154803)])
1442 #@336 Return a unique reference for DATUM, as a string.
1443
1444 DATUM is either an element or an object.  INFO is the current
1445 export state, as a plist.
1446
1447 This function checks `:crossrefs' property in INFO for search
1448 cells matching DATUM before creating a new reference.  Returned
1449 reference consists of alphanumeric characters only.
1450
1451 (fn DATUM INFO)
1452 (defalias 'org-export-get-reference #[514 "\300\301\"C\302\242\"@\206a\300\303\"\304!\305\306\307\310\311\312\"\313\"\314\315%\"\206.\316\242!\317!\211\203J\211@B\242B\240\210A\266\202\2022\210B\242B\240\210\320\301\242#\210\266\203\207" [plist-get :internal-references rassq :crossrefs org-export-search-cells cl-some make-byte-code 257 "\302\301\"A\211\205\303!\302\300\242\"?\205\262\207" vconcat vector [assoc org-export-format-reference] 6 "\n\n(fn CELL)" org-export-new-reference org-export-format-reference plist-put] 13 (#$ . 155060)])
1453 #@1087 Return ordinal number of an element or object.
1454
1455 ELEMENT is the element or object considered.  INFO is the plist
1456 used as a communication channel.
1457
1458 Optional argument TYPES, when non-nil, is a list of element or
1459 object types, as symbols, that should also be counted in.
1460 Otherwise, only provided element's type is considered.
1461
1462 Optional argument PREDICATE is a function returning a non-nil
1463 value if the current element or object should be counted in.  It
1464 accepts two arguments: the element or object being considered and
1465 the plist used as a communication channel.  This allows counting
1466 only a certain type of object (i.e. inline images).
1467
1468 Return value is a list of numbers if ELEMENT is a headline or an
1469 item.  It is nil for keywords.  It represents the footnote number
1470 for footnote definitions and footnote references.  If ELEMENT is
1471 a target, return the same value as if ELEMENT was the closest
1472 table, item or headline containing the target.  In any other
1473 case, return the sequence number of ELEMENT among elements or
1474 objects of the same type.
1475
1476 (fn ELEMENT INFO &optional TYPES PREDICATE)
1477 (defalias 'org-export-get-ordinal #[1026 "C\211\242\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203)\211\302\242\303\"\240\210\211\242\211:\2049\211;\205A\300\202A\211@9\205A\211@\262\304\305\"\203S\306\242\"\202\350\304\307\"\203\230\310\242\211;\203j\311\312#\202p\313A@\"\266\202\314\315\242\211;\203\203\311\312#\202\211\313A@\"\266\202\316!\317!$\262\202\350\320\321\"\203\250\322\242\"\202\350\312C\323\313\324\"\206\317\242\211:\204\305\211;\205\315\300\202\315\211@9\205\315\211@\262\325\326\327\330\331\n  $\332\"\333\334%    \335%\262\262\207" [plain-text target org-element-lineage (footnote-definition footnote-reference headline item table) eql headline org-export-get-headline-number item :structure get-text-property 0 plist-get org-list-get-item-number :begin org-list-prevs-alist org-list-parents-alist memql (footnote-definition footnote-reference) org-export-get-footnote-number org-element-map :parse-tree make-byte-code 257 "\300\242=\203 \303\242T\207\302\204\303\211\242T\240\210\304\207\302\301\"\205%\303\211\242T\240\210\304\207" vconcat vector [nil] 4 "\n\n(fn EL)" first-match] 19 (#$ . 155990)])
1478 #@328 Return count of lines of code before ELEMENT.
1479
1480 ELEMENT is an example-block or src-block element.  INFO is the
1481 plist used as a communication channel.
1482
1483 Count includes every line of code in example-block or src-block
1484 with a "+n" or "-n" switch before block.  Return nil if
1485 ELEMENT doesn't allow line numbering.
1486
1487 (fn ELEMENT INFO)
1488 (defalias 'org-export-get-loc #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\211:\205\\\211@\211\304\267\202YA\211\211\262\262\202ZA\211\302C\305\303\306\"\307\310\311\312\313\314\n\n#\315\"\316\317%    \320%\262\262\262\202Z\321\262\207" [:number-lines get-text-property 0 plist-get #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (new 36 continued 47)) org-element-map :parse-tree (src-block example-block) make-byte-code 257 "\211\300=\203 \302\242\301\\\207\303\211;\203\304\305#\202 \306A@\"\266\202\211\203i\307\310\211;\2036\304\305#\202<\306A@\"\266\202!:\203h@\211\311\267\202gA\211\302\\\240\266\202gA\211\302\211\242\\\\\240\266\210\210\210\312\207" vconcat vector [:number-lines get-text-property 0 plist-get org-count-lines :value #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (new 76 continued 89)) nil] 10 "\n\n(fn EL)" first-match nil] 18 (#$ . 158286)])
1489 #@357 Clean source code and extract references out of it.
1490
1491 ELEMENT has either a `src-block' an `example-block' type.
1492
1493 Return a cons cell whose CAR is the source code, cleaned from any
1494 reference, protective commas and spurious indentation, and CDR is
1495 an alist between relative line number (integer) and name of code
1496 reference on that line (string).
1497
1498 (fn ELEMENT)
1499 (defalias 'org-export-unravel-code #[257 "\301C\302C\303\211;\203\304\301#\202\305A@\"\266\202\306\307\310\204=\311\211;\2032\304\301#\2028\305A@\"\266\202\203A\202D\312!#\313\314!!\315\316\317\320\321\322\n\n#\323\"\324\325%\326\327\"\327#\242B\207" [org-src-preserve-indentation 0 nil :value get-text-property plist-get replace-regexp-in-string "\n\\'" #1="" :preserve-indent org-remove-indentation org-src-coderef-regexp org-src-coderef-format mapconcat make-byte-code 257 "\300\211\242T\240\210\303\302\"\204\207\301\300\242\304\305\"B\301\242B\240\210\306\307\310\211\311%\207" vconcat vector [string-match match-string 3 replace-match #1# nil 1] 7 "\n\n(fn LOC)" split-string "\n"] 15 (#$ . 159626)])
1500 #@906 Format CODE by applying FUN line-wise and return it.
1501
1502 CODE is a string representing the code to format.  FUN is
1503 a function.  It must accept three arguments: a line of
1504 code (string), the current line number (integer) or nil and the
1505 reference associated to the current line (string) or nil.
1506
1507 Optional argument NUM-LINES can be an integer representing the
1508 number of code lines accumulated until the current code.  Line
1509 numbers passed to FUN will take it into account.  If it is nil,
1510 FUN's second argument will always be nil.  This number can be
1511 obtained with `org-export-get-loc' function.
1512
1513 Optional argument REF-ALIST can be an alist between relative line
1514 number (i.e. ignoring NUM-LINES) and the name of the code
1515 reference on it.  If it is nil, FUN's third argument will always
1516 be nil.  It can be obtained through the use of
1517 `org-export-unravel-code' function.
1518
1519 (fn CODE FUN &optional NUM-LINES REF-ALIST)
1520 (defalias 'org-export-format-code #[1026 "\300\301\"\302C\303\304\305\306\307\310\n\n\n    $\311\"\312\313%\301#\301P\207" [split-string "\n" 0 mapconcat make-byte-code 257 "\303\211\242T\240\210\303\242\302\236A\300\301\205\301\303\242\\#\207" vconcat vector [] 6 "\n\n(fn --LOC)"] 16 (#$ . 160732)])
1521 #@508 Return source code from ELEMENT, formatted in a standard way.
1522
1523 ELEMENT is either a `src-block' or `example-block' element.  INFO
1524 is a plist used as a communication channel.
1525
1526 This function takes care of line numbering and code references
1527 inclusion.  Line numbers, when applicable, appear at the
1528 beginning of the line, separated from the code by two white
1529 spaces.  Code references, on the other hand, appear flushed to
1530 the right, separated by six white spaces from the widest line of
1531 code.
1532
1533 (fn ELEMENT INFO)
1534 (defalias 'org-export-format-code-default #[514 "\300!\211@\301\302\"\211\204\303\202o\304\211;\203 \305\306#\202&\307A@\"\266\202\205-A\310\"\211\205A\311\312\313G\\!G\"\314\315\316\317\"\"\204Q\306\202V\311\"G\\\320\321\322\323\324\325\"\326\"\327\330%$\266\204\207" [org-export-unravel-code split-string "\n" "" :retain-labels get-text-property 0 plist-get org-export-get-loc format "%%%ds  " number-to-string apply max mapcar length org-export-format-code make-byte-code 771 "\300\205\302\300\"\211\205!\303\304\301\\GG\\Z\305\"\302\306\"PQ\207" vconcat vector [format make-string 6 32 "(%s)"] 10 "\n\n(fn LOC LINE-NUM REF)"] 18 (#$ . 161953)])
1535 #@105 Non-nil when TABLE has a special column.
1536 All special columns will be ignored during export.
1537
1538 (fn TABLE)
1539 (defalias 'org-export-table-has-special-column-p #[257 "\300\3012\224\211:\204\302\202\211@9\203\211AA\202\211\262\211\203\217\211@\303\211;\2033\304\305#\2029\306A@\"\266\202\307=\203\210\211\211:\204J\302\202W\211@9\203V\211AA\202W\211\262@\211:\204c\302\202p\211@9\203o\211AA\202p\211\262\211\310\235\203~\311\262\202\207\211\203\207\312\301\302\"\210\210A\266\202\202\210\211\311=0\207" [empty exit nil :type get-text-property 0 plist-get standard (("/") ("#") ("!") ("$") ("*") ("_") ("^")) special throw] 10 (#$ . 163164)])
1540 #@165 Non-nil when TABLE has a header.
1541
1542 INFO is a plist used as a communication channel.
1543
1544 A table has a header when it contains at least two row groups.
1545
1546 (fn TABLE INFO)
1547 (defalias 'org-export-table-has-header-p #[514 "\300\301\"\206\302\303\304\"\305\301#\210\211\262\306\307#\211\307=\204#\211\202F\310C\311C\312\313\314\315\316\317\320\321  \"\322\"\323\324%\n\325%#\266\202\207" [plist-get :table-header-cache make-hash-table :test eq plist-put gethash no-cache 1 nil puthash org-element-map table-row make-byte-code 257 "\300\242\302V\203    \303\207\301\242\2034\304\211;\203\305\306#\202#\307A@\"\266\202\310=\2034\300\211\242T\240\210\301\311\240\207\301\242?\205[\304\211;\203I\305\306#\202O\307A@\"\266\202\312=\205[\301\303\240\210\311\207" vconcat vector [1 t :type get-text-property 0 plist-get rule nil standard] 7 "\n\n(fn ROW)" first-match] 18 (#$ . 163842)])
1548 #@111 Non-nil if TABLE-ROW is considered special.
1549 All special rows will be ignored during export.
1550
1551 (fn TABLE-ROW _)
1552 (defalias 'org-export-table-row-is-special-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205\347\211:\204&\305\2023\211@9\2032\211AA\2023\211\262@\211:\204?\305\202L\211@9\203K\211AA\202L\211\262\211\306\232\206\345\307\310\211;\203e\301\302#\202k\303A@\"\266\203!\203w\211\311\235\206\345\312\3132\343\211:\204\206\305\202\223\211@9\203\222\211AA\202\223\211\262\211\203\336\211@\211\211:\204\245\305\202\262\211@9\203\261\211AA\202\262\211\262\211\203\326\211A\204\321\211@;\203\321\314\315@\"\203\321\316\262\202\326\317\313\305\"\210\210A\266\202\202\225\210\211\316=0\262\262\207" [:type get-text-property 0 plist-get standard nil ("/") org-export-table-has-special-column-p :parent (("^") ("_") ("$") ("!")) empty exit string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie throw] 11 (#$ . 164754)])
1553 #@254 Return TABLE-ROW's group number, as an integer.
1554
1555 INFO is a plist used as the communication channel.
1556
1557 Return value is the group number, as an integer, or nil for
1558 special rows and rows separators.  First group is also table's
1559 header.
1560
1561 (fn TABLE-ROW INFO)
1562 (defalias 'org-export-table-row-group #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205z\303\305\"\2060\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204?\211\202x\302C\314C\315\316\211;\203U\301\302#\202[\303A@\"\266\203\317\320\321\322\323\324 \n\n#\325\"\326\327%$\266\312\"\266\202\207" [:type get-text-property 0 plist-get standard :table-row-group-cache make-hash-table :test eq plist-put gethash no-cache nil org-element-map :parent table-row make-byte-code 257 "\303\211;\203\304\305#\202\306A@\"\266\202\307=\203 \302\310\240\207\302\242\204/\301\211\242T\240\210\302\311\240\210\312\301\242\300#\207" vconcat vector [:type get-text-property 0 plist-get rule nil t puthash] 7 "\n\n(fn ROW)"] 17 (#$ . 165739)])
1563 #@209 Return TABLE-CELL contents width.
1564
1565 INFO is a plist used as the communication channel.
1566
1567 Return value is the width given by the last width cookie in the
1568 same column as TABLE-CELL, or nil.
1569
1570 (fn TABLE-CELL INFO)
1571 (defalias 'org-export-table-cell-width #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\211\300\211;\203(\301\302#\202.\303A@\"\266\203\211:\204:\304\202G\211@9\203F\211AA\202G\211\262\211G\211>GZ\303\305\"\206h\306\307\310\"\311\305#\210\211\262\312\"\206w\313\314\315\"#\211H\211\315=\204\204\211\202\304\211:\204\220\304\202\235\211@9\203\234\211AA\202\235\211\262\211\203\211@\316 \"\203    \211\211:\204\267\304\202\304\211@9\203\303\211AA\202\304\211\262\234\211:\204\322\304\202\337\211@9\203\336\211AA\202\337\211\262\211@\203A\204\211;\203\317\320\"\203\321\322\"\203\323\321\322\"!\262\266A\266\202\202\237I\262\262\207" [:parent get-text-property 0 plist-get nil :table-cell-width-cache make-hash-table :test eq plist-put gethash puthash make-vector empty org-export-table-row-is-special-p string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" match-string 1 string-to-number] 19 (#$ . 166783)])
1572 #@423 Return TABLE-CELL contents alignment.
1573
1574 INFO is a plist used as the communication channel.
1575
1576 Return alignment as specified by the last alignment cookie in the
1577 same column as TABLE-CELL.  If no such cookie is found, a default
1578 alignment value will be deduced from fraction of numbers in the
1579 column (see `org-table-number-fraction' for more information).
1580 Possible values are `left', `right' and `center'.
1581
1582 (fn TABLE-CELL INFO)
1583 (defalias 'org-export-table-cell-alignment #[514 "\302\303!\210\304\211;\203\305\306#\202\307A@\"\266\203\211\304\211;\203,\305\306#\2022\307A@\"\266\203\211:\204>\310\202K\211@9\203J\211AA\202K\211\262\211G\211>GZ\307\311\"\206l\312\313\314\"\315\311#\210\211\262\316\"\206{\317\320\310\"#\211H\206\332\306\211\310\211\n\304\211;\203\226\305\306#\202\234\307A@\"\266\203\211:\204\247\310\202\264\211@9\203\263\211AA\202\264\211\262\211\203\245\211@\321\"\203\"\211\211:\204\316\310\202\333\211@9\203\332\211AA\202\333\211\262    \234\211:\204\351\310\202\366\211@9\203\365\211AA\202\366\211\262\211\203\211A\204\211@;\203\322\323@\"\203\324\325@\"\203\324\325@\"\262\210\202\236\326\211;\2031\305\306#\2027\307A@\"\266\202\327=\204\236\204\236\330\211:\204M\310\202Z\211@9\203Y\211AA\202Z\211\262\n\234\211:\204h\310\202u\211@9\203t\211AA\202u\211\262\"T\262\322\"\204\225\211\331\230\203\217\204\225\310\262\202\235\332\262T\262\210A\266\202\202\266\210\333\232\203\263\334\202\327\335\232\203\275\336\202\327\337\232\203\307\340\202\327\341!\245    Y\203\326\336\202\327\334I\266\204\207" [org-table-number-regexp org-table-number-fraction require org-table :parent get-text-property 0 plist-get nil :table-cell-alignment-cache make-hash-table :test eq plist-put gethash puthash make-vector org-export-table-row-is-special-p string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'" match-string 1 :type rule org-export-data "" t "l" left "r" right "c" center float] 21 (#$ . 167984)])
1584 #@391 Return TABLE-CELL borders.
1585
1586 INFO is a plist used as a communication channel.
1587
1588 Return value is a list of symbols, or nil.  Possible values are:
1589 `top', `bottom', `above', `below', `left' and `right'.  Note:
1590 `top' (resp. `bottom') only happen for a cell in the first
1591 row (resp. last row) of the table, ignoring table rules, if any.
1592
1593 Returned borders ignore special rows.
1594
1595 (fn TABLE-CELL INFO)
1596 (defalias 'org-export-table-cell-borders #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\304!\305\211\3062\236\307\211:\204-\305\202:\211@9\2039\211AA\202:\211\262!>A\211\203\215\211@\310\211;\203T\301\302#\202Z\303A@\"\266\202\311=\203g\312\262\202\206\313\"\204\206\203\201\314\306\315B\211\262\"\210\202\206\314\306\305\"\210A\266\202\202?\210\211\203\227\315B\262\316B\211\2620\266\305\3062 \211:\204\260\305\202\275\211@9\203\274\211AA\202\275\211\262>A\211\203\211@\310\211;\203\326\301\302#\202\334\303A@\"\266\202\311=\203\351\312\262\202\313\"\204\203\314\306\317B\211\262\"\210\202\314\306\305\"\210A\266\202\202\301\210\211\203\317B\262\320B\211\2620\266\3062%\211:\2040\305\202=\211@9\203<\211AA\202=\211\262\211G>GZ\262\307\211:\204T\305\202a\211@9\203`\211AA\202a\211\262!\211\205 \211@\310\211;\203y\301\302#\202\303A@\"\266\202\311=\204\211\211:\204\220\305\202\235\211@9\203\234\211AA\202\235\211\262@\211:\204\251\305\202\266\211@9\203\265\211AA\202\266\211\262\321\232\203\322\323\211:\204\311\305\202\326\211@9\203\325\211AA\202\326\211\262\"\302U\204\350\211S\234\324\235\204\360\211\234\325\235\203\365\326B\262TGU\204\211T\234\327\235\204\211\234\330\235\203\331B\262\314\306\305\"\266A\266\202\202d\262\2620\210\207" [:parent get-text-property 0 plist-get org-export-get-parent-table nil exit reverse :type rule t org-export-table-row-is-special-p throw above top below bottom ("/") mapcar #[257 "\211\211:\204\n\300\202\211@9\203\211AA\202\211\262\211\301\235\205!\211@\207" [nil (("<") ("<>") (">") nil)] 4 "\n\n(fn CELL)"] (">" "<>") ("<" "<>") left ("<" "<>") (">" "<>") right] 14 (#$ . 170029)])
1597 #@135 Non-nil when TABLE-CELL is at the beginning of a column group.
1598 INFO is a plist used as a communication channel.
1599
1600 (fn TABLE-CELL INFO)
1601 (defalias 'org-export-table-cell-starts-colgroup-p #[514 "\300\301\211;\203\302\303#\202\304A@\"\266\203\305\306\307%=\206)\310\311\">\207" [org-element-map :parent get-text-property 0 plist-get table-cell identity first-match left org-export-table-cell-borders] 10 (#$ . 172224)])
1602 #@129 Non-nil when TABLE-CELL is at the end of a column group.
1603 INFO is a plist used as a communication channel.
1604
1605 (fn TABLE-CELL INFO)
1606 (defalias 'org-export-table-cell-ends-colgroup-p #[514 "\300\301\211;\203\302\303#\202\304A@\"\266\203\211:\204\"\305\202/\211@9\203.\211AA\202/\211\262!@=\206>\306\307\">\207" [last :parent get-text-property 0 plist-get nil right org-export-table-cell-borders] 10 (#$ . 172662)])
1607 #@130 Non-nil when TABLE-ROW is at the beginning of a row group.
1608 INFO is a plist used as a communication channel.
1609
1610 (fn TABLE-ROW INFO)
1611 (defalias 'org-export-table-row-starts-rowgroup-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\206 \305\"?\205L\306\211:\204/\307\202<\211@9\203;\211AA\202<\211\262@\"\310>\206J\311>\262\207" [:type get-text-property 0 plist-get rule org-export-table-row-is-special-p org-export-table-cell-borders nil top above] 8 (#$ . 173097)])
1612 #@124 Non-nil when TABLE-ROW is at the end of a row group.
1613 INFO is a plist used as a communication channel.
1614
1615 (fn TABLE-ROW INFO)
1616 (defalias 'org-export-table-row-ends-rowgroup-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\206 \305\"?\205L\306\211:\204/\307\202<\211@9\203;\211AA\202<\211\262@\"\310>\206J\311>\262\207" [:type get-text-property 0 plist-get rule org-export-table-row-is-special-p org-export-table-cell-borders nil bottom below] 8 (#$ . 173598)])
1617 #@185 Non-nil when TABLE-ROW is located within table's header.
1618 INFO is a plist used as a communication channel.  Always return
1619 nil for special rows and rows separators.
1620
1621 (fn TABLE-ROW INFO)
1622 (defalias 'org-export-table-row-in-header-p #[514 "\300\301!\"\205\302\303\"\304\"\207" [org-export-table-has-header-p org-export-get-parent-table eql org-export-table-row-group 1] 6 (#$ . 174094)])
1623 #@127 Non-nil when TABLE-ROW is the first table header's row.
1624 INFO is a plist used as a communication channel.
1625
1626 (fn TABLE-ROW INFO)
1627 (defalias 'org-export-table-row-starts-header-p #[514 "\300\"\205 \301\"\207" [org-export-table-row-in-header-p org-export-table-row-starts-rowgroup-p] 5 (#$ . 174490)])
1628 #@126 Non-nil when TABLE-ROW is the last table header's row.
1629 INFO is a plist used as a communication channel.
1630
1631 (fn TABLE-ROW INFO)
1632 (defalias 'org-export-table-row-ends-header-p #[514 "\300\"\205 \301\"\207" [org-export-table-row-in-header-p org-export-table-row-ends-rowgroup-p] 5 (#$ . 174798)])
1633 #@209 Return TABLE-ROW number.
1634 INFO is a plist used as a communication channel.  Return value is
1635 zero-indexed and ignores separators.  The function returns nil
1636 for special rows and separators.
1637
1638 (fn TABLE-ROW INFO)
1639 (defalias 'org-export-table-row-number #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205a\303\305\"\2060\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204?\211\202_\314C\315\316!\317\320\321\322\323\324\n    \"\325\"\326\327%$\266\312\"\266\202\207" [:type get-text-property 0 plist-get standard :table-row-number-cache make-hash-table :test eq plist-put gethash no-cache -1 org-element-map org-export-get-parent-table table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\205%\307\301\211\242T\240\300#\207" vconcat vector [:type get-text-property 0 plist-get standard puthash] 7 "\n\n(fn ROW)"] 15 (#$ . 175101)])
1640 #@216 Return TABLE dimensions.
1641
1642 INFO is a plist used as a communication channel.
1643
1644 Return value is a CONS like (ROWS . COLUMNS) where
1645 ROWS (resp. COLUMNS) is the number of exportable
1646 rows (resp. columns).
1647
1648 (fn TABLE INFO)
1649 (defalias 'org-export-table-dimensions #[514 "\300C\301C\301C\302\303\304\305\306\307\310\n    \"\311\"\312\313%$\210\302\242\314\304\305\315\307\310    !\316\"\317\320%$\210\211\242\242B\207" [nil 0 org-element-map table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\205+\301\211\242T\240\210\300\242?\205+\300\240\207" vconcat vector [:type get-text-property 0 plist-get standard] 7 "\n\n(fn ROW)" table-cell "\300\211\242T\240\207" [] 3 "\n\n(fn _)"] 15 (#$ . 176008)])
1650 #@321 Return address of a regular TABLE-CELL object.
1651
1652 TABLE-CELL is the cell considered.  INFO is a plist used as
1653 a communication channel.
1654
1655 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
1656 zero-based index.  Only exportable cells are considered.  The
1657 function returns nil for other cells.
1658
1659 (fn TABLE-CELL INFO)
1660 (defalias 'org-export-table-cell-address #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\304\"\211\205<\211\302C\305\306\307\310\311\312\313     \"\314\"\315\316%\317%\262B\207" [:parent get-text-property 0 plist-get org-export-table-row-number org-element-map table-cell make-byte-code 257 "\211\300=\203    \301\242\207\301\211\242T\240\210\302\207" vconcat vector [nil] 3 "\n\n(fn CELL)" first-match] 16 (#$ . 176745)])
1661 #@321 Return regular table-cell object at ADDRESS in TABLE.
1662
1663 Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
1664 zero-based index.  TABLE is a table type element.  INFO is
1665 a plist used as a communication channel.
1666
1667 If no table-cell, among exportable cells, is found at ADDRESS,
1668 return nil.
1669
1670 (fn ADDRESS TABLE INFO)
1671 (defalias 'org-export-get-table-cell-at #[771 "A\300C\301@\300C\301\302\303\304\305\306\307        \"\310\"\311\312%    \313%\266\202\314\303\304\315\306\307        \"\316\"\317\320%\313%\207" [0 org-element-map table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\203\307\207\301\242\300U\203&\207\301\211\242T\240\210\307\207" vconcat vector [:type get-text-property 0 plist-get rule nil] 7 "\n\n(fn ROW)" first-match table-cell "\301\242\300U\203\207\301\211\242T\240\210\302\207" [nil] 3 "\n\n(fn CELL)"] 18 (#$ . 177511)])
1672 #@756 Collect headlines in order to build a table of contents.
1673
1674 INFO is a plist used as a communication channel.
1675
1676 When optional argument N is an integer, it specifies the depth of
1677 the table of contents.  Otherwise, it is set to the value of the
1678 last headline level.  See `org-export-headline-levels' for more
1679 information.
1680
1681 Optional argument SCOPE, when non-nil, is an element.  If it is
1682 a headline, only children of SCOPE are collected.  Otherwise,
1683 collect children of the headline containing provided element.  If
1684 there is no such headline, collect all headlines.  In any case,
1685 argument N becomes relative to the level of that headline.
1686
1687 Return a list of all exportable headlines as parsed elements.
1688 Footnote sections are ignored.
1689
1690 (fn INFO &optional N SCOPE)
1691 (defalias 'org-export-collect-headlines #[769 "\211\204 \300\301\"\2027\211\211:\204\211;\205\"\302\202\"\211@9\205\"\211@\262\303=\203-\211\2027\304!\2067\300\301\"\300\305\"\306!\204E\211\202p\211:\204T\211;\205\\\302\202\\\211@9\205\\\211@\262\307=\203g\202n\310\"\\^\311\211:\204{\312\202\210\211@9\203\207\211AA\202\210\211\262\303\313\314\315\316\317     \"\320\"\321\322%    $\207" [plist-get :parse-tree plain-text headline org-export-get-parent-headline :headline-levels wholenump org-data org-export-get-relative-level org-element-map nil make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202?\205(\306\300\"\211\301X\205&\262\207" vconcat vector [:footnote-section-p get-text-property 0 plist-get org-export-get-relative-level] 7 "\n\n(fn HEADLINE)"] 16 (#$ . 178401)])
1692 #@499 Collect referenceable elements of a determined type.
1693
1694 TYPE can be a symbol or a list of symbols specifying element
1695 types to search.  Only elements with a caption are collected.
1696
1697 INFO is a plist used as a communication channel.
1698
1699 When non-nil, optional argument PREDICATE is a function accepting
1700 one argument, an element of type TYPE.  It returns a non-nil
1701 value when that element should be collected.
1702
1703 Return a list of all elements found, in order of appearance.
1704
1705 (fn TYPE INFO &optional PREDICATE)
1706 (defalias 'org-export-collect-elements #[770 "\300\301\302\"\303\304\305\306\307!\310\"\311\312%$\207" [org-element-map plist-get :parse-tree make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\205%\300\203$\300!\205%\211\207" vconcat vector [:caption get-text-property 0 plist-get] 7 "\n\n(fn ELEMENT)"] 12 (#$ . 180002)])
1707 #@134 Build a list of tables.
1708 INFO is a plist used as a communication channel.
1709
1710 Return a list of table elements with a caption.
1711
1712 (fn INFO)
1713 (defalias 'org-export-collect-tables #[257 "\300\301\"\207" [org-export-collect-elements table] 4 (#$ . 180860)])
1714 #@465 Build a list of figures.
1715
1716 INFO is a plist used as a communication channel.  PREDICATE is
1717 a function which accepts one argument: a paragraph element and
1718 whose return value is non-nil when that element should be
1719 collected.
1720
1721 A figure is a paragraph type element, with a caption, verifying
1722 PREDICATE.  The latter has to be provided since a "figure" is
1723 a vague concept that may depend on back-end.
1724
1725 Return a list of elements recognized as figures.
1726
1727 (fn INFO PREDICATE)
1728 (defalias 'org-export-collect-figures #[514 "\300\301#\207" [org-export-collect-elements paragraph] 6 (#$ . 181115)])
1729 #@143 Build a list of src blocks.
1730
1731 INFO is a plist used as a communication channel.
1732
1733 Return a list of src-block elements with a caption.
1734
1735 (fn INFO)
1736 (defalias 'org-export-collect-listings #[257 "\300\301\"\207" [org-export-collect-elements src-block] 4 (#$ . 181706)])
1737 #@513 Return an export back-end appropriate for table of contents entries.
1738
1739 PARENT is an export back-end the returned back-end should inherit
1740 from.
1741
1742 By default, the back-end removes footnote references and targets.
1743 It also changes links and radio targets into regular text.
1744 TRANSCODERS optional argument, when non-nil, specifies additional
1745 transcoders.  A transcoder follows the pattern (TYPE . FUNCTION)
1746 where type is an element or object type and FUNCTION the function
1747 transcoding it.
1748
1749 (fn PARENT &rest TRANSCODERS)
1750 (defalias 'org-export-toc-entry-backend #[385 "\300\301\302B\303\304B\305\306B\307\302BF\"\310\311\312\312\211\211\211&\207" [append footnote-reference ignore link #[771 "\206\300\301\211;\203\302\303#\202\304A@\"\266\202\"\207" [org-export-data :raw-link get-text-property 0 plist-get] 10 "\n\n(fn L C I)"] radio-target #[771 "\207" [] 4 "\n\n(fn R C _)"] target record org-export-backend nil] 13 (#$ . 181976)])
1751 (byte-code "\300\301\302\303#\300\207" [function-put org-export-toc-entry-backend lisp-indent-function 1] 4)
1752 #@450 Smart quotes translations.
1753
1754 Alist whose CAR is a language string and CDR is an alist with
1755 quote type as key and a plist associating various encodings to
1756 their translation as value.
1757
1758 A quote type can be any symbol among `primary-opening',
1759 `primary-closing', `secondary-opening', `secondary-closing' and
1760 `apostrophe'.
1761
1762 Valid encodings include `:utf-8', `:html', `:latex' and
1763 `:texinfo'.
1764
1765 If no translation is found, the quote character is left as-is.
1766 (defconst org-export-smart-quotes-alist '(("ar" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‹" :html "&lsaquo;" :latex "\\guilsinglleft{}" :texinfo "@guilsinglleft{}") (secondary-closing :utf-8 "›" :html "&rsaquo;" :latex "\\guilsinglright{}" :texinfo "@guilsinglright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("da" (primary-opening :utf-8 "»" :html "&raquo;" :latex ">>" :texinfo "@guillemetright{}") (primary-closing :utf-8 "«" :html "&laquo;" :latex "<<" :texinfo "@guillemetleft{}") (secondary-opening :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}" :texinfo "@guilsinglright{}") (secondary-closing :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}" :texinfo "@guilsingleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("de" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("en" (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("es" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (apostrophe :utf-8 "’" :html "&rsquo;")) ("fr" (primary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (primary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (secondary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (secondary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("is" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("no" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nb" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nn" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("ru" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html: "&#39;")) ("sl" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("sv" (primary-opening :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (secondary-opening :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;"))) (#$ . 183037))
1767 #@116 Return smart quote status at the beginning of string S.
1768 INFO is the current export state, as a plist.
1769
1770 (fn S INFO)
1771 (defalias 'org-export--smart-quote-status #[514 "\301\211;\203\302\303#\202\304A@\"\266\202\304\305\"\206+\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204=\236A\202\252\314C\314C\315\316!\211\203e\211\211;\203Z\302\303#\202`\304A@\"\266\202\202\211:\204p\314\202}\211@9\203|\211AA\202}\211\262\262\317\320\321\322\323\324 \n\n#\325\"\326\327%    \314&\210\330\242#\210\242\236A\266\202\207" [org-element-recursive-objects :parent get-text-property 0 plist-get :smart-quote-cache make-hash-table :test eq plist-put gethash missing-data nil org-element-map org-element-secondary-p plain-text make-byte-code 257 "\303\304\305\306#\211\262\203\307\303\"\310\232\203)\301\211\242?\240\210\301\242\203%\311\202 \312\202 \301\242\2042\313\202 \303V\203@SO\202{\314\300\"\211\204L\304\202y\211;\203X\211\315\304O\202y\316\211;\203g\317\303#\202m\320A@\"\266\202\321>\203x\322\202y\323\262TGW\203\215T\324\\O\202\250\325\300\"\211\204\231\304\202\246\211;\203\245\211\303\326O\202\246\322\262;\203\264\305\327\"\202\267\330>\205\311\211;\203\306\305\331\"\202\311\211\322=;\203\325\305\331\"\202\330\322=\205\352;\203\347\305\332\"\202\352\333>\203\370\211\203\370\334\335!\202    \203\336\202    \211\203\337\202    \313\266\204B\262T\262\202\211\205#\302\237B\302\242B\240\207" vconcat vector [0 nil string-match "['\"]" match-string "\"" primary-opening primary-closing apostrophe org-export-get-previous-element -1 :post-blank get-text-property plist-get (0 nil) no-blank blank 2 org-export-get-next-element 1 "\\s\"\\|\\s-\\|\\s(" (blank nil) "\\w\\|\\s.\\|\\s_" "\\s-\\|\\s)\\|\\s.\\|\\s\"" (blank nil) error "Should not happen" secondary-opening secondary-closing] 10 "\n\n(fn TEXT)" puthash] 18 (#$ . 188842)])
1772 #@500 Replace regular quotes with "smart" quotes in string S.
1773
1774 ENCODING is a symbol among `:html', `:latex', `:texinfo' and
1775 `:utf-8'.  INFO is a plist used as a communication channel.
1776
1777 The function has to retrieve information about string
1778 surroundings in parse tree.  It can only happen with an
1779 unmodified string.  Thus, if S has already been through another
1780 process, a non-nil ORIGINAL optional argument will provide that
1781 original string.
1782
1783 Return the new string.
1784
1785 (fn S ENCODING INFO &optional ORIGINAL)
1786 (defalias 'org-export-activate-smart-quotes #[1027 "\300\301\206\"!C\302\303\304\305\306\307\310\n\n    #\311\"\312\313%\314\315%\207" [copy-sequence org-export--smart-quote-status replace-regexp-in-string "['\"]" make-byte-code 257 "\304\302\242\302\211\242A\240\210\242\305\304\301\306\" \"A\236A\300\"\206\211\207" vconcat vector [org-export-smart-quotes-alist plist-get assoc :language] 7 "\n\n(fn MATCH)" nil t] 15 (#$ . 190811)])
1787 #@96 Return BLOB parent headline or nil.
1788 BLOB is the element or object being considered.
1789
1790 (fn BLOB)
1791 (defalias 'org-export-get-parent-headline #[257 "\300\301\"\207" [org-element-lineage (headline)] 4 (#$ . 191761)])
1792 #@95 Return first element containing OBJECT or nil.
1793 OBJECT is the object to consider.
1794
1795 (fn OBJECT)
1796 (defalias 'org-export-get-parent-element #[257 "\301\"\207" [org-element-all-elements org-element-lineage] 4 (#$ . 191979)])
1797 #@113 Return OBJECT parent table or nil.
1798 OBJECT is either a `table-cell' or `table-element' type object.
1799
1800 (fn OBJECT)
1801 (defalias 'org-export-get-parent-table #[257 "\300\301\"\207" [org-element-lineage (table)] 4 (#$ . 192207)])
1802 #@409 Return previous element or object.
1803
1804 BLOB is an element or object.  INFO is a plist used as
1805 a communication channel.  Return previous exportable element or
1806 object, a string, or nil.
1807
1808 When optional argument N is a positive integer, return a list
1809 containing up to N siblings before BLOB, from farthest to
1810 closest.  With any other non-nil value, return a list containing
1811 all of them.
1812
1813 (fn BLOB INFO &optional N)
1814 (defalias 'org-export-get-previous-element #[770 "\300!\301\211;\203\302\303#\202\304A@\"\266\203\2039\211;\203.\302\303#\2024\304A@\"\266\202\202R\211\211:\204C\305\202P\211@9\203O\211AA\202P\211\262\305\3062\256\307!>A\211\203\252\211@\211\304    \310\">\204\243\204{\311\306\"\210\202\243\312!\204\212\211B\262\202\243\303U\203\231\311\306\"\210\202\243S\262\211B\262A\266\202\202^\2620\207" [org-element-secondary-p :parent get-text-property 0 plist-get nil exit reverse :ignore-list throw wholenump] 13 (#$ . 192437)])
1815 #@399 Return next element or object.
1816
1817 BLOB is an element or object.  INFO is a plist used as
1818 a communication channel.  Return next exportable element or
1819 object, a string, or nil.
1820
1821 When optional argument N is a positive integer, return a list
1822 containing up to N siblings after BLOB, from closest to farthest.
1823 With any other non-nil value, return a list containing all of
1824 them.
1825
1826 (fn BLOB INFO &optional N)
1827 (defalias 'org-export-get-next-element #[770 "\300!\301\211;\203\302\303#\202\304A@\"\266\203\203:\211;\203/\302\303#\2025\304A@\"\266\202\202S\211:\204D\305\202Q\211@9\203P\211AA\202Q\211\262>A\305\3062\255\211\203\250\211@\211\304    \307\">\204\241\204x\310\306\"\210\202\241\311!\204\207\211B\262\202\241\303U\203\227\310\306\237\"\210\202\241S\262\211B\262A\266\202\202[\237\2620\207" [org-element-secondary-p :parent get-text-property 0 plist-get nil exit :ignore-list throw wholenump] 13 (#$ . 193432)])
1828 #@411 Dictionary for export engine.
1829
1830 Alist whose car is the string to translate and cdr is an alist
1831 whose car is the language string and cdr is a plist whose
1832 properties are possible charsets and values translated terms.
1833
1834 It is used as a database for `org-export-translate'.  Since this
1835 function returns the string as-is if no translation was found,
1836 the variable only needs to record values different from the
1837 entry.
1838 (defconst org-export-dictionary '(("%e %n: %c" ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c")) ("Author" ("ar" :default "تأليف") ("ca" :default "Autor") ("cs" :default "Autor") ("da" :default "Forfatter") ("de" :default "Autor") ("eo" :html "A&#365;toro") ("es" :default "Autor") ("et" :default "Autor") ("fi" :html "Tekij&auml;") ("fr" :default "Auteur") ("hu" :default "Szerz&otilde;") ("is" :html "H&ouml;fundur") ("it" :default "Autore") ("ja" :default "著者" :html "&#33879;&#32773;") ("nl" :default "Auteur") ("no" :default "Forfatter") ("nb" :default "Forfatter") ("nn" :default "Forfattar") ("pl" :default "Autor") ("pt_BR" :default "Autor") ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("sl" :default "Avtor") ("sv" :html "F&ouml;rfattare") ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者") ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者")) ("Continued from previous page" ("ar" :default "تتمة الصفحة السابقة") ("cs" :default "Pokračování z předchozí strany") ("de" :default "Fortsetzung von vorheriger Seite") ("es" :html "Contin&uacute;a de la p&aacute;gina anterior" :ascii "Continua de la pagina anterior" :default "Continúa de la página anterior") ("fr" :default "Suite de la page précédente") ("it" :default "Continua da pagina precedente") ("ja" :default "前ページからの続き") ("nl" :default "Vervolg van vorige pagina") ("pt" :default "Continuação da página anterior") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)" :utf-8 "(Продолжение)") ("sl" :default "Nadaljevanje s prejšnje strani")) ("Continued on next page" ("ar" :default "التتمة في الصفحة التالية") ("cs" :default "Pokračuje na další stránce") ("de" :default "Fortsetzung nächste Seite") ("es" :html "Contin&uacute;a en la siguiente p&aacute;gina" :ascii "Continua en la siguiente pagina" :default "Continúa en la siguiente página") ("fr" :default "Suite page suivante") ("it" :default "Continua alla pagina successiva") ("ja" :default "次ページに続く") ("nl" :default "Vervolg op volgende pagina") ("pt" :default "Continua na página seguinte") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)" :utf-8 "(Продолжение следует)") ("sl" :default "Nadaljevanje na naslednji strani")) ("Created" ("cs" :default "Vytvořeno") ("sl" :default "Ustvarjeno")) ("Date" ("ar" :default "بتاريخ") ("ca" :default "Data") ("cs" :default "Datum") ("da" :default "Dato") ("de" :default "Datum") ("eo" :default "Dato") ("es" :default "Fecha") ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev") ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;") ("hu" :html "D&aacute;tum") ("is" :default "Dagsetning") ("it" :default "Data") ("ja" :default "日付" :html "&#26085;&#20184;") ("nl" :default "Datum") ("no" :default "Dato") ("nb" :default "Dato") ("nn" :default "Dato") ("pl" :default "Data") ("pt_BR" :default "Data") ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("sl" :default "Datum") ("sv" :default "Datum") ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期") ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期")) ("Equation" ("ar" :default "معادلة") ("cs" :default "Rovnice") ("da" :default "Ligning") ("de" :default "Gleichung") ("es" :ascii "Ecuacion" :html "Ecuaci&oacute;n" :default "Ecuación") ("et" :html "V&#245;rrand" :utf-8 "Võrrand") ("fr" :ascii "Equation" :default "Équation") ("is" :default "Jafna") ("ja" :default "方程式") ("no" :default "Ligning") ("nb" :default "Ligning") ("nn" :default "Likning") ("pt_BR" :html "Equa&ccedil;&atilde;o" :default "Equação" :ascii "Equacao") ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;" :utf-8 "Уравнение") ("sl" :default "Enačba") ("sv" :default "Ekvation") ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程")) ("Figure" ("ar" :default "شكل") ("cs" :default "Obrázek") ("da" :default "Figur") ("de" :default "Abbildung") ("es" :default "Figura") ("et" :default "Joonis") ("is" :default "Mynd") ("ja" :default "図" :html "&#22259;") ("no" :default "Illustrasjon") ("nb" :default "Illustrasjon") ("nn" :default "Illustrasjon") ("pt_BR" :default "Figura") ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок") ("sv" :default "Illustration") ("zh-CN" :html "&#22270;" :utf-8 "图")) ("Figure %d:" ("ar" :default "شكل %d:") ("cs" :default "Obrázek %d:") ("da" :default "Figur %d") ("de" :default "Abbildung %d:") ("es" :default "Figura %d:") ("et" :default "Joonis %d:") ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:") ("is" :default "Mynd %d") ("ja" :default "図%d: " :html "&#22259;%d: ") ("no" :default "Illustrasjon %d") ("nb" :default "Illustrasjon %d") ("nn" :default "Illustrasjon %d") ("pt_BR" :default "Figura %d:") ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:") ("sl" :default "Slika %d") ("sv" :default "Illustration %d") ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d ")) ("Footnotes" ("ar" :default "الهوامش") ("ca" :html "Peus de p&agrave;gina") ("cs" :default "Poznámky pod čarou") ("da" :default "Fodnoter") ("de" :html "Fu&szlig;noten" :default "Fußnoten") ("eo" :default "Piednotoj") ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página") ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused") ("fi" :default "Alaviitteet") ("fr" :default "Notes de bas de page") ("hu" :html "L&aacute;bjegyzet") ("is" :html "Aftanm&aacute;lsgreinar") ("it" :html "Note a pi&egrave; di pagina") ("ja" :default "脚注" :html "&#33050;&#27880;") ("nl" :default "Voetnoten") ("no" :default "Fotnoter") ("nb" :default "Fotnoter") ("nn" :default "Fotnotar") ("pl" :default "Przypis") ("pt_BR" :html "Notas de Rodap&eacute;" :default "Notas de Rodapé" :ascii "Notas de Rodape") ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски") ("sl" :default "Opombe") ("sv" :default "Fotnoter") ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;" :utf-8 "Примітки") ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注") ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註")) ("List of Listings" ("ar" :default "قائمة بالبرامج") ("cs" :default "Seznam programů") ("da" :default "Programmer") ("de" :default "Programmauflistungsverzeichnis") ("es" :ascii "Indice de Listados de programas" :html "&Iacute;ndice de Listados de programas" :default "Índice de Listados de programas") ("et" :default "Loendite nimekiri") ("fr" :default "Liste des programmes") ("ja" :default "ソースコード目次") ("no" :default "Dataprogrammer") ("nb" :default "Dataprogrammer") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;" :utf-8 "Список распечаток") ("sl" :default "Seznam programskih izpisov") ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录")) ("List of Tables" ("ar" :default "قائمة بالجداول") ("cs" :default "Seznam tabulek") ("da" :default "Tabeller") ("de" :default "Tabellenverzeichnis") ("es" :ascii "Indice de tablas" :html "&Iacute;ndice de tablas" :default "Índice de tablas") ("et" :default "Tabelite nimekiri") ("fr" :default "Liste des tableaux") ("is" :default "Töfluskrá" :html "T&ouml;fluskr&aacute;") ("ja" :default "表目次") ("no" :default "Tabeller") ("nb" :default "Tabeller") ("nn" :default "Tabeller") ("pt_BR" :default "Índice de Tabelas" :ascii "Indice de Tabelas") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;" :utf-8 "Список таблиц") ("sl" :default "Seznam tabel") ("sv" :default "Tabeller") ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录")) ("Listing" ("ar" :default "برنامج") ("cs" :default "Program") ("da" :default "Program") ("de" :default "Programmlisting") ("es" :default "Listado de programa") ("et" :default "Loend") ("fr" :default "Programme" :html "Programme") ("ja" :default "ソースコード") ("no" :default "Dataprogram") ("nb" :default "Dataprogram") ("pt_BR" :default "Listagem") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072;" :utf-8 "Распечатка") ("sl" :default "Izpis programa") ("zh-CN" :html "&#20195;&#30721;" :utf-8 "代码")) ("Listing %d:" ("ar" :default "برنامج %d:") ("cs" :default "Program %d:") ("da" :default "Program %d") ("de" :default "Programmlisting %d") ("es" :default "Listado de programa %d") ("et" :default "Loend %d") ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:") ("ja" :default "ソースコード%d:") ("no" :default "Dataprogram %d") ("nb" :default "Dataprogram %d") ("pt_BR" :default "Listagem %d") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:" :utf-8 "Распечатка %d.:") ("sl" :default "Izpis programa %d") ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d ")) ("References" ("ar" :default "المراجع") ("cs" :default "Reference") ("fr" :ascii "References" :default "Références") ("de" :default "Quellen") ("es" :default "Referencias") ("sl" :default "Reference")) ("See figure %s" ("cs" :default "Viz obrázek %s") ("fr" :default "cf. figure %s" :html "cf.&nbsp;figure&nbsp;%s" :latex "cf.~figure~%s") ("sl" :default "Glej sliko %s")) ("See listing %s" ("cs" :default "Viz program %s") ("fr" :default "cf. programme %s" :html "cf.&nbsp;programme&nbsp;%s" :latex "cf.~programme~%s") ("sl" :default "Glej izpis programa %s")) ("See section %s" ("ar" :default "انظر قسم %s") ("cs" :default "Viz sekce %s") ("da" :default "jævnfør afsnit %s") ("de" :default "siehe Abschnitt %s") ("es" :ascii "Vea seccion %s" :html "Vea secci&oacute;n %s" :default "Vea sección %s") ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s") ("fr" :default "cf. section %s") ("ja" :default "セクション %s を参照") ("pt_BR" :html "Veja a se&ccedil;&atilde;o %s" :default "Veja a seção %s" :ascii "Veja a secao %s") ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s" :utf-8 "См. раздел %s") ("sl" :default "Glej poglavje %d") ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节")) ("See table %s" ("cs" :default "Viz tabulka %s") ("fr" :default "cf. tableau %s" :html "cf.&nbsp;tableau&nbsp;%s" :latex "cf.~tableau~%s") ("sl" :default "Glej tabelo %s")) ("Table" ("ar" :default "جدول") ("cs" :default "Tabulka") ("de" :default "Tabelle") ("es" :default "Tabla") ("et" :default "Tabel") ("fr" :default "Tableau") ("is" :default "Tafla") ("ja" :default "表" :html "&#34920;") ("pt_BR" :default "Tabela") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица") ("zh-CN" :html "&#34920;" :utf-8 "表")) ("Table %d:" ("ar" :default "جدول %d:") ("cs" :default "Tabulka %d:") ("da" :default "Tabel %d") ("de" :default "Tabelle %d") ("es" :default "Tabla %d") ("et" :default "Tabel %d") ("fr" :default "Tableau %d :") ("is" :default "Tafla %d") ("ja" :default "表%d:" :html "&#34920;%d:") ("no" :default "Tabell %d") ("nb" :default "Tabell %d") ("nn" :default "Tabell %d") ("pt_BR" :default "Tabela %d") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:" :utf-8 "Таблица %d.:") ("sl" :default "Tabela %d") ("sv" :default "Tabell %d") ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d ")) ("Table of Contents" ("ar" :default "قائمة المحتويات") ("ca" :html "&Iacute;ndex") ("cs" :default "Obsah") ("da" :default "Indhold") ("de" :default "Inhaltsverzeichnis") ("eo" :default "Enhavo") ("es" :ascii "Indice" :html "&Iacute;ndice" :default "Índice") ("et" :default "Sisukord") ("fi" :html "Sis&auml;llysluettelo") ("fr" :ascii "Sommaire" :default "Table des matières") ("hu" :html "Tartalomjegyz&eacute;k") ("is" :default "Efnisyfirlit") ("it" :default "Indice") ("ja" :default "目次" :html "&#30446;&#27425;") ("nl" :default "Inhoudsopgave") ("no" :default "Innhold") ("nb" :default "Innhold") ("nn" :default "Innhald") ("pl" :html "Spis tre&#x015b;ci") ("pt_BR" :html "&Iacute;ndice" :utf8 "Índice" :ascii "Indice") ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" :utf-8 "Содержание") ("sl" :default "Kazalo") ("sv" :html "Inneh&aring;ll") ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст") ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录") ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄")) ("Unknown reference" ("ar" :default "مرجع غير معرّف") ("da" :default "ukendt reference") ("de" :default "Unbekannter Verweis") ("es" :default "Referencia desconocida") ("et" :default "Tundmatu viide") ("fr" :ascii "Destination inconnue" :default "Référence inconnue") ("ja" :default "不明な参照先") ("pt_BR" :default "Referência desconhecida" :ascii "Referencia desconhecida") ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;" :utf-8 "Неизвестная ссылка") ("sl" :default "Neznana referenca") ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用"))) (#$ . 194404))
1839 #@381 Translate string S according to language specification.
1840
1841 ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
1842 and `:utf-8'.  INFO is a plist used as a communication channel.
1843
1844 Translation depends on `:language' property.  Return the
1845 translated string.  If no translation is found, try to fall back
1846 to `:default' encoding.  If it fails, return S.
1847
1848 (fn S ENCODING INFO)
1849 (defalias 'org-export-translate #[771 "\301\302\"\303\303\"A\"A\301\"\206\301\304\"\206\207" [org-export-dictionary plist-get :language assoc :default] 9 (#$ . 208353)])
1850 #@443 Call function FUN on the results returned by BODY evaluation.
1851
1852 FUN is an anonymous function of one argument.  BODY evaluation
1853 happens in an asynchronous process, from a buffer which is an
1854 exact copy of the current one.
1855
1856 Use `org-export-add-to-stack' in FUN in order to register results
1857 in the stack.
1858
1859 This is a low level function.  See also `org-export-to-buffer'
1860 and `org-export-to-file' for more specialized functions.
1861
1862 (fn FUN &rest BODY)
1863 (defalias 'org-export-async-start '(macro . #[385 "\300\301!\300\302!\300\303!\300\304!\300\305!\306\307\310\311B\312B\313BE\314\315\316\317    \320\321\322\323\324\325\326CBD\327\330\331\326BDD\257CBFDE\332\333\334B\f\335\336\337\340\341\342BBB\343\340\344EFEDE\345\346\nD\347F\310\350DC\351\320\352\353\310\354\355\356\357\360\361\362\363\326CBDEEEEECBEEFFE\207" [make-symbol "--process" "--temp-file" "--copy-fun" "--proc-buffer" "--coding" with-temp-message "Initializing asynchronous export process" let ((org-export--generate-copy-script (current-buffer))) ((make-temp-file "org-export-process")) (buffer-file-coding-system) with-temp-file insert format ";; -*- coding: %s; -*-\n%S" \` with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall \, (restore-buffer-modified-p nil) print progn let* (process-connection-type nil) ((generate-new-buffer-name "*Org Export Process*")) apply #'start-process append list "org-export-process" ((expand-file-name invocation-name invocation-directory) "--batch") (if org-export-async-init-file (list "-Q" "-l" org-export-async-init-file) (list "-l" user-init-file)) "-l" org-export-add-to-stack get-buffer nil handler set-process-sentinel lambda (p status) ((proc-buffer (process-buffer p))) when (eq (process-status p) 'exit) unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (funcall (\, handler) results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file] 33 (#$ . 208923)]))
1864 (byte-code "\300\301\302\303#\304\301\305\306#\207" [function-put org-export-async-start lisp-indent-function 1 put edebug-form-spec t] 5)
1865 #@1324 Call `org-export-as' with output to a specified buffer.
1866
1867 BACKEND is either an export back-end, as returned by, e.g.,
1868 `org-export-create-backend', or a symbol referring to
1869 a registered back-end.
1870
1871 BUFFER is the name of the output buffer.  If it already exists,
1872 it will be erased first, otherwise, it will be created.
1873
1874 A non-nil optional argument ASYNC means the process should happen
1875 asynchronously.  The resulting buffer should then be accessible
1876 through the `org-export-stack' interface.  When ASYNC is nil, the
1877 buffer is displayed if `org-export-show-temporary-export-buffer'
1878 is non-nil.
1879
1880 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
1881 EXT-PLIST are similar to those used in `org-export-as', which
1882 see.
1883
1884 Optional argument POST-PROCESS is a function which should accept
1885 no argument.  It is always called within the current process,
1886 from BUFFER, with point at its beginning.  Export back-ends can
1887 use it to set a major mode there, e.g,
1888
1889   (defun org-latex-export-as-latex
1890     (&optional async subtreep visible-only body-only ext-plist)
1891     (interactive)
1892     (org-export-to-buffer \='latex "*Org LATEX Export*"
1893       async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
1894
1895 This function returns BUFFER.
1896
1897 (fn BACKEND BUFFER &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)
1898 (defalias 'org-export-to-buffer #[2050 "\203\f\306\307C\310\311\312\313\314\"\315\"\316$\216\203$\211\317 \240\210\320\321\"\210\322p!\323\324!\325\326\327!!\310\311\330\313\314!\331\"\332$\216r\211q\210\333\334\335\336\337\340\341\fD\342\343\344\345\346D\346D\257DD\257#c\210)r\211q\210\347\307\211\307\311%\210*\266\307\326\350!\351\352\353\324\354\n \"\355F\f\203\222\356\357\fE\202\225\357 D\357D#\"\360\361!\307#\210\362\363\364\325D\365\366\300\346DE\367\370\360\371\346DE\372\341DD\257E\373\362\374\375\376\377\201A\201B\201C\201D\201B\375\201E\341\201FBBE\201GBB\201HBBB\201I\201J\201KDEEEEE\"\262)\266\202\266\203)\207\345%\325!\201L!\2032\201M \2032\201N!\210rq\210\201O \210\211c\210eb\210\201P!\203N \210)@\203Z\201Q!\210\207" [buffer-file-coding-system process-connection-type invocation-name invocation-directory org-export-async-init-file user-init-file "Initializing asynchronous export process" nil make-byte-code 0 "\300\205\301\242\203\302\303\301\242\"\207\302\304!\207" vconcat vector [message #1="%s" nil] 3 current-message message #1# org-export--generate-copy-script make-temp-file "org-export-process" get-buffer-create generate-new-buffer-name " *temp file*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] 2 format ";; -*- coding: %s; -*-\n%S" with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall (restore-buffer-modified-p nil) print progn org-export-as quote write-region "*Org Export Process*" apply start-process append expand-file-name "--batch" "-Q" "-l" org-export-add-to-stack get-buffer lambda (output) with-current-buffer (erase-buffer) setq (insert output) (goto-char (point-min)) (current-buffer) ignore-errors set-process-sentinel (p status) let ((proc-buffer (process-buffer p))) when org-export-show-temporary-export-buffer (eq (process-status p) 'exit) unwind-protect if (zerop (process-exit-status p)) ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (results) ((unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) ((org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file org-string-nw-p org-export--copy-to-kill-ring-p org-kill-new erase-buffer functionp switch-to-buffer-other-window] 33 (#$ . 211374)])
1899 (byte-code "\300\301\302\303#\300\207" [function-put org-export-to-buffer lisp-indent-function 2] 4)
1900 #@1288 Call `org-export-as' with output to a specified file.
1901
1902 BACKEND is either an export back-end, as returned by, e.g.,
1903 `org-export-create-backend', or a symbol referring to
1904 a registered back-end.  FILE is the name of the output file, as
1905 a string.
1906
1907 A non-nil optional argument ASYNC means the process should happen
1908 asynchronously.  The resulting buffer will then be accessible
1909 through the `org-export-stack' interface.
1910
1911 Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
1912 EXT-PLIST are similar to those used in `org-export-as', which
1913 see.
1914
1915 Optional argument POST-PROCESS is called with FILE as its
1916 argument and happens asynchronously when ASYNC is non-nil.  It
1917 has to return a file name, or nil.  Export back-ends can use this
1918 to send the output file through additional processing, e.g,
1919
1920   (defun org-latex-export-to-latex
1921     (&optional async subtreep visible-only body-only ext-plist)
1922     (interactive)
1923     (let ((outfile (org-export-output-file-name ".tex" subtreep)))
1924       (org-export-to-file \='latex outfile
1925         async subtreep visible-only body-only ext-plist
1926         (lambda (file) (org-latex-compile file)))
1927
1928 The function returns either a file name returned by POST-PROCESS,
1929 or FILE.
1930
1931 (fn BACKEND FILE &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)
1932 (defalias 'org-export-to-file #[2050 "\306!\204 \307\310!\207\311\312D\"\206    \203@\313\314C\315\316\317\320\321\"\322\"\323$\216\203<\211\324 \240\210\325\326\"\210\327p!\330\331!    \332\333\334!!\315\316\335\320\321!\336\"\337$\216r\211q\210\340\341\342\343\344\345\346\fD\347\350\351\352\353\354\355D\355D\257DC\342\356\352\357\355DDC\360!DEE\361\362\346\355D!EDEFDD\257#c\210)r\211q\210\363\314\211\314\316%\210*\266\314\333\364!\365\366\367\331\370 \f\"\371F \203\315\372\373 E\202\321\373@D\373D#\"\374\375!\314#\210\376\377\374\201A\355DEE\201B\376\201C\352\201D\201E\201F\201G\201H\201I\201G\352\201J\346\201KBBE\201LBB\201MBBB\201N\201O\201PDEEEEE\"\262)\266\202\266\203)\266\202\202\232\354\n%\201Q\201R!r\211q\210\315\316\335\320\321!\201S\"\337$\216c\210/\360 !\210+\210\201T \203\207\201U!\203\207\201V!\210\201W!\203\226\n!\206\230    \262\207" [org-export-coding-system buffer-file-coding-system process-connection-type invocation-name invocation-directory org-export-async-init-file file-writable-p error "Output file not writable" org-combine-plists :output-file "Initializing asynchronous export process" nil make-byte-code 0 "\300\205\301\242\203\302\303\301\242\"\207\302\304!\207" vconcat vector [message #1="%s" nil] 3 current-message message #1# org-export--generate-copy-script make-temp-file "org-export-process" get-buffer-create generate-new-buffer-name " *temp file*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] 2 format ";; -*- coding: %s; -*-\n%S" with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall (restore-buffer-modified-p nil) print progn let output org-export-as quote (insert output) coding-system-for-write write-file or ignore-errors write-region "*Org Export Process*" apply start-process append expand-file-name "--batch" "-Q" "-l" org-export-add-to-stack get-buffer lambda (file) user-init-file (expand-file-name file) set-process-sentinel (p status) ((proc-buffer (process-buffer p))) when (eq (process-status p) 'exit) unwind-protect if (zerop (process-exit-status p)) ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (results) ((unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) ((org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file generate-new-buffer " *temp*" [buffer-name kill-buffer] org-export--copy-to-kill-ring-p org-string-nw-p org-kill-new functionp] 37 (#$ . 215352)])
1933 (byte-code "\300\301\302\303#\300\207" [function-put org-export-to-file lisp-indent-function 2] 4)
1934 #@442 Return output file's name according to buffer specifications.
1935
1936 EXTENSION is a string representing the output file extension,
1937 with the leading dot.
1938
1939 With a non-nil optional argument SUBTREEP, try to determine
1940 output file's name by looking for "EXPORT_FILE_NAME" property
1941 of subtree at point.
1942
1943 When optional argument PUB-DIR is set, use it as the publishing
1944 directory.
1945
1946 Return file name as a string.
1947
1948 (fn EXTENSION &optional SUBTREEP PUB-DIR)
1949 (defalias 'org-export-output-file-name #[769 "\301\302 !\303\203\304\305\306\307#\206\235e\212\310!\203\311!q\210\212\214~\210\211\206'`b\210\3122x\313\314\315\305\313#\205v\316 \211\211:\204H\211;\205P\317\202P\211@9\205P\211@\262\320=\203r\321\312\322\211;\203h\323\324#\202n\325A@\"\266\202\"\210\210\202/)0+\262\206\235\203\210\326!\206\235\327\330\305\211\211\331\332\333\334\335!\336\"\337\340%&!P\203\256\341!\326!P\202\271\342!\203\270\211\202\271\211\203\313\343\"\203\313\211P\202\314\211\207" [case-fold-search buffer-file-name buffer-base-buffer file-name-sans-extension org-entry-get nil "EXPORT_FILE_NAME" selective markerp marker-buffer :found t re-search-forward "^[     ]*#\\+EXPORT_FILE_NAME:[     ]+\\S-" org-element-at-point plain-text keyword throw :value get-text-property 0 plist-get file-name-nondirectory read-file-name "Output file: " make-byte-code 257 "\300\301\302\"\230\207" vconcat vector [file-name-extension t] 5 "\n\n(fn N)" file-name-as-directory file-name-absolute-p file-equal-p] 17 (#$ . 219487)])
1950 #@336 Add a new result to export stack if not present already.
1951
1952 SOURCE is a buffer or a file name containing export results.
1953 BACKEND is a symbol representing export back-end used to generate
1954 it.
1955
1956 Entries already pointing to SOURCE and unavailable entries are
1957 removed beforehand.  Return the new stack.
1958
1959 (fn SOURCE BACKEND &optional PROCESS)
1960 (defalias 'org-export-add-to-stack #[770 "\206\301 E\302!B\211\207" [org-export-stack-contents current-time org-export-stack-remove] 6 (#$ . 221019)])
1961 #@61 Menu for asynchronous export results and running processes.
1962 (defalias 'org-export-stack #[0 "\300\301!r\211q\210\302 \210\303\304!\210)\305!\266\306\307!\207" [get-buffer-create "*Org Export Stack*" org-export-stack-mode tabulated-list-print t pop-to-buffer message "Type \"q\" to quit, \"?\" for help"] 3 (#$ . 221518) nil])
1963 #@39 Remove all entries from export stack.
1964 (defalias 'org-export-stack-clear #[0 "\301\211\207" [org-export-stack-contents nil] 2 (#$ . 221852) nil])
1965 #@27 Refresh the export stack.
1966 (defalias 'org-export-stack-refresh #[0 "\300\301!\207" [tabulated-list-print t] 2 (#$ . 222004) nil])
1967 #@126 Remove export results at point from stack.
1968 If optional argument SOURCE is non-nil, remove it instead.
1969
1970 (fn &optional SOURCE)
1971 (defalias 'org-export-stack-remove #[256 "\211\206\301 \302\303\304\305\306\307!\310\"\311\312%\"\211\207" [org-export-stack-contents org-export--stack-source-at-point cl-remove-if make-byte-code 257 "\211@\300\232\207" vconcat vector [] 3 "\n\n(fn EL)"] 9 (#$ . 222140) nil])
1972 #@142 View export results at point in stack.
1973 With an optional prefix argument IN-EMACS, force viewing files
1974 within Emacs.
1975
1976 (fn &optional IN-EMACS)
1977 (defalias 'org-export-stack-view #[256 "\300 \301!\203\302\303!!\202 \304!\203\302!\202 \305\"\207" [org-export--stack-source-at-point processp org-switch-to-buffer-other-window process-buffer bufferp org-open-file] 5 (#$ . 222555) "P"])
1978 #@30 Keymap for Org Export Stack.
1979 (defvar org-export-stack-mode-map (byte-code "\301 \302\"\210\303\304\305#\210\303\306\305#\210\303\307\305#\210\303\310\311#\210\303\312\311#\210\303\313\311#\210\303\314\315#\210\303\316\317#\210\303\320\317#\210\303\321\322#\210\211\207" [tabulated-list-mode-map make-sparse-keymap set-keymap-parent define-key " " next-line "" [down] "" previous-line "" [up] "C" org-export-stack-clear "v" org-export-stack-view " " "d" org-export-stack-remove] 5) (#$ . 222952))
1980 (defvar org-export-stack-mode-hook nil)
1981 (byte-code "\300\301N\204\f\302\300\301\303#\210\304\305!\204\302\305\306\307#\210\300\207" [org-export-stack-mode-hook variable-documentation put "Hook run after entering Org-Stack mode.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" boundp org-export-stack-mode-map definition-name org-export-stack-mode] 4)
1982 (defvar org-export-stack-mode-map (make-sparse-keymap))
1983 (byte-code "\301\302N\204\303\301\302\304\305!#\210\306\307!\204\303\307\310\311#\210\312\313 !\210\307\302N\204-\303\307\302\304\314!#\210\306\300!\204B\303\300\310\311#\210\315\316\300\317\"\210!\210\300\302N\204P\303\300\302\304\320!#\210\303\311\321\322#\207" [org-export-stack-mode-abbrev-table org-export-stack-mode-map variable-documentation put purecopy "Keymap for `org-export-stack-mode'." boundp org-export-stack-mode-syntax-table definition-name org-export-stack-mode (lambda (#1=#:def-tmp-var) (defvar org-export-stack-mode-syntax-table #1#)) make-syntax-table "Syntax table for `org-export-stack-mode'." (lambda (#1#) (defvar org-export-stack-mode-abbrev-table #1#)) define-abbrev-table nil "Abbrev table for `org-export-stack-mode'." derived-mode-parent tabulated-list-mode] 5)
1984 #@670 Mode for displaying asynchronous export stack.
1985
1986 Type `\[org-export-stack]' to visualize the asynchronous export
1987 stack.
1988
1989 In an Org Export Stack buffer, use \<org-export-stack-mode-map>`\[org-export-stack-view]' to view export output
1990 on current line, `\[org-export-stack-remove]' to remove it from the stack and `\[org-export-stack-clear]' to clear
1991 stack completely.
1992
1993 Removing entries in a stack buffer does not affect files
1994 or buffers, only display.
1995
1996 \{org-export-stack-mode-map}
1997
1998 In addition to any hooks its parent mode `tabulated-list-mode' might have run,
1999 this mode runs the hook `org-export-stack-mode-hook', as the final or penultimate step
2000 during initialization.
2001 (defalias 'org-export-stack-mode #[0 "\306\300!\210\307\310 \210\311\312\310\313N\203\314\311\313\310\313N#\210\315 !\204'\316 \317 \"\210\320\f!\211\2035\211\321 =\203;\322\f\323 \"\210\210\324 \325\"\204R ,=\204R\326 \325,C#\210\327 !\210\330\f!\210 ,\331\332\333\334E\335\336\307E\337\340\341E\342\343\341E$-\332\341B.\344/\345\346\344\341\307$\210\345\347\350\341\307$\210\351 \210)\352\353!\207" [delay-mode-hooks major-mode mode-name org-export-stack-mode-map org-export-stack-mode-syntax-table org-export-stack-mode-abbrev-table make-local-variable t tabulated-list-mode org-export-stack-mode "Org-Stack" mode-class put keymap-parent set-keymap-parent current-local-map char-table-parent standard-syntax-table set-char-table-parent syntax-table abbrev-table-get :parents abbrev-table-put use-local-map set-syntax-table vector "#" 4 org-export--stack-num-predicate "Back-End" 12 "Age" 6 nil "Source" 0 org-export--stack-generate add-hook tabulated-list-revert-hook post-command-hook org-export-stack-refresh tabulated-list-init-header run-mode-hooks org-export-stack-mode-hook local-abbrev-table tabulated-list-format tabulated-list-sort-key tabulated-list-entries] 7 (#$ . 224761) nil])
2002 #@155 Generate the asynchronous export stack for display.
2003 Unavailable sources are removed from the list.  Return a list
2004 appropriate for `tabulated-list-print'.
2005 (defalias 'org-export--stack-generate #[0 "\301\302\"\303C\304\305\306\307\310\311!\312\"\313\314%\"\207" [org-export-stack-contents cl-remove-if-not #[257 "\300\3018!\203\302\303\3018!!\207\211@\304!\203\302!\202!\305!\207" [processp 2 buffer-live-p process-buffer bufferp file-exists-p] 5 "\n\n(fn EL)"] 0 mapcar make-byte-code 257 "\211@\211\301\302\300\211\242T\240!A@\203\303A@!\202\304\3058\306!\203,\303\307!!\2024\310\311\312\313!!\"\262;\203?\202C\314!$D\207" vconcat vector [vector number-to-string symbol-name "" 2 processp process-status format-seconds "%h:%.2m" float-time time-since buffer-name] 12 "\n\n(fn ENTRY)"] 8 (#$ . 226647)])
2006 #@12 
2007
2008 (fn A B)
2009 (defalias 'org-export--stack-num-predicate #[514 "\300A@\301H!\300A@\301H!W\207" [string-to-number 0] 6 (#$ . 227491)])
2010 #@54 Return source from export results at point in stack.
2011 (defalias 'org-export--stack-source-at-point #[0 "\302\212\211\203    \211b\210n\203\303\202\304\305\303`\"\\)\262S8@\211\204(\306\307!\202U\211;\2031\211\2024\310!\212\311 \210\312\313!\314Q\315\316!)\262)\203N\202S\306\317\320!!\262\207" [org-export-stack-contents inhibit-changing-match-data nil 1 0 count-lines error "Source unavailable, please refresh buffer" buffer-name beginning-of-line ".* +" regexp-quote "$" t looking-at substitute-command-keys "Source unavailable; type `\\[org-export-stack-refresh]' to refresh buffer"] 5 (#$ . 227630)])
2012 #@722 Export dispatcher for Org mode.
2013
2014 It provides an access to common export related tasks in a buffer.
2015 Its interface comes in two flavors: standard and expert.
2016
2017 While both share the same set of bindings, only the former
2018 displays the valid keys associations in a dedicated buffer.
2019 Scrolling (resp. line-wise motion) in this buffer is done with
2020 SPC and DEL (resp. C-n and C-p) keys.
2021
2022 Set variable `org-export-dispatch-use-expert-ui' to switch to one
2023 flavor or the other.
2024
2025 When ARG is `\[universal-argument]', repeat the last export action, with the same
2026 set of options used back then, on the current buffer.
2027
2028 When ARG is `\[universal-argument] \[universal-argument]', display the asynchronous export stack.
2029
2030 (fn &optional ARG)
2031 (defalias 'org-export-dispatch #[256 "\211\306\232\203\n\307\2029\211\203\2069\310 \311\312\313\314\315!\316\"\317$\216\320\216    `\321p!\223\210\322\n \2050\323D\324\f#\211*\262\211@A\325>\204H    \324\211\223\210\326\267\202\217\327\324\"\202\310\330 \202\310\331\332>\323>\"\202\310\333\332>\323>\"\202\310\334\335\336\337 \324\340$ \"\332>\323>#\202\310\341\332>\323>\"\202\310\212\203\251\342    !\321p!=\203\244    b\210\202\251    \324\211\223\210\323>\205\261\340\325>\205\270\340\343>\205\277\340\344>\205\306\340$)\207" [org-export-dispatch-last-action org-export-dispatch-last-position org-export-initial-scope org-export-in-background org-export-dispatch-use-expert-ui org-publish-project-alist (16) (stack) current-window-configuration make-byte-code 0 "\301\300!\207" vconcat vector [set-window-configuration] 2 #[0 "\300\301!\205    \302\301!\207" [get-buffer "*Org Export Dispatcher*" kill-buffer] 2] org-base-buffer org-export--dispatch-ui async nil subtree #s(hash-table size 6 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (template 78 stack 85 publish-current-file 90 publish-current-project 101 publish-choose-project 112 publish-all 132)) org-export-insert-default-template org-export-stack org-publish-current-file force org-publish-current-project org-publish assoc completing-read "Publish project: " t org-publish-all marker-buffer visible body] 11 (#$ . 228258) "P"])
2032 #@743 Handle interface for `org-export-dispatch'.
2033
2034 OPTIONS is a list containing current interactive options set for
2035 export.  It can contain any of the following symbols:
2036 `body'    toggles a body-only export
2037 `subtree' restricts export to current subtree
2038 `visible' restricts export to visible part of buffer.
2039 `force'   force publishing files.
2040 `async'   use asynchronous export process
2041
2042 FIRST-KEY is the key pressed to select the first level menu.  It
2043 is nil when this menu hasn't been selected yet.
2044
2045 EXPERTP, when non-nil, triggers expert UI.  In that case, no help
2046 buffer is provided, but indications about currently active
2047 options are given in the prompt.  Moreover, [?] allows switching
2048 back to standard interface.
2049
2050 (fn OPTIONS FIRST-KEY EXPERTP)
2051 (defalias 'org-export--dispatch-ui #[771 "\303\304\305\306\307!\310\"\311\312%\313\314\211\315\316\317\320\"\"\321\"\322\"\323\324\325\311\326\257\2045\317\327\"\330!\331!\266\202\202_\316\211\203T\211@\211@    =\203M\332\3238\"\262A\266\202\2027\314\317\327\"\333\"\262\262\244\334=\203n\335\336\337\340F\202u?\205u\334C\244\341\342D\244\205\200\343C\244\344C\244?\205W\345\346\347\350\"\351 >\203\233\352\202\234\353!\354\350\"\355 >\203\257\352\202\260\353!    \356\350\"    \357>\203\303\360\202\304\361! \362\350\" \363>\203\327\352\202\330\353! \364\350\" \365>\203\353\352\202\354\353!& \316C\366\303\367\370\306\307 \"\371\"\372\373%\374#\262\345\375\376!\377\334\"    \201@\334\"\n\201A\334\" \201B\334\"&\345\201C\201D\350\"    \201E\350\"#\345\201F    \201G\350\"\f\203Q\201H\202T\201I#\260?\205_\201J\205\322\345\201K\351 >\203y\201L\350\"\202|\201L\355\f>\203\215\201M\350\"\202\220\201M\357 >\203\241    \201N\350\"\202\244\201N\363>\203\263\n\377\350\"\202\264\377\365>\203\305 \201B\350\"\202\310\201B\366\201O \374#&\203\351\201P   &\202M\201Q\201R!\204\201S \210\201T\201U\201R!!\210\316\201V\201W\201X !\210\201Y\201Z\201[\"\210r\201Rq\210\201\\ \201] \210c\210\201^\316\"\266)\201_ \210\201P   &\207" [org-export-registered-backends cursor-type header-line-format make-byte-code 513 "\211\301=\204\f\211\300=\203\302\303\304#\207\207" vconcat vector [t propertize face org-warning] 6 "\n\n(fn KEY &optional ACCESS-KEY)" #[257 "\300\301\302#\207" [propertize face font-lock-variable-name-face] 5 "\n\n(fn VALUE)"] sort delq nil mapcar org-export-backend-menu #[514 "A@A@\247\203\211\247\203W\202\211\247\205\300\207" [t] 6 "\n\n(fn A B)"] car-less-than-car 2 22 19 1 car copy-sequence delete-dups append < 80 102 112 120 97 38 35 63 113 format "[%s] Body only:    %s           [%s] Visible only:     %s\n[%s] Export scope: %s       [%s] Force publishing: %s\n[%s] Async export: %s\n\n" "C-b" t body "On " "Off" "C-v" visible "C-s" subtree "Subtree" "Buffer " "C-f" force "C-a" async mapconcat 257 "\211@\211\301\242=?\205\301\240\210\302\303\300\304!!A@#\3058\306!?\205G\307C\310\311\312\313\314\315\300\n#\316\"\317\320%\321#\322\242\305\"\323U\205D\324P\262\262P\207" [format "\n[%s] %s\n" char-to-string 2 functionp -1 mapconcat make-byte-code 257 "\302\211\242T\240\210\303\304\302\242\305\"\306U\203\307\202\310\300\311@!\301\"A@#\207" vconcat vector [format mod 2 0 "    [%s] %-26s" "[%s] %s\n" char-to-string] 6 "\n\n(fn SUB-ENTRY)" #1="" mod 0 "\n"] 14 "\n\n(fn ENTRY)" #1# "\n[%s] Publish\n    [%s] Current file              [%s] Current project\n    [%s] Choose project            [%s] All projects\n\n\n" "P" "f" "p" "x" "a" "[%s] Export stack                  [%s] Insert template\n" "&" "#" "[%s] %s" "q" "Main menu" "Exit" "Export command: " "Export command (C-%s%s%s%s%s) [%s]: " "b" "v" "s" #[257 "\211\300W?\205\n\301!\207" [27 char-to-string] 3 "\n\n(fn K)"] org-export--dispatch-action get-buffer "*Org Export Dispatcher*" delete-other-windows org-switch-to-buffer-other-window get-buffer-create "Use SPC, DEL, C-n or C-p to navigate." set-syntax-table copy-syntax-table modify-syntax-entry 91 "w" window-start erase-buffer set-window-start org-fit-window-to-buffer] 21 (#$ . 230427)])
2052 #@517 Read a character from command input and act accordingly.
2053
2054 PROMPT is the displayed prompt, as a string.  ALLOWED-KEYS is
2055 a list of characters available at a given step in the process.
2056 ENTRIES is a list of menu entries.  OPTIONS, FIRST-KEY and
2057 EXPERTP are the same as defined in `org-export--dispatch-ui',
2058 which see.
2059
2060 Toggle export options when required.  Otherwise, return value is
2061 a list with action as CAR and a list of interactive export
2062 options as CDR.
2063
2064 (fn PROMPT ALLOWED-KEYS ENTRIES OPTIONS FIRST-KEY EXPERTP)
2065 (defalias 'org-export--dispatch-action #[1542 "\300\301!\211\262\203\226\204\226\211\302>\203\226\211\303\267\202\304d!\2044\3051,\306\307!0\2020\210\202\210\202\310\311!\210\312\307!\210\202\304e!\204X\3131P\314\307!0\202T\210\202\210\202\310\315!\210\312\307!\210\202\304d!\204p\306\300!\210\202\310\311!\210\312\307!\210\202\304e!\204\210\314\300!\210\202\310\315!\210\312\307!\210\202\202\211>\204\264\316 \210\204\254\310\317!\210\312\307!\210\320#\202\237\211\321=\203\314\204\304\322\323!\202\237\320\300#\202\237\211\324=\203\332\320\300#\202\237\211\325=\203\350\326\327>B\202\237\211\330=\203\362\331\202\237\211\332>\203/\320\333\267\202\334\202\335\202\327\202\336\202\337\202\300\211>\203#\340\"\202'\211B\262#\202\237\204>\341\342\2368!\203\232\204K\342\2368\202\225\343=\203k\211\344\267\202g\345\202\225\346\202\225\347\202\225\350\202\225\300\202\225\3512\225\236\235\211\205\222\211@\3428\236\211\203\212\352\351\3428\"\210\210A\266\202\202t\2620B\202\237\320#\207" [nil read-char-exclusive (14 16 32 127) #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (14 27 16 63 32 99 127 123)) pos-visible-in-window-p (error) scroll-up 1 message "End of buffer" sit-for (error) scroll-down "Beginning of buffer" ding "Invalid key" org-export--dispatch-ui 113 error "Export aborted" 63 35 template subtree 38 (stack) (2 22 19 6 1) #s(hash-table size 5 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (2 255 22 259 19 263 6 267 1 271)) body visible force async remq functionp 2 80 #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (102 343 112 347 120 351 97 355)) publish-current-file publish-current-project publish-choose-project publish-all found throw] 14 (#$ . 234602)])
2066 (provide 'ox)