ox-publish: Fix publishing bug
[org-mode.git] / lisp / org-element.el
blob1d8f23ea6d56963d94755046fcb084c0b0575bd3
1 ;;; org-element.el --- Parser for Org Syntax -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2012-2015 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Org syntax can be divided into three categories: "Greater
26 ;; elements", "Elements" and "Objects".
28 ;; Elements are related to the structure of the document. Indeed, all
29 ;; elements are a cover for the document: each position within belongs
30 ;; to at least one element.
32 ;; An element always starts and ends at the beginning of a line. With
33 ;; a few exceptions (`clock', `headline', `inlinetask', `item',
34 ;; `planning', `property-drawer', `node-property', `section' and
35 ;; `table-row' types), it can also accept a fixed set of keywords as
36 ;; attributes. Those are called "affiliated keywords" to distinguish
37 ;; them from other keywords, which are full-fledged elements. Almost
38 ;; all affiliated keywords are referenced in
39 ;; `org-element-affiliated-keywords'; the others are export attributes
40 ;; and start with "ATTR_" prefix.
42 ;; Element containing other elements (and only elements) are called
43 ;; greater elements. Concerned types are: `center-block', `drawer',
44 ;; `dynamic-block', `footnote-definition', `headline', `inlinetask',
45 ;; `item', `plain-list', `property-drawer', `quote-block', `section'
46 ;; and `special-block'.
48 ;; Other element types are: `babel-call', `clock', `comment',
49 ;; `comment-block', `diary-sexp', `example-block', `export-block',
50 ;; `fixed-width', `horizontal-rule', `keyword', `latex-environment',
51 ;; `node-property', `paragraph', `planning', `src-block', `table',
52 ;; `table-row' and `verse-block'. Among them, `paragraph' and
53 ;; `verse-block' types can contain Org objects and plain text.
55 ;; Objects are related to document's contents. Some of them are
56 ;; recursive. Associated types are of the following: `bold', `code',
57 ;; `entity', `export-snippet', `footnote-reference',
58 ;; `inline-babel-call', `inline-src-block', `italic',
59 ;; `latex-fragment', `line-break', `link', `macro', `radio-target',
60 ;; `statistics-cookie', `strike-through', `subscript', `superscript',
61 ;; `table-cell', `target', `timestamp', `underline' and `verbatim'.
63 ;; Some elements also have special properties whose value can hold
64 ;; objects themselves (e.g. an item tag or a headline name). Such
65 ;; values are called "secondary strings". Any object belongs to
66 ;; either an element or a secondary string.
68 ;; Notwithstanding affiliated keywords, each greater element, element
69 ;; and object has a fixed set of properties attached to it. Among
70 ;; them, four are shared by all types: `:begin' and `:end', which
71 ;; refer to the beginning and ending buffer positions of the
72 ;; considered element or object, `:post-blank', which holds the number
73 ;; of blank lines, or white spaces, at its end and `:parent' which
74 ;; refers to the element or object containing it. Greater elements,
75 ;; elements and objects containing objects will also have
76 ;; `:contents-begin' and `:contents-end' properties to delimit
77 ;; contents. Eventually, All elements have a `:post-affiliated'
78 ;; property referring to the buffer position after all affiliated
79 ;; keywords, if any, or to their beginning position otherwise.
81 ;; At the lowest level, a `:parent' property is also attached to any
82 ;; string, as a text property.
84 ;; Lisp-wise, an element or an object can be represented as a list.
85 ;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
86 ;; TYPE is a symbol describing the Org element or object.
87 ;; PROPERTIES is the property list attached to it. See docstring of
88 ;; appropriate parsing function to get an exhaustive
89 ;; list.
90 ;; CONTENTS is a list of elements, objects or raw strings contained
91 ;; in the current element or object, when applicable.
93 ;; An Org buffer is a nested list of such elements and objects, whose
94 ;; type is `org-data' and properties is nil.
96 ;; The first part of this file defines Org syntax, while the second
97 ;; one provide accessors and setters functions.
99 ;; The next part implements a parser and an interpreter for each
100 ;; element and object type in Org syntax.
102 ;; The following part creates a fully recursive buffer parser. It
103 ;; also provides a tool to map a function to elements or objects
104 ;; matching some criteria in the parse tree. Functions of interest
105 ;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
106 ;; extent, `org-element-parse-secondary-string'.
108 ;; The penultimate part is the cradle of an interpreter for the
109 ;; obtained parse tree: `org-element-interpret-data'.
111 ;; The library ends by furnishing `org-element-at-point' function, and
112 ;; a way to give information about document structure around point
113 ;; with `org-element-context'. A cache mechanism is also provided for
114 ;; these functions.
117 ;;; Code:
119 (require 'org)
120 (require 'avl-tree)
121 (require 'cl-lib)
125 ;;; Definitions And Rules
127 ;; Define elements, greater elements and specify recursive objects,
128 ;; along with the affiliated keywords recognized. Also set up
129 ;; restrictions on recursive objects combinations.
131 ;; `org-element-update-syntax' builds proper syntax regexps according
132 ;; to current setup.
134 (defvar org-element-paragraph-separate nil
135 "Regexp to separate paragraphs in an Org buffer.
136 In the case of lines starting with \"#\" and \":\", this regexp
137 is not sufficient to know if point is at a paragraph ending. See
138 `org-element-paragraph-parser' for more information.")
140 (defvar org-element--object-regexp nil
141 "Regexp possibly matching the beginning of an object.
142 This regexp allows false positives. Dedicated parser (e.g.,
143 `org-export-bold-parser') will take care of further filtering.
144 Radio links are not matched by this regexp, as they are treated
145 specially in `org-element--object-lex'.")
147 (defun org-element--set-regexps ()
148 "Build variable syntax regexps."
149 (setq org-element-paragraph-separate
150 (concat "^\\(?:"
151 ;; Headlines, inlinetasks.
152 org-outline-regexp "\\|"
153 ;; Footnote definitions.
154 "\\[\\(?:[0-9]+\\|fn:[-_[:word:]]+\\)\\]" "\\|"
155 ;; Diary sexps.
156 "%%(" "\\|"
157 "[ \t]*\\(?:"
158 ;; Empty lines.
159 "$" "\\|"
160 ;; Tables (any type).
161 "|" "\\|"
162 "\\+\\(?:-+\\+\\)+[ \t]*$" "\\|"
163 ;; Comments, keyword-like or block-like constructs.
164 ;; Blocks and keywords with dual values need to be
165 ;; double-checked.
166 "#\\(?: \\|$\\|\\+\\(?:"
167 "BEGIN_\\S-+" "\\|"
168 "\\S-+\\(?:\\[.*\\]\\)?:[ \t]*\\)\\)"
169 "\\|"
170 ;; Drawers (any type) and fixed-width areas. Drawers
171 ;; need to be double-checked.
172 ":\\(?: \\|$\\|[-_[:word:]]+:[ \t]*$\\)" "\\|"
173 ;; Horizontal rules.
174 "-\\{5,\\}[ \t]*$" "\\|"
175 ;; LaTeX environments.
176 "\\\\begin{\\([A-Za-z0-9*]+\\)}" "\\|"
177 ;; Clock lines.
178 (regexp-quote org-clock-string) "\\|"
179 ;; Lists.
180 (let ((term (pcase org-plain-list-ordered-item-terminator
181 (?\) ")") (?. "\\.") (_ "[.)]")))
182 (alpha (and org-list-allow-alphabetical "\\|[A-Za-z]")))
183 (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)"
184 "\\(?:[ \t]\\|$\\)"))
185 "\\)\\)")
186 org-element--object-regexp
187 (mapconcat #'identity
188 (let ((link-types (regexp-opt org-link-types)))
189 (list
190 ;; Sub/superscript.
191 "\\(?:[_^][-{(*+.,[:alnum:]]\\)"
192 ;; Bold, code, italic, strike-through, underline
193 ;; and verbatim.
194 (concat "[*~=+_/]"
195 (format "[^%s]"
196 (nth 2 org-emphasis-regexp-components)))
197 ;; Plain links.
198 (concat "\\<" link-types ":")
199 ;; Objects starting with "[": regular link,
200 ;; footnote reference, statistics cookie,
201 ;; timestamp (inactive).
202 "\\[\\(?:fn:\\|\\(?:[0-9]\\|\\(?:%\\|/[0-9]*\\)\\]\\)\\|\\[\\)"
203 ;; Objects starting with "@": export snippets.
204 "@@"
205 ;; Objects starting with "{": macro.
206 "{{{"
207 ;; Objects starting with "<" : timestamp
208 ;; (active, diary), target, radio target and
209 ;; angular links.
210 (concat "<\\(?:%%\\|<\\|[0-9]\\|" link-types "\\)")
211 ;; Objects starting with "$": latex fragment.
212 "\\$"
213 ;; Objects starting with "\": line break,
214 ;; entity, latex fragment.
215 "\\\\\\(?:[a-zA-Z[(]\\|\\\\[ \t]*$\\|_ +\\)"
216 ;; Objects starting with raw text: inline Babel
217 ;; source block, inline Babel call.
218 "\\(?:call\\|src\\)_"))
219 "\\|")))
221 (org-element--set-regexps)
223 ;;;###autoload
224 (defun org-element-update-syntax ()
225 "Update parser internals."
226 (interactive)
227 (org-element--set-regexps)
228 (org-element-cache-reset 'all))
230 (defconst org-element-all-elements
231 '(babel-call center-block clock comment comment-block diary-sexp drawer
232 dynamic-block example-block export-block fixed-width
233 footnote-definition headline horizontal-rule inlinetask item
234 keyword latex-environment node-property paragraph plain-list
235 planning property-drawer quote-block section
236 special-block src-block table table-row verse-block)
237 "Complete list of element types.")
239 (defconst org-element-greater-elements
240 '(center-block drawer dynamic-block footnote-definition headline inlinetask
241 item plain-list property-drawer quote-block section
242 special-block table)
243 "List of recursive element types aka Greater Elements.")
245 (defconst org-element-all-objects
246 '(bold code entity export-snippet footnote-reference inline-babel-call
247 inline-src-block italic line-break latex-fragment link macro
248 radio-target statistics-cookie strike-through subscript superscript
249 table-cell target timestamp underline verbatim)
250 "Complete list of object types.")
252 (defconst org-element-recursive-objects
253 '(bold footnote-reference italic link subscript radio-target strike-through
254 superscript table-cell underline)
255 "List of recursive object types.")
257 (defconst org-element-object-containers
258 (append org-element-recursive-objects '(paragraph table-row verse-block))
259 "List of object or element types that can directly contain objects.")
261 (defvar org-element-block-name-alist
262 '(("CENTER" . org-element-center-block-parser)
263 ("COMMENT" . org-element-comment-block-parser)
264 ("EXAMPLE" . org-element-example-block-parser)
265 ("QUOTE" . org-element-quote-block-parser)
266 ("SRC" . org-element-src-block-parser)
267 ("VERSE" . org-element-verse-block-parser))
268 "Alist between block names and the associated parsing function.
269 Names must be uppercase. Any block whose name has no association
270 is parsed with `org-element-special-block-parser'.")
272 (defconst org-element-affiliated-keywords
273 '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
274 "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
275 "List of affiliated keywords as strings.
276 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
277 are affiliated keywords and need not to be in this list.")
279 (defconst org-element-keyword-translation-alist
280 '(("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME")
281 ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
282 ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))
283 "Alist of usual translations for keywords.
284 The key is the old name and the value the new one. The property
285 holding their value will be named after the translated name.")
287 (defconst org-element-multiple-keywords '("CAPTION" "HEADER")
288 "List of affiliated keywords that can occur more than once in an element.
290 Their value will be consed into a list of strings, which will be
291 returned as the value of the property.
293 This list is checked after translations have been applied. See
294 `org-element-keyword-translation-alist'.
296 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
297 allow multiple occurrences and need not to be in this list.")
299 (defconst org-element-parsed-keywords '("CAPTION")
300 "List of affiliated keywords whose value can be parsed.
302 Their value will be stored as a secondary string: a list of
303 strings and objects.
305 This list is checked after translations have been applied. See
306 `org-element-keyword-translation-alist'.")
308 (defconst org-element--parsed-properties-alist
309 (mapcar (lambda (k) (cons k (intern (concat ":" (downcase k)))))
310 org-element-parsed-keywords)
311 "Alist of parsed keywords and associated properties.
312 This is generated from `org-element-parsed-keywords', which
313 see.")
315 (defconst org-element-dual-keywords '("CAPTION" "RESULTS")
316 "List of affiliated keywords which can have a secondary value.
318 In Org syntax, they can be written with optional square brackets
319 before the colons. For example, RESULTS keyword can be
320 associated to a hash value with the following:
322 #+RESULTS[hash-string]: some-source
324 This list is checked after translations have been applied. See
325 `org-element-keyword-translation-alist'.")
327 (defconst org-element--affiliated-re
328 (format "[ \t]*#\\+\\(?:%s\\):[ \t]*"
329 (concat
330 ;; Dual affiliated keywords.
331 (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?"
332 (regexp-opt org-element-dual-keywords))
333 "\\|"
334 ;; Regular affiliated keywords.
335 (format "\\(?1:%s\\)"
336 (regexp-opt
337 (cl-remove-if
338 (lambda (k) (member k org-element-dual-keywords))
339 org-element-affiliated-keywords)))
340 "\\|"
341 ;; Export attributes.
342 "\\(?1:ATTR_[-_A-Za-z0-9]+\\)"))
343 "Regexp matching any affiliated keyword.
345 Keyword name is put in match group 1. Moreover, if keyword
346 belongs to `org-element-dual-keywords', put the dual value in
347 match group 2.
349 Don't modify it, set `org-element-affiliated-keywords' instead.")
351 (defconst org-element-object-restrictions
352 (let* ((standard-set (remq 'table-cell org-element-all-objects))
353 (standard-set-no-line-break (remq 'line-break standard-set)))
354 `((bold ,@standard-set)
355 (footnote-reference ,@standard-set)
356 (headline ,@standard-set-no-line-break)
357 (inlinetask ,@standard-set-no-line-break)
358 (italic ,@standard-set)
359 (item ,@standard-set-no-line-break)
360 (keyword ,@(remq 'footnote-reference standard-set))
361 ;; Ignore all links excepted plain links in a link description.
362 ;; Also ignore radio-targets and line breaks.
363 (link bold code entity export-snippet inline-babel-call inline-src-block
364 italic latex-fragment macro plain-link statistics-cookie
365 strike-through subscript superscript underline verbatim)
366 (paragraph ,@standard-set)
367 ;; Remove any variable object from radio target as it would
368 ;; prevent it from being properly recognized.
369 (radio-target bold code entity italic latex-fragment strike-through
370 subscript superscript underline superscript)
371 (strike-through ,@standard-set)
372 (subscript ,@standard-set)
373 (superscript ,@standard-set)
374 ;; Ignore inline babel call and inline src block as formulas are
375 ;; possible. Also ignore line breaks and statistics cookies.
376 (table-cell bold code entity export-snippet footnote-reference italic
377 latex-fragment link macro radio-target strike-through
378 subscript superscript target timestamp underline verbatim)
379 (table-row table-cell)
380 (underline ,@standard-set)
381 (verse-block ,@standard-set)))
382 "Alist of objects restrictions.
384 key is an element or object type containing objects and value is
385 a list of types that can be contained within an element or object
386 of such type.
388 For example, in a `radio-target' object, one can only find
389 entities, latex-fragments, subscript, superscript and text
390 markup.
392 This alist also applies to secondary string. For example, an
393 `headline' type element doesn't directly contain objects, but
394 still has an entry since one of its properties (`:title') does.")
396 (defconst org-element-secondary-value-alist
397 '((headline :title)
398 (inlinetask :title)
399 (item :tag))
400 "Alist between element types and locations of secondary values.")
402 (defconst org-element--pair-square-table
403 (let ((table (make-syntax-table)))
404 (modify-syntax-entry ?\[ "(]" table)
405 (modify-syntax-entry ?\] ")[" table)
406 (dolist (char '(?\{ ?\} ?\( ?\) ?\< ?\>) table)
407 (modify-syntax-entry char " " table)))
408 "Table used internally to pair only square brackets.
409 Other brackets are treated as spaces.")
413 ;;; Accessors and Setters
415 ;; Provide four accessors: `org-element-type', `org-element-property'
416 ;; `org-element-contents' and `org-element-restriction'.
418 ;; Setter functions allow to modify elements by side effect. There is
419 ;; `org-element-put-property', `org-element-set-contents'. These
420 ;; low-level functions are useful to build a parse tree.
422 ;; `org-element-adopt-element', `org-element-set-element',
423 ;; `org-element-extract-element' and `org-element-insert-before' are
424 ;; high-level functions useful to modify a parse tree.
426 ;; `org-element-secondary-p' is a predicate used to know if a given
427 ;; object belongs to a secondary string. `org-element-copy' returns
428 ;; an element or object, stripping its parent property in the process.
430 (defsubst org-element-type (element)
431 "Return type of ELEMENT.
433 The function returns the type of the element or object provided.
434 It can also return the following special value:
435 `plain-text' for a string
436 `org-data' for a complete document
437 nil in any other case."
438 (cond
439 ((not (consp element)) (and (stringp element) 'plain-text))
440 ((symbolp (car element)) (car element))))
442 (defsubst org-element-property (property element)
443 "Extract the value from the PROPERTY of an ELEMENT."
444 (if (stringp element) (get-text-property 0 property element)
445 (plist-get (nth 1 element) property)))
447 (defsubst org-element-contents (element)
448 "Extract contents from an ELEMENT."
449 (cond ((not (consp element)) nil)
450 ((symbolp (car element)) (nthcdr 2 element))
451 (t element)))
453 (defsubst org-element-restriction (element)
454 "Return restriction associated to ELEMENT.
455 ELEMENT can be an element, an object or a symbol representing an
456 element or object type."
457 (cdr (assq (if (symbolp element) element (org-element-type element))
458 org-element-object-restrictions)))
460 (defsubst org-element-put-property (element property value)
461 "In ELEMENT set PROPERTY to VALUE.
462 Return modified element."
463 (if (stringp element) (org-add-props element nil property value)
464 (setcar (cdr element) (plist-put (nth 1 element) property value))
465 element))
467 (defsubst org-element-set-contents (element &rest contents)
468 "Set ELEMENT contents to CONTENTS."
469 (cond ((not element) (list contents))
470 ((not (symbolp (car element))) contents)
471 ((cdr element) (setcdr (cdr element) contents))
472 (t (nconc element contents))))
474 (defun org-element-secondary-p (object)
475 "Non-nil when OBJECT directly belongs to a secondary string.
476 Return value is the property name, as a keyword, or nil."
477 (let* ((parent (org-element-property :parent object))
478 (properties (cdr (assq (org-element-type parent)
479 org-element-secondary-value-alist))))
480 (catch 'exit
481 (dolist (p properties)
482 (and (memq object (org-element-property p parent))
483 (throw 'exit p))))))
485 (defsubst org-element-adopt-elements (parent &rest children)
486 "Append elements to the contents of another element.
488 PARENT is an element or object. CHILDREN can be elements,
489 objects, or a strings.
491 The function takes care of setting `:parent' property for CHILD.
492 Return parent element."
493 (if (not children) parent
494 ;; Link every child to PARENT. If PARENT is nil, it is a secondary
495 ;; string: parent is the list itself.
496 (dolist (child children)
497 (org-element-put-property child :parent (or parent children)))
498 ;; Add CHILDREN at the end of PARENT contents.
499 (when parent
500 (apply #'org-element-set-contents
501 parent
502 (nconc (org-element-contents parent) children)))
503 ;; Return modified PARENT element.
504 (or parent children)))
506 (defun org-element-extract-element (element)
507 "Extract ELEMENT from parse tree.
508 Remove element from the parse tree by side-effect, and return it
509 with its `:parent' property stripped out."
510 (let ((parent (org-element-property :parent element))
511 (secondary (org-element-secondary-p element)))
512 (if secondary
513 (org-element-put-property
514 parent secondary
515 (delq element (org-element-property secondary parent)))
516 (apply #'org-element-set-contents
517 parent
518 (delq element (org-element-contents parent))))
519 ;; Return ELEMENT with its :parent removed.
520 (org-element-put-property element :parent nil)))
522 (defun org-element-insert-before (element location)
523 "Insert ELEMENT before LOCATION in parse tree.
524 LOCATION is an element, object or string within the parse tree.
525 Parse tree is modified by side effect."
526 (let* ((parent (org-element-property :parent location))
527 (property (org-element-secondary-p location))
528 (siblings (if property (org-element-property property parent)
529 (org-element-contents parent)))
530 ;; Special case: LOCATION is the first element of an
531 ;; independent secondary string (e.g. :title property). Add
532 ;; ELEMENT in-place.
533 (specialp (and (not property)
534 (eq siblings parent)
535 (eq (car parent) location))))
536 ;; Install ELEMENT at the appropriate POSITION within SIBLINGS.
537 (cond (specialp)
538 ((or (null siblings) (eq (car siblings) location))
539 (push element siblings))
540 ((null location) (nconc siblings (list element)))
541 (t (let ((previous (cadr (memq location (reverse siblings)))))
542 (if (not previous)
543 (error "No location found to insert element")
544 (let ((next (memq previous siblings)))
545 (setcdr next (cons element (cdr next))))))))
546 ;; Store SIBLINGS at appropriate place in parse tree.
547 (cond
548 (specialp (setcdr parent (copy-sequence parent)) (setcar parent element))
549 (property (org-element-put-property parent property siblings))
550 (t (apply #'org-element-set-contents parent siblings)))
551 ;; Set appropriate :parent property.
552 (org-element-put-property element :parent parent)))
554 (defun org-element-set-element (old new)
555 "Replace element or object OLD with element or object NEW.
556 The function takes care of setting `:parent' property for NEW."
557 ;; Ensure OLD and NEW have the same parent.
558 (org-element-put-property new :parent (org-element-property :parent old))
559 (if (or (memq (org-element-type old) '(plain-text nil))
560 (memq (org-element-type new) '(plain-text nil)))
561 ;; We cannot replace OLD with NEW since one of them is not an
562 ;; object or element. We take the long path.
563 (progn (org-element-insert-before new old)
564 (org-element-extract-element old))
565 ;; Since OLD is going to be changed into NEW by side-effect, first
566 ;; make sure that every element or object within NEW has OLD as
567 ;; parent.
568 (dolist (blob (org-element-contents new))
569 (org-element-put-property blob :parent old))
570 ;; Transfer contents.
571 (apply #'org-element-set-contents old (org-element-contents new))
572 ;; Overwrite OLD's properties with NEW's.
573 (setcar (cdr old) (nth 1 new))
574 ;; Transfer type.
575 (setcar old (car new))))
577 (defun org-element-create (type &optional props &rest children)
578 "Create a new element of type TYPE.
579 Optional argument PROPS, when non-nil, is a plist defining the
580 properties of the element. CHILDREN can be elements, objects or
581 strings."
582 (apply #'org-element-adopt-elements (list type props) children))
584 (defun org-element-copy (datum)
585 "Return a copy of DATUM.
586 DATUM is an element, object, string or nil. `:parent' property
587 is cleared and contents are removed in the process."
588 (when datum
589 (let ((type (org-element-type datum)))
590 (pcase type
591 (`org-data (list 'org-data nil))
592 (`plain-text (substring-no-properties datum))
593 (`nil (copy-sequence datum))
595 (list type (plist-put (copy-sequence (nth 1 datum)) :parent nil)))))))
599 ;;; Greater elements
601 ;; For each greater element type, we define a parser and an
602 ;; interpreter.
604 ;; A parser returns the element or object as the list described above.
605 ;; Most of them accepts no argument. Though, exceptions exist. Hence
606 ;; every element containing a secondary string (see
607 ;; `org-element-secondary-value-alist') will accept an optional
608 ;; argument to toggle parsing of these secondary strings. Moreover,
609 ;; `item' parser requires current list's structure as its first
610 ;; element.
612 ;; An interpreter accepts two arguments: the list representation of
613 ;; the element or object, and its contents. The latter may be nil,
614 ;; depending on the element or object considered. It returns the
615 ;; appropriate Org syntax, as a string.
617 ;; Parsing functions must follow the naming convention:
618 ;; org-element-TYPE-parser, where TYPE is greater element's type, as
619 ;; defined in `org-element-greater-elements'.
621 ;; Similarly, interpreting functions must follow the naming
622 ;; convention: org-element-TYPE-interpreter.
624 ;; With the exception of `headline' and `item' types, greater elements
625 ;; cannot contain other greater elements of their own type.
627 ;; Beside implementing a parser and an interpreter, adding a new
628 ;; greater element requires to tweak `org-element--current-element'.
629 ;; Moreover, the newly defined type must be added to both
630 ;; `org-element-all-elements' and `org-element-greater-elements'.
633 ;;;; Center Block
635 (defun org-element-center-block-parser (limit affiliated)
636 "Parse a center block.
638 LIMIT bounds the search. AFFILIATED is a list of which CAR is
639 the buffer position at the beginning of the first affiliated
640 keyword and CDR is a plist of affiliated keywords along with
641 their value.
643 Return a list whose CAR is `center-block' and CDR is a plist
644 containing `:begin', `:end', `:contents-begin', `:contents-end',
645 `:post-blank' and `:post-affiliated' keywords.
647 Assume point is at the beginning of the block."
648 (let ((case-fold-search t))
649 (if (not (save-excursion
650 (re-search-forward "^[ \t]*#\\+END_CENTER[ \t]*$" limit t)))
651 ;; Incomplete block: parse it as a paragraph.
652 (org-element-paragraph-parser limit affiliated)
653 (let ((block-end-line (match-beginning 0)))
654 (let* ((begin (car affiliated))
655 (post-affiliated (point))
656 ;; Empty blocks have no contents.
657 (contents-begin (progn (forward-line)
658 (and (< (point) block-end-line)
659 (point))))
660 (contents-end (and contents-begin block-end-line))
661 (pos-before-blank (progn (goto-char block-end-line)
662 (forward-line)
663 (point)))
664 (end (save-excursion
665 (skip-chars-forward " \r\t\n" limit)
666 (if (eobp) (point) (line-beginning-position)))))
667 (list 'center-block
668 (nconc
669 (list :begin begin
670 :end end
671 :contents-begin contents-begin
672 :contents-end contents-end
673 :post-blank (count-lines pos-before-blank end)
674 :post-affiliated post-affiliated)
675 (cdr affiliated))))))))
677 (defun org-element-center-block-interpreter (_ contents)
678 "Interpret a center-block element as Org syntax.
679 CONTENTS is the contents of the element."
680 (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents))
683 ;;;; Drawer
685 (defun org-element-drawer-parser (limit affiliated)
686 "Parse a drawer.
688 LIMIT bounds the search. AFFILIATED is a list of which CAR is
689 the buffer position at the beginning of the first affiliated
690 keyword and CDR is a plist of affiliated keywords along with
691 their value.
693 Return a list whose CAR is `drawer' and CDR is a plist containing
694 `:drawer-name', `:begin', `:end', `:contents-begin',
695 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
697 Assume point is at beginning of drawer."
698 (let ((case-fold-search t))
699 (if (not (save-excursion (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
700 ;; Incomplete drawer: parse it as a paragraph.
701 (org-element-paragraph-parser limit affiliated)
702 (save-excursion
703 (let* ((drawer-end-line (match-beginning 0))
704 (name (progn (looking-at org-drawer-regexp)
705 (org-match-string-no-properties 1)))
706 (begin (car affiliated))
707 (post-affiliated (point))
708 ;; Empty drawers have no contents.
709 (contents-begin (progn (forward-line)
710 (and (< (point) drawer-end-line)
711 (point))))
712 (contents-end (and contents-begin drawer-end-line))
713 (pos-before-blank (progn (goto-char drawer-end-line)
714 (forward-line)
715 (point)))
716 (end (progn (skip-chars-forward " \r\t\n" limit)
717 (if (eobp) (point) (line-beginning-position)))))
718 (list 'drawer
719 (nconc
720 (list :begin begin
721 :end end
722 :drawer-name name
723 :contents-begin contents-begin
724 :contents-end contents-end
725 :post-blank (count-lines pos-before-blank end)
726 :post-affiliated post-affiliated)
727 (cdr affiliated))))))))
729 (defun org-element-drawer-interpreter (drawer contents)
730 "Interpret DRAWER element as Org syntax.
731 CONTENTS is the contents of the element."
732 (format ":%s:\n%s:END:"
733 (org-element-property :drawer-name drawer)
734 contents))
737 ;;;; Dynamic Block
739 (defun org-element-dynamic-block-parser (limit affiliated)
740 "Parse a dynamic block.
742 LIMIT bounds the search. AFFILIATED is a list of which CAR is
743 the buffer position at the beginning of the first affiliated
744 keyword and CDR is a plist of affiliated keywords along with
745 their value.
747 Return a list whose CAR is `dynamic-block' and CDR is a plist
748 containing `:block-name', `:begin', `:end', `:contents-begin',
749 `:contents-end', `:arguments', `:post-blank' and
750 `:post-affiliated' keywords.
752 Assume point is at beginning of dynamic block."
753 (let ((case-fold-search t))
754 (if (not (save-excursion
755 (re-search-forward "^[ \t]*#\\+END:?[ \t]*$" limit t)))
756 ;; Incomplete block: parse it as a paragraph.
757 (org-element-paragraph-parser limit affiliated)
758 (let ((block-end-line (match-beginning 0)))
759 (save-excursion
760 (let* ((name (progn (looking-at org-dblock-start-re)
761 (org-match-string-no-properties 1)))
762 (arguments (org-match-string-no-properties 3))
763 (begin (car affiliated))
764 (post-affiliated (point))
765 ;; Empty blocks have no contents.
766 (contents-begin (progn (forward-line)
767 (and (< (point) block-end-line)
768 (point))))
769 (contents-end (and contents-begin block-end-line))
770 (pos-before-blank (progn (goto-char block-end-line)
771 (forward-line)
772 (point)))
773 (end (progn (skip-chars-forward " \r\t\n" limit)
774 (if (eobp) (point) (line-beginning-position)))))
775 (list 'dynamic-block
776 (nconc
777 (list :begin begin
778 :end end
779 :block-name name
780 :arguments arguments
781 :contents-begin contents-begin
782 :contents-end contents-end
783 :post-blank (count-lines pos-before-blank end)
784 :post-affiliated post-affiliated)
785 (cdr affiliated)))))))))
787 (defun org-element-dynamic-block-interpreter (dynamic-block contents)
788 "Interpret DYNAMIC-BLOCK element as Org syntax.
789 CONTENTS is the contents of the element."
790 (format "#+BEGIN: %s%s\n%s#+END:"
791 (org-element-property :block-name dynamic-block)
792 (let ((args (org-element-property :arguments dynamic-block)))
793 (and args (concat " " args)))
794 contents))
797 ;;;; Footnote Definition
799 (defun org-element-footnote-definition-parser (limit affiliated)
800 "Parse a footnote definition.
802 LIMIT bounds the search. AFFILIATED is a list of which CAR is
803 the buffer position at the beginning of the first affiliated
804 keyword and CDR is a plist of affiliated keywords along with
805 their value.
807 Return a list whose CAR is `footnote-definition' and CDR is
808 a plist containing `:label', `:begin' `:end', `:contents-begin',
809 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
811 Assume point is at the beginning of the footnote definition."
812 (save-excursion
813 (let* ((label (progn (looking-at org-footnote-definition-re)
814 (org-match-string-no-properties 1)))
815 (begin (car affiliated))
816 (post-affiliated (point))
817 (ending (save-excursion
818 (if (progn
819 (end-of-line)
820 (re-search-forward
821 (concat org-outline-regexp-bol "\\|"
822 org-footnote-definition-re "\\|"
823 "^\\([ \t]*\n\\)\\{2,\\}") limit 'move))
824 (match-beginning 0)
825 (point))))
826 (contents-begin (progn
827 (search-forward "]")
828 (skip-chars-forward " \r\t\n" ending)
829 (cond ((= (point) ending) nil)
830 ((= (line-beginning-position) begin) (point))
831 (t (line-beginning-position)))))
832 (contents-end (and contents-begin ending))
833 (end (progn (goto-char ending)
834 (skip-chars-forward " \r\t\n" limit)
835 (if (eobp) (point) (line-beginning-position)))))
836 (list 'footnote-definition
837 (nconc
838 (list :label label
839 :begin begin
840 :end end
841 :contents-begin contents-begin
842 :contents-end contents-end
843 :post-blank (count-lines ending end)
844 :post-affiliated post-affiliated)
845 (cdr affiliated))))))
847 (defun org-element-footnote-definition-interpreter (footnote-definition contents)
848 "Interpret FOOTNOTE-DEFINITION element as Org syntax.
849 CONTENTS is the contents of the footnote-definition."
850 (concat (format "[%s]" (org-element-property :label footnote-definition))
852 contents))
855 ;;;; Headline
857 (defun org-element--get-node-properties ()
858 "Return node properties associated to headline at point.
859 Upcase property names. It avoids confusion between properties
860 obtained through property drawer and default properties from the
861 parser (e.g. `:end' and :END:). Return value is a plist."
862 (save-excursion
863 (forward-line)
864 (when (org-looking-at-p org-planning-line-re) (forward-line))
865 (when (looking-at org-property-drawer-re)
866 (forward-line)
867 (let ((end (match-end 0)) properties)
868 (while (< (line-end-position) end)
869 (looking-at org-property-re)
870 (push (org-match-string-no-properties 3) properties)
871 (push (intern (concat ":" (upcase (match-string 2)))) properties)
872 (forward-line))
873 properties))))
875 (defun org-element--get-time-properties ()
876 "Return time properties associated to headline at point.
877 Return value is a plist."
878 (save-excursion
879 (when (progn (forward-line) (looking-at org-planning-line-re))
880 (let ((end (line-end-position)) plist)
881 (while (re-search-forward org-keyword-time-not-clock-regexp end t)
882 (goto-char (match-end 1))
883 (skip-chars-forward " \t")
884 (let ((keyword (match-string 1))
885 (time (org-element-timestamp-parser)))
886 (cond ((equal keyword org-scheduled-string)
887 (setq plist (plist-put plist :scheduled time)))
888 ((equal keyword org-deadline-string)
889 (setq plist (plist-put plist :deadline time)))
890 (t (setq plist (plist-put plist :closed time))))))
891 plist))))
893 (defun org-element-headline-parser (limit &optional raw-secondary-p)
894 "Parse a headline.
896 Return a list whose CAR is `headline' and CDR is a plist
897 containing `:raw-value', `:title', `:begin', `:end',
898 `:pre-blank', `:contents-begin' and `:contents-end', `:level',
899 `:priority', `:tags', `:todo-keyword',`:todo-type', `:scheduled',
900 `:deadline', `:closed', `:archivedp', `:commentedp'
901 `:footnote-section-p', `:post-blank' and `:post-affiliated'
902 keywords.
904 The plist also contains any property set in the property drawer,
905 with its name in upper cases and colons added at the
906 beginning (e.g., `:CUSTOM_ID').
908 LIMIT is a buffer position bounding the search.
910 When RAW-SECONDARY-P is non-nil, headline's title will not be
911 parsed as a secondary string, but as a plain string instead.
913 Assume point is at beginning of the headline."
914 (save-excursion
915 (let* ((begin (point))
916 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
917 (skip-chars-forward " \t")))
918 (todo (and org-todo-regexp
919 (let (case-fold-search) (looking-at org-todo-regexp))
920 (progn (goto-char (match-end 0))
921 (skip-chars-forward " \t")
922 (match-string 0))))
923 (todo-type
924 (and todo (if (member todo org-done-keywords) 'done 'todo)))
925 (priority (and (looking-at "\\[#.\\][ \t]*")
926 (progn (goto-char (match-end 0))
927 (aref (match-string 0) 2))))
928 (commentedp
929 (and (let (case-fold-search) (looking-at org-comment-string))
930 (goto-char (match-end 0))))
931 (title-start (point))
932 (tags (when (re-search-forward
933 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
934 (line-end-position)
935 'move)
936 (goto-char (match-beginning 0))
937 (org-split-string (match-string 1) ":")))
938 (title-end (point))
939 (raw-value (org-trim
940 (buffer-substring-no-properties title-start title-end)))
941 (archivedp (member org-archive-tag tags))
942 (footnote-section-p (and org-footnote-section
943 (string= org-footnote-section raw-value)))
944 (standard-props (org-element--get-node-properties))
945 (time-props (org-element--get-time-properties))
946 (end (min (save-excursion (org-end-of-subtree t t)) limit))
947 (pos-after-head (progn (forward-line) (point)))
948 (contents-begin (save-excursion
949 (skip-chars-forward " \r\t\n" end)
950 (and (/= (point) end) (line-beginning-position))))
951 (contents-end (and contents-begin
952 (progn (goto-char end)
953 (skip-chars-backward " \r\t\n")
954 (forward-line)
955 (point)))))
956 (let ((headline
957 (list 'headline
958 (nconc
959 (list :raw-value raw-value
960 :begin begin
961 :end end
962 :pre-blank
963 (if (not contents-begin) 0
964 (count-lines pos-after-head contents-begin))
965 :contents-begin contents-begin
966 :contents-end contents-end
967 :level level
968 :priority priority
969 :tags tags
970 :todo-keyword todo
971 :todo-type todo-type
972 :post-blank (count-lines
973 (or contents-end pos-after-head)
974 end)
975 :footnote-section-p footnote-section-p
976 :archivedp archivedp
977 :commentedp commentedp
978 :post-affiliated begin)
979 time-props
980 standard-props))))
981 (org-element-put-property
982 headline :title
983 (if raw-secondary-p raw-value
984 (let ((title (org-element--parse-objects
985 (progn (goto-char title-start)
986 (skip-chars-forward " \t")
987 (point))
988 (progn (goto-char title-end)
989 (skip-chars-backward " \t")
990 (point))
992 (org-element-restriction 'headline))))
993 (dolist (datum title title)
994 (org-element-put-property datum :parent headline)))))))))
996 (defun org-element-headline-interpreter (headline contents)
997 "Interpret HEADLINE element as Org syntax.
998 CONTENTS is the contents of the element."
999 (let* ((level (org-element-property :level headline))
1000 (todo (org-element-property :todo-keyword headline))
1001 (priority (org-element-property :priority headline))
1002 (title (org-element-interpret-data
1003 (org-element-property :title headline)))
1004 (tags (let ((tag-list (org-element-property :tags headline)))
1005 (and tag-list
1006 (format ":%s:" (mapconcat #'identity tag-list ":")))))
1007 (commentedp (org-element-property :commentedp headline))
1008 (pre-blank (or (org-element-property :pre-blank headline) 0))
1009 (heading
1010 (concat (make-string (if org-odd-levels-only (1- (* level 2)) level)
1012 (and todo (concat " " todo))
1013 (and commentedp (concat " " org-comment-string))
1014 (and priority (format " [#%c]" priority))
1016 (if (and org-footnote-section
1017 (org-element-property :footnote-section-p headline))
1018 org-footnote-section
1019 title))))
1020 (concat
1021 heading
1022 ;; Align tags.
1023 (when tags
1024 (cond
1025 ((zerop org-tags-column) (format " %s" tags))
1026 ((< org-tags-column 0)
1027 (concat
1028 (make-string
1029 (max (- (+ org-tags-column (length heading) (length tags))) 1)
1030 ?\s)
1031 tags))
1033 (concat
1034 (make-string (max (- org-tags-column (length heading)) 1) ?\s)
1035 tags))))
1036 (make-string (1+ pre-blank) ?\n)
1037 contents)))
1040 ;;;; Inlinetask
1042 (defun org-element-inlinetask-parser (limit &optional raw-secondary-p)
1043 "Parse an inline task.
1045 Return a list whose CAR is `inlinetask' and CDR is a plist
1046 containing `:title', `:begin', `:end', `:contents-begin' and
1047 `:contents-end', `:level', `:priority', `:raw-value', `:tags',
1048 `:todo-keyword', `:todo-type', `:scheduled', `:deadline',
1049 `:closed', `:post-blank' and `:post-affiliated' keywords.
1051 The plist also contains any property set in the property drawer,
1052 with its name in upper cases and colons added at the
1053 beginning (e.g., `:CUSTOM_ID').
1055 When optional argument RAW-SECONDARY-P is non-nil, inline-task's
1056 title will not be parsed as a secondary string, but as a plain
1057 string instead.
1059 Assume point is at beginning of the inline task."
1060 (save-excursion
1061 (let* ((begin (point))
1062 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
1063 (skip-chars-forward " \t")))
1064 (todo (and org-todo-regexp
1065 (let (case-fold-search) (looking-at org-todo-regexp))
1066 (progn (goto-char (match-end 0))
1067 (skip-chars-forward " \t")
1068 (match-string 0))))
1069 (todo-type (and todo
1070 (if (member todo org-done-keywords) 'done 'todo)))
1071 (priority (and (looking-at "\\[#.\\][ \t]*")
1072 (progn (goto-char (match-end 0))
1073 (aref (match-string 0) 2))))
1074 (title-start (point))
1075 (tags (when (re-search-forward
1076 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
1077 (line-end-position)
1078 'move)
1079 (goto-char (match-beginning 0))
1080 (org-split-string (match-string 1) ":")))
1081 (title-end (point))
1082 (raw-value (org-trim
1083 (buffer-substring-no-properties title-start title-end)))
1084 (task-end (save-excursion
1085 (end-of-line)
1086 (and (re-search-forward org-outline-regexp-bol limit t)
1087 (org-looking-at-p "END[ \t]*$")
1088 (line-beginning-position))))
1089 (standard-props (and task-end (org-element--get-node-properties)))
1090 (time-props (and task-end (org-element--get-time-properties)))
1091 (contents-begin (progn (forward-line)
1092 (and task-end (< (point) task-end) (point))))
1093 (contents-end (and contents-begin task-end))
1094 (before-blank (if (not task-end) (point)
1095 (goto-char task-end)
1096 (forward-line)
1097 (point)))
1098 (end (progn (skip-chars-forward " \r\t\n" limit)
1099 (if (eobp) (point) (line-beginning-position))))
1100 (inlinetask
1101 (list 'inlinetask
1102 (nconc
1103 (list :raw-value raw-value
1104 :begin begin
1105 :end end
1106 :contents-begin contents-begin
1107 :contents-end contents-end
1108 :level level
1109 :priority priority
1110 :tags tags
1111 :todo-keyword todo
1112 :todo-type todo-type
1113 :post-blank (count-lines before-blank end)
1114 :post-affiliated begin)
1115 time-props
1116 standard-props))))
1117 (org-element-put-property
1118 inlinetask :title
1119 (if raw-secondary-p raw-value
1120 (let ((title (org-element--parse-objects
1121 (progn (goto-char title-start)
1122 (skip-chars-forward " \t")
1123 (point))
1124 (progn (goto-char title-end)
1125 (skip-chars-backward " \t")
1126 (point))
1128 (org-element-restriction 'inlinetask))))
1129 (dolist (datum title title)
1130 (org-element-put-property datum :parent inlinetask))))))))
1132 (defun org-element-inlinetask-interpreter (inlinetask contents)
1133 "Interpret INLINETASK element as Org syntax.
1134 CONTENTS is the contents of inlinetask."
1135 (let* ((level (org-element-property :level inlinetask))
1136 (todo (org-element-property :todo-keyword inlinetask))
1137 (priority (org-element-property :priority inlinetask))
1138 (title (org-element-interpret-data
1139 (org-element-property :title inlinetask)))
1140 (tags (let ((tag-list (org-element-property :tags inlinetask)))
1141 (and tag-list
1142 (format ":%s:" (mapconcat 'identity tag-list ":")))))
1143 (task (concat (make-string level ?*)
1144 (and todo (concat " " todo))
1145 (and priority (format " [#%c]" priority))
1146 (and title (concat " " title)))))
1147 (concat task
1148 ;; Align tags.
1149 (when tags
1150 (cond
1151 ((zerop org-tags-column) (format " %s" tags))
1152 ((< org-tags-column 0)
1153 (concat
1154 (make-string
1155 (max (- (+ org-tags-column (length task) (length tags))) 1)
1157 tags))
1159 (concat
1160 (make-string (max (- org-tags-column (length task)) 1) ? )
1161 tags))))
1162 ;; Prefer degenerate inlinetasks when there are no
1163 ;; contents.
1164 (when contents
1165 (concat "\n"
1166 contents
1167 (make-string level ?*) " END")))))
1170 ;;;; Item
1172 (defun org-element-item-parser (_ struct &optional raw-secondary-p)
1173 "Parse an item.
1175 STRUCT is the structure of the plain list.
1177 Return a list whose CAR is `item' and CDR is a plist containing
1178 `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
1179 `:checkbox', `:counter', `:tag', `:structure', `:post-blank' and
1180 `:post-affiliated' keywords.
1182 When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
1183 any, will not be parsed as a secondary string, but as a plain
1184 string instead.
1186 Assume point is at the beginning of the item."
1187 (save-excursion
1188 (beginning-of-line)
1189 (looking-at org-list-full-item-re)
1190 (let* ((begin (point))
1191 (bullet (org-match-string-no-properties 1))
1192 (checkbox (let ((box (match-string 3)))
1193 (cond ((equal "[ ]" box) 'off)
1194 ((equal "[X]" box) 'on)
1195 ((equal "[-]" box) 'trans))))
1196 (counter (let ((c (match-string 2)))
1197 (save-match-data
1198 (cond
1199 ((not c) nil)
1200 ((string-match "[A-Za-z]" c)
1201 (- (string-to-char (upcase (match-string 0 c)))
1202 64))
1203 ((string-match "[0-9]+" c)
1204 (string-to-number (match-string 0 c)))))))
1205 (end (progn (goto-char (nth 6 (assq (point) struct)))
1206 (if (bolp) (point) (line-beginning-position 2))))
1207 (contents-begin
1208 (progn (goto-char
1209 ;; Ignore tags in un-ordered lists: they are just
1210 ;; a part of item's body.
1211 (if (and (match-beginning 4)
1212 (save-match-data (string-match "[.)]" bullet)))
1213 (match-beginning 4)
1214 (match-end 0)))
1215 (skip-chars-forward " \r\t\n" end)
1216 (cond ((= (point) end) nil)
1217 ;; If first line isn't empty, contents really
1218 ;; start at the text after item's meta-data.
1219 ((= (line-beginning-position) begin) (point))
1220 (t (line-beginning-position)))))
1221 (contents-end (and contents-begin
1222 (progn (goto-char end)
1223 (skip-chars-backward " \r\t\n")
1224 (line-beginning-position 2))))
1225 (item
1226 (list 'item
1227 (list :bullet bullet
1228 :begin begin
1229 :end end
1230 :contents-begin contents-begin
1231 :contents-end contents-end
1232 :checkbox checkbox
1233 :counter counter
1234 :structure struct
1235 :post-blank (count-lines (or contents-end begin) end)
1236 :post-affiliated begin))))
1237 (org-element-put-property
1238 item :tag
1239 (let ((raw (org-list-get-tag begin struct)))
1240 (when raw
1241 (if raw-secondary-p raw
1242 (let ((tag (org-element--parse-objects
1243 (match-beginning 4) (match-end 4) nil
1244 (org-element-restriction 'item))))
1245 (dolist (datum tag tag)
1246 (org-element-put-property datum :parent item))))))))))
1248 (defun org-element-item-interpreter (item contents)
1249 "Interpret ITEM element as Org syntax.
1250 CONTENTS is the contents of the element."
1251 (let* ((bullet (let ((bullet (org-element-property :bullet item)))
1252 (org-list-bullet-string
1253 (cond ((not (string-match "[0-9a-zA-Z]" bullet)) "- ")
1254 ((eq org-plain-list-ordered-item-terminator ?\)) "1)")
1255 (t "1.")))))
1256 (checkbox (org-element-property :checkbox item))
1257 (counter (org-element-property :counter item))
1258 (tag (let ((tag (org-element-property :tag item)))
1259 (and tag (org-element-interpret-data tag))))
1260 ;; Compute indentation.
1261 (ind (make-string (length bullet) 32))
1262 (item-starts-with-par-p
1263 (eq (org-element-type (car (org-element-contents item)))
1264 'paragraph)))
1265 ;; Indent contents.
1266 (concat
1267 bullet
1268 (and counter (format "[@%d] " counter))
1269 (pcase checkbox
1270 (`on "[X] ")
1271 (`off "[ ] ")
1272 (`trans "[-] ")
1273 (_ nil))
1274 (and tag (format "%s :: " tag))
1275 (when contents
1276 (let ((contents (replace-regexp-in-string
1277 "\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
1278 (if item-starts-with-par-p (org-trim contents)
1279 (concat "\n" contents)))))))
1282 ;;;; Plain List
1284 (defun org-element--list-struct (limit)
1285 ;; Return structure of list at point. Internal function. See
1286 ;; `org-list-struct' for details.
1287 (let ((case-fold-search t)
1288 (top-ind limit)
1289 (item-re (org-item-re))
1290 (inlinetask-re (and (featurep 'org-inlinetask) "^\\*+ "))
1291 items struct)
1292 (save-excursion
1293 (catch 'exit
1294 (while t
1295 (cond
1296 ;; At limit: end all items.
1297 ((>= (point) limit)
1298 (throw 'exit
1299 (let ((end (progn (skip-chars-backward " \r\t\n")
1300 (forward-line)
1301 (point))))
1302 (dolist (item items (sort (nconc items struct)
1303 'car-less-than-car))
1304 (setcar (nthcdr 6 item) end)))))
1305 ;; At list end: end all items.
1306 ((looking-at org-list-end-re)
1307 (throw 'exit (dolist (item items (sort (nconc items struct)
1308 'car-less-than-car))
1309 (setcar (nthcdr 6 item) (point)))))
1310 ;; At a new item: end previous sibling.
1311 ((looking-at item-re)
1312 (let ((ind (save-excursion (skip-chars-forward " \t")
1313 (current-column))))
1314 (setq top-ind (min top-ind ind))
1315 (while (and items (<= ind (nth 1 (car items))))
1316 (let ((item (pop items)))
1317 (setcar (nthcdr 6 item) (point))
1318 (push item struct)))
1319 (push (progn (looking-at org-list-full-item-re)
1320 (let ((bullet (match-string-no-properties 1)))
1321 (list (point)
1323 bullet
1324 (match-string-no-properties 2) ; counter
1325 (match-string-no-properties 3) ; checkbox
1326 ;; Description tag.
1327 (and (save-match-data
1328 (string-match "[-+*]" bullet))
1329 (match-string-no-properties 4))
1330 ;; Ending position, unknown so far.
1331 nil)))
1332 items))
1333 (forward-line 1))
1334 ;; Skip empty lines.
1335 ((looking-at "^[ \t]*$") (forward-line))
1336 ;; Skip inline tasks and blank lines along the way.
1337 ((and inlinetask-re (looking-at inlinetask-re))
1338 (forward-line)
1339 (let ((origin (point)))
1340 (when (re-search-forward inlinetask-re limit t)
1341 (if (org-looking-at-p "END[ \t]*$") (forward-line)
1342 (goto-char origin)))))
1343 ;; At some text line. Check if it ends any previous item.
1345 (let ((ind (save-excursion (skip-chars-forward " \t")
1346 (current-column))))
1347 (when (<= ind top-ind)
1348 (skip-chars-backward " \r\t\n")
1349 (forward-line))
1350 (while (<= ind (nth 1 (car items)))
1351 (let ((item (pop items)))
1352 (setcar (nthcdr 6 item) (line-beginning-position))
1353 (push item struct)
1354 (unless items
1355 (throw 'exit (sort struct #'car-less-than-car))))))
1356 ;; Skip blocks (any type) and drawers contents.
1357 (cond
1358 ((and (looking-at "[ \t]*#\\+BEGIN\\(:\\|_\\S-+\\)")
1359 (re-search-forward
1360 (format "^[ \t]*#\\+END%s[ \t]*$" (match-string 1))
1361 limit t)))
1362 ((and (looking-at org-drawer-regexp)
1363 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t))))
1364 (forward-line))))))))
1366 (defun org-element-plain-list-parser (limit affiliated structure)
1367 "Parse a plain list.
1369 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1370 the buffer position at the beginning of the first affiliated
1371 keyword and CDR is a plist of affiliated keywords along with
1372 their value. STRUCTURE is the structure of the plain list being
1373 parsed.
1375 Return a list whose CAR is `plain-list' and CDR is a plist
1376 containing `:type', `:begin', `:end', `:contents-begin' and
1377 `:contents-end', `:structure', `:post-blank' and
1378 `:post-affiliated' keywords.
1380 Assume point is at the beginning of the list."
1381 (save-excursion
1382 (let* ((struct (or structure (org-element--list-struct limit)))
1383 (type (cond ((org-looking-at-p "[ \t]*[A-Za-z0-9]") 'ordered)
1384 ((nth 5 (assq (point) struct)) 'descriptive)
1385 (t 'unordered)))
1386 (contents-begin (point))
1387 (begin (car affiliated))
1388 (contents-end (let* ((item (assq contents-begin struct))
1389 (ind (nth 1 item))
1390 (pos (nth 6 item)))
1391 (while (and (setq item (assq pos struct))
1392 (= (nth 1 item) ind))
1393 (setq pos (nth 6 item)))
1394 pos))
1395 (end (progn (goto-char contents-end)
1396 (skip-chars-forward " \r\t\n" limit)
1397 (if (= (point) limit) limit (line-beginning-position)))))
1398 ;; Return value.
1399 (list 'plain-list
1400 (nconc
1401 (list :type type
1402 :begin begin
1403 :end end
1404 :contents-begin contents-begin
1405 :contents-end contents-end
1406 :structure struct
1407 :post-blank (count-lines contents-end end)
1408 :post-affiliated contents-begin)
1409 (cdr affiliated))))))
1411 (defun org-element-plain-list-interpreter (_ contents)
1412 "Interpret plain-list element as Org syntax.
1413 CONTENTS is the contents of the element."
1414 (with-temp-buffer
1415 (insert contents)
1416 (goto-char (point-min))
1417 (org-list-repair)
1418 (buffer-string)))
1421 ;;;; Property Drawer
1423 (defun org-element-property-drawer-parser (limit)
1424 "Parse a property drawer.
1426 LIMIT bounds the search.
1428 Return a list whose car is `property-drawer' and cdr is a plist
1429 containing `:begin', `:end', `:contents-begin', `:contents-end',
1430 `:post-blank' and `:post-affiliated' keywords.
1432 Assume point is at the beginning of the property drawer."
1433 (save-excursion
1434 (let ((case-fold-search t)
1435 (begin (point))
1436 (contents-begin (line-beginning-position 2)))
1437 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)
1438 (let ((contents-end (and (> (match-beginning 0) contents-begin)
1439 (match-beginning 0)))
1440 (before-blank (progn (forward-line) (point)))
1441 (end (progn (skip-chars-forward " \r\t\n" limit)
1442 (if (eobp) (point) (line-beginning-position)))))
1443 (list 'property-drawer
1444 (list :begin begin
1445 :end end
1446 :contents-begin (and contents-end contents-begin)
1447 :contents-end contents-end
1448 :post-blank (count-lines before-blank end)
1449 :post-affiliated begin))))))
1451 (defun org-element-property-drawer-interpreter (_ contents)
1452 "Interpret property-drawer element as Org syntax.
1453 CONTENTS is the properties within the drawer."
1454 (format ":PROPERTIES:\n%s:END:" contents))
1457 ;;;; Quote Block
1459 (defun org-element-quote-block-parser (limit affiliated)
1460 "Parse a quote block.
1462 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1463 the buffer position at the beginning of the first affiliated
1464 keyword and CDR is a plist of affiliated keywords along with
1465 their value.
1467 Return a list whose CAR is `quote-block' and CDR is a plist
1468 containing `:begin', `:end', `:contents-begin', `:contents-end',
1469 `:post-blank' and `:post-affiliated' keywords.
1471 Assume point is at the beginning of the block."
1472 (let ((case-fold-search t))
1473 (if (not (save-excursion
1474 (re-search-forward "^[ \t]*#\\+END_QUOTE[ \t]*$" limit t)))
1475 ;; Incomplete block: parse it as a paragraph.
1476 (org-element-paragraph-parser limit affiliated)
1477 (let ((block-end-line (match-beginning 0)))
1478 (save-excursion
1479 (let* ((begin (car affiliated))
1480 (post-affiliated (point))
1481 ;; Empty blocks have no contents.
1482 (contents-begin (progn (forward-line)
1483 (and (< (point) block-end-line)
1484 (point))))
1485 (contents-end (and contents-begin block-end-line))
1486 (pos-before-blank (progn (goto-char block-end-line)
1487 (forward-line)
1488 (point)))
1489 (end (progn (skip-chars-forward " \r\t\n" limit)
1490 (if (eobp) (point) (line-beginning-position)))))
1491 (list 'quote-block
1492 (nconc
1493 (list :begin begin
1494 :end end
1495 :contents-begin contents-begin
1496 :contents-end contents-end
1497 :post-blank (count-lines pos-before-blank end)
1498 :post-affiliated post-affiliated)
1499 (cdr affiliated)))))))))
1501 (defun org-element-quote-block-interpreter (_ contents)
1502 "Interpret quote-block element as Org syntax.
1503 CONTENTS is the contents of the element."
1504 (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents))
1507 ;;;; Section
1509 (defun org-element-section-parser (_)
1510 "Parse a section.
1512 Return a list whose CAR is `section' and CDR is a plist
1513 containing `:begin', `:end', `:contents-begin', `contents-end',
1514 `:post-blank' and `:post-affiliated' keywords."
1515 (save-excursion
1516 ;; Beginning of section is the beginning of the first non-blank
1517 ;; line after previous headline.
1518 (let ((begin (point))
1519 (end (progn (org-with-limited-levels (outline-next-heading))
1520 (point)))
1521 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1522 (line-beginning-position 2))))
1523 (list 'section
1524 (list :begin begin
1525 :end end
1526 :contents-begin begin
1527 :contents-end pos-before-blank
1528 :post-blank (count-lines pos-before-blank end)
1529 :post-affiliated begin)))))
1531 (defun org-element-section-interpreter (_ contents)
1532 "Interpret section element as Org syntax.
1533 CONTENTS is the contents of the element."
1534 contents)
1537 ;;;; Special Block
1539 (defun org-element-special-block-parser (limit affiliated)
1540 "Parse a special block.
1542 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1543 the buffer position at the beginning of the first affiliated
1544 keyword and CDR is a plist of affiliated keywords along with
1545 their value.
1547 Return a list whose CAR is `special-block' and CDR is a plist
1548 containing `:type', `:begin', `:end', `:contents-begin',
1549 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
1551 Assume point is at the beginning of the block."
1552 (let* ((case-fold-search t)
1553 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1554 (match-string-no-properties 1))))
1555 (if (not (save-excursion
1556 (re-search-forward
1557 (format "^[ \t]*#\\+END_%s[ \t]*$" (regexp-quote type))
1558 limit t)))
1559 ;; Incomplete block: parse it as a paragraph.
1560 (org-element-paragraph-parser limit affiliated)
1561 (let ((block-end-line (match-beginning 0)))
1562 (save-excursion
1563 (let* ((begin (car affiliated))
1564 (post-affiliated (point))
1565 ;; Empty blocks have no contents.
1566 (contents-begin (progn (forward-line)
1567 (and (< (point) block-end-line)
1568 (point))))
1569 (contents-end (and contents-begin block-end-line))
1570 (pos-before-blank (progn (goto-char block-end-line)
1571 (forward-line)
1572 (point)))
1573 (end (progn (skip-chars-forward " \r\t\n" limit)
1574 (if (eobp) (point) (line-beginning-position)))))
1575 (list 'special-block
1576 (nconc
1577 (list :type type
1578 :begin begin
1579 :end end
1580 :contents-begin contents-begin
1581 :contents-end contents-end
1582 :post-blank (count-lines pos-before-blank end)
1583 :post-affiliated post-affiliated)
1584 (cdr affiliated)))))))))
1586 (defun org-element-special-block-interpreter (special-block contents)
1587 "Interpret SPECIAL-BLOCK element as Org syntax.
1588 CONTENTS is the contents of the element."
1589 (let ((block-type (org-element-property :type special-block)))
1590 (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type)))
1594 ;;; Elements
1596 ;; For each element, a parser and an interpreter are also defined.
1597 ;; Both follow the same naming convention used for greater elements.
1599 ;; Also, as for greater elements, adding a new element type is done
1600 ;; through the following steps: implement a parser and an interpreter,
1601 ;; tweak `org-element--current-element' so that it recognizes the new
1602 ;; type and add that new type to `org-element-all-elements'.
1604 ;; As a special case, when the newly defined type is a block type,
1605 ;; `org-element-block-name-alist' has to be modified accordingly.
1608 ;;;; Babel Call
1610 (defun org-element-babel-call-parser (limit affiliated)
1611 "Parse a babel call.
1613 LIMIT bounds the search. AFFILIATED is a list of which car is
1614 the buffer position at the beginning of the first affiliated
1615 keyword and cdr is a plist of affiliated keywords along with
1616 their value.
1618 Return a list whose car is `babel-call' and cdr is a plist
1619 containing `:call', `:inside-header', `:arguments',
1620 `:end-header', `:begin', `:end', `:value', `:post-blank' and
1621 `:post-affiliated' as keywords."
1622 (save-excursion
1623 (let* ((begin (car affiliated))
1624 (post-affiliated (point))
1625 (value (progn (search-forward ":" nil t)
1626 (org-trim
1627 (buffer-substring-no-properties
1628 (point) (line-end-position)))))
1629 (pos-before-blank (progn (forward-line) (point)))
1630 (end (progn (skip-chars-forward " \r\t\n" limit)
1631 (if (eobp) (point) (line-beginning-position))))
1632 (valid-value
1633 (string-match
1634 "\\([^()\n]+?\\)\\(?:\\[\\(.*?\\)\\]\\)?(\\(.*\\))[ \t]*\\(.*\\)"
1635 value)))
1636 (list 'babel-call
1637 (nconc
1638 (list :call (and valid-value (match-string 1 value))
1639 :inside-header (and valid-value
1640 (org-string-nw-p (match-string 2 value)))
1641 :arguments (and valid-value
1642 (org-string-nw-p (match-string 3 value)))
1643 :end-header (and valid-value
1644 (org-string-nw-p (match-string 4 value)))
1645 :begin begin
1646 :end end
1647 :value value
1648 :post-blank (count-lines pos-before-blank end)
1649 :post-affiliated post-affiliated)
1650 (cdr affiliated))))))
1652 (defun org-element-babel-call-interpreter (babel-call _)
1653 "Interpret BABEL-CALL element as Org syntax."
1654 (concat "#+CALL: "
1655 (org-element-property :call babel-call)
1656 (let ((h (org-element-property :inside-header babel-call)))
1657 (and h (format "[%s]" h)))
1658 (concat "(" (org-element-property :arguments babel-call) ")")
1659 (let ((h (org-element-property :end-header babel-call)))
1660 (and h (concat " " h)))))
1663 ;;;; Clock
1665 (defun org-element-clock-parser (limit)
1666 "Parse a clock.
1668 LIMIT bounds the search.
1670 Return a list whose CAR is `clock' and CDR is a plist containing
1671 `:status', `:value', `:time', `:begin', `:end', `:post-blank' and
1672 `:post-affiliated' as keywords."
1673 (save-excursion
1674 (let* ((case-fold-search nil)
1675 (begin (point))
1676 (value (progn (search-forward org-clock-string (line-end-position) t)
1677 (skip-chars-forward " \t")
1678 (org-element-timestamp-parser)))
1679 (duration (and (search-forward " => " (line-end-position) t)
1680 (progn (skip-chars-forward " \t")
1681 (looking-at "\\(\\S-+\\)[ \t]*$"))
1682 (org-match-string-no-properties 1)))
1683 (status (if duration 'closed 'running))
1684 (post-blank (let ((before-blank (progn (forward-line) (point))))
1685 (skip-chars-forward " \r\t\n" limit)
1686 (skip-chars-backward " \t")
1687 (unless (bolp) (end-of-line))
1688 (count-lines before-blank (point))))
1689 (end (point)))
1690 (list 'clock
1691 (list :status status
1692 :value value
1693 :duration duration
1694 :begin begin
1695 :end end
1696 :post-blank post-blank
1697 :post-affiliated begin)))))
1699 (defun org-element-clock-interpreter (clock _)
1700 "Interpret CLOCK element as Org syntax."
1701 (concat org-clock-string " "
1702 (org-element-timestamp-interpreter
1703 (org-element-property :value clock) nil)
1704 (let ((duration (org-element-property :duration clock)))
1705 (and duration
1706 (concat " => "
1707 (apply 'format
1708 "%2s:%02s"
1709 (org-split-string duration ":")))))))
1712 ;;;; Comment
1714 (defun org-element-comment-parser (limit affiliated)
1715 "Parse a comment.
1717 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1718 the buffer position at the beginning of the first affiliated
1719 keyword and CDR is a plist of affiliated keywords along with
1720 their value.
1722 Return a list whose CAR is `comment' and CDR is a plist
1723 containing `:begin', `:end', `:value', `:post-blank',
1724 `:post-affiliated' keywords.
1726 Assume point is at comment beginning."
1727 (save-excursion
1728 (let* ((begin (car affiliated))
1729 (post-affiliated (point))
1730 (value (prog2 (looking-at "[ \t]*# ?")
1731 (buffer-substring-no-properties
1732 (match-end 0) (line-end-position))
1733 (forward-line)))
1734 (com-end
1735 ;; Get comments ending.
1736 (progn
1737 (while (and (< (point) limit) (looking-at "[ \t]*#\\( \\|$\\)"))
1738 ;; Accumulate lines without leading hash and first
1739 ;; whitespace.
1740 (setq value
1741 (concat value
1742 "\n"
1743 (buffer-substring-no-properties
1744 (match-end 0) (line-end-position))))
1745 (forward-line))
1746 (point)))
1747 (end (progn (goto-char com-end)
1748 (skip-chars-forward " \r\t\n" limit)
1749 (if (eobp) (point) (line-beginning-position)))))
1750 (list 'comment
1751 (nconc
1752 (list :begin begin
1753 :end end
1754 :value value
1755 :post-blank (count-lines com-end end)
1756 :post-affiliated post-affiliated)
1757 (cdr affiliated))))))
1759 (defun org-element-comment-interpreter (comment _)
1760 "Interpret COMMENT element as Org syntax.
1761 CONTENTS is nil."
1762 (replace-regexp-in-string "^" "# " (org-element-property :value comment)))
1765 ;;;; Comment Block
1767 (defun org-element-comment-block-parser (limit affiliated)
1768 "Parse an export block.
1770 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1771 the buffer position at the beginning of the first affiliated
1772 keyword and CDR is a plist of affiliated keywords along with
1773 their value.
1775 Return a list whose CAR is `comment-block' and CDR is a plist
1776 containing `:begin', `:end', `:value', `:post-blank' and
1777 `:post-affiliated' keywords.
1779 Assume point is at comment block beginning."
1780 (let ((case-fold-search t))
1781 (if (not (save-excursion
1782 (re-search-forward "^[ \t]*#\\+END_COMMENT[ \t]*$" limit t)))
1783 ;; Incomplete block: parse it as a paragraph.
1784 (org-element-paragraph-parser limit affiliated)
1785 (let ((contents-end (match-beginning 0)))
1786 (save-excursion
1787 (let* ((begin (car affiliated))
1788 (post-affiliated (point))
1789 (contents-begin (progn (forward-line) (point)))
1790 (pos-before-blank (progn (goto-char contents-end)
1791 (forward-line)
1792 (point)))
1793 (end (progn (skip-chars-forward " \r\t\n" limit)
1794 (if (eobp) (point) (line-beginning-position))))
1795 (value (buffer-substring-no-properties
1796 contents-begin contents-end)))
1797 (list 'comment-block
1798 (nconc
1799 (list :begin begin
1800 :end end
1801 :value value
1802 :post-blank (count-lines pos-before-blank end)
1803 :post-affiliated post-affiliated)
1804 (cdr affiliated)))))))))
1806 (defun org-element-comment-block-interpreter (comment-block _)
1807 "Interpret COMMENT-BLOCK element as Org syntax."
1808 (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
1809 (org-element-normalize-string
1810 (org-remove-indentation
1811 (org-element-property :value comment-block)))))
1814 ;;;; Diary Sexp
1816 (defun org-element-diary-sexp-parser (limit affiliated)
1817 "Parse a diary sexp.
1819 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1820 the buffer position at the beginning of the first affiliated
1821 keyword and CDR is a plist of affiliated keywords along with
1822 their value.
1824 Return a list whose CAR is `diary-sexp' and CDR is a plist
1825 containing `:begin', `:end', `:value', `:post-blank' and
1826 `:post-affiliated' keywords."
1827 (save-excursion
1828 (let ((begin (car affiliated))
1829 (post-affiliated (point))
1830 (value (progn (looking-at "\\(%%(.*\\)[ \t]*$")
1831 (org-match-string-no-properties 1)))
1832 (pos-before-blank (progn (forward-line) (point)))
1833 (end (progn (skip-chars-forward " \r\t\n" limit)
1834 (if (eobp) (point) (line-beginning-position)))))
1835 (list 'diary-sexp
1836 (nconc
1837 (list :value value
1838 :begin begin
1839 :end end
1840 :post-blank (count-lines pos-before-blank end)
1841 :post-affiliated post-affiliated)
1842 (cdr affiliated))))))
1844 (defun org-element-diary-sexp-interpreter (diary-sexp _)
1845 "Interpret DIARY-SEXP as Org syntax."
1846 (org-element-property :value diary-sexp))
1849 ;;;; Example Block
1851 (defun org-element-example-block-parser (limit affiliated)
1852 "Parse an example block.
1854 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1855 the buffer position at the beginning of the first affiliated
1856 keyword and CDR is a plist of affiliated keywords along with
1857 their value.
1859 Return a list whose CAR is `example-block' and CDR is a plist
1860 containing `:begin', `:end', `:number-lines', `:preserve-indent',
1861 `:retain-labels', `:use-labels', `:label-fmt', `:switches',
1862 `:value', `:post-blank' and `:post-affiliated' keywords."
1863 (let ((case-fold-search t))
1864 (if (not (save-excursion
1865 (re-search-forward "^[ \t]*#\\+END_EXAMPLE[ \t]*$" limit t)))
1866 ;; Incomplete block: parse it as a paragraph.
1867 (org-element-paragraph-parser limit affiliated)
1868 (let ((contents-end (match-beginning 0)))
1869 (save-excursion
1870 (let* ((switches
1871 (progn
1872 (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
1873 (org-match-string-no-properties 1)))
1874 ;; Switches analysis
1875 (number-lines
1876 (cond ((not switches) nil)
1877 ((string-match "-n\\>" switches) 'new)
1878 ((string-match "+n\\>" switches) 'continued)))
1879 (preserve-indent
1880 (and switches (string-match "-i\\>" switches)))
1881 ;; Should labels be retained in (or stripped from) example
1882 ;; blocks?
1883 (retain-labels
1884 (or (not switches)
1885 (not (string-match "-r\\>" switches))
1886 (and number-lines (string-match "-k\\>" switches))))
1887 ;; What should code-references use - labels or
1888 ;; line-numbers?
1889 (use-labels
1890 (or (not switches)
1891 (and retain-labels
1892 (not (string-match "-k\\>" switches)))))
1893 (label-fmt
1894 (and switches
1895 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
1896 (match-string 1 switches)))
1897 ;; Standard block parsing.
1898 (begin (car affiliated))
1899 (post-affiliated (point))
1900 (block-ind (progn (skip-chars-forward " \t") (current-column)))
1901 (contents-begin (progn (forward-line) (point)))
1902 (value (org-remove-indentation
1903 (org-unescape-code-in-string
1904 (buffer-substring-no-properties
1905 contents-begin contents-end))
1906 block-ind))
1907 (pos-before-blank (progn (goto-char contents-end)
1908 (forward-line)
1909 (point)))
1910 (end (progn (skip-chars-forward " \r\t\n" limit)
1911 (if (eobp) (point) (line-beginning-position)))))
1912 (list 'example-block
1913 (nconc
1914 (list :begin begin
1915 :end end
1916 :value value
1917 :switches switches
1918 :number-lines number-lines
1919 :preserve-indent preserve-indent
1920 :retain-labels retain-labels
1921 :use-labels use-labels
1922 :label-fmt label-fmt
1923 :post-blank (count-lines pos-before-blank end)
1924 :post-affiliated post-affiliated)
1925 (cdr affiliated)))))))))
1927 (defun org-element-example-block-interpreter (example-block _)
1928 "Interpret EXAMPLE-BLOCK element as Org syntax."
1929 (let ((switches (org-element-property :switches example-block))
1930 (value (org-element-property :value example-block)))
1931 (concat "#+BEGIN_EXAMPLE" (and switches (concat " " switches)) "\n"
1932 (org-element-normalize-string
1933 (org-escape-code-in-string
1934 (if (or org-src-preserve-indentation
1935 (org-element-property :preserve-indent example-block))
1936 value
1937 (org-remove-indentation value))))
1938 "#+END_EXAMPLE")))
1941 ;;;; Export Block
1943 (defun org-element-export-block-parser (limit affiliated)
1944 "Parse an export block.
1946 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1947 the buffer position at the beginning of the first affiliated
1948 keyword and CDR is a plist of affiliated keywords along with
1949 their value.
1951 Return a list whose CAR is `export-block' and CDR is a plist
1952 containing `:begin', `:end', `:type', `:value', `:post-blank' and
1953 `:post-affiliated' keywords.
1955 Assume point is at export-block beginning."
1956 (let* ((case-fold-search t)
1957 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1958 (upcase (org-match-string-no-properties 1)))))
1959 (if (not (save-excursion
1960 (re-search-forward
1961 (format "^[ \t]*#\\+END_%s[ \t]*$" type) limit t)))
1962 ;; Incomplete block: parse it as a paragraph.
1963 (org-element-paragraph-parser limit affiliated)
1964 (let ((contents-end (match-beginning 0)))
1965 (save-excursion
1966 (let* ((begin (car affiliated))
1967 (post-affiliated (point))
1968 (contents-begin (progn (forward-line) (point)))
1969 (pos-before-blank (progn (goto-char contents-end)
1970 (forward-line)
1971 (point)))
1972 (end (progn (skip-chars-forward " \r\t\n" limit)
1973 (if (eobp) (point) (line-beginning-position))))
1974 (value (buffer-substring-no-properties contents-begin
1975 contents-end)))
1976 (list 'export-block
1977 (nconc
1978 (list :begin begin
1979 :end end
1980 :type type
1981 :value value
1982 :post-blank (count-lines pos-before-blank end)
1983 :post-affiliated post-affiliated)
1984 (cdr affiliated)))))))))
1986 (defun org-element-export-block-interpreter (export-block _)
1987 "Interpret EXPORT-BLOCK element as Org syntax."
1988 (let ((type (org-element-property :type export-block)))
1989 (concat (format "#+BEGIN_%s\n" type)
1990 (org-element-property :value export-block)
1991 (format "#+END_%s" type))))
1994 ;;;; Fixed-width
1996 (defun org-element-fixed-width-parser (limit affiliated)
1997 "Parse a fixed-width section.
1999 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2000 the buffer position at the beginning of the first affiliated
2001 keyword and CDR is a plist of affiliated keywords along with
2002 their value.
2004 Return a list whose CAR is `fixed-width' and CDR is a plist
2005 containing `:begin', `:end', `:value', `:post-blank' and
2006 `:post-affiliated' keywords.
2008 Assume point is at the beginning of the fixed-width area."
2009 (save-excursion
2010 (let* ((begin (car affiliated))
2011 (post-affiliated (point))
2012 value
2013 (end-area
2014 (progn
2015 (while (and (< (point) limit)
2016 (looking-at "[ \t]*:\\( \\|$\\)"))
2017 ;; Accumulate text without starting colons.
2018 (setq value
2019 (concat value
2020 (buffer-substring-no-properties
2021 (match-end 0) (point-at-eol))
2022 "\n"))
2023 (forward-line))
2024 (point)))
2025 (end (progn (skip-chars-forward " \r\t\n" limit)
2026 (if (eobp) (point) (line-beginning-position)))))
2027 (list 'fixed-width
2028 (nconc
2029 (list :begin begin
2030 :end end
2031 :value value
2032 :post-blank (count-lines end-area end)
2033 :post-affiliated post-affiliated)
2034 (cdr affiliated))))))
2036 (defun org-element-fixed-width-interpreter (fixed-width _)
2037 "Interpret FIXED-WIDTH element as Org syntax."
2038 (let ((value (org-element-property :value fixed-width)))
2039 (and value
2040 (replace-regexp-in-string
2041 "^" ": "
2042 (if (string-match "\n\\'" value) (substring value 0 -1) value)))))
2045 ;;;; Horizontal Rule
2047 (defun org-element-horizontal-rule-parser (limit affiliated)
2048 "Parse an horizontal rule.
2050 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2051 the buffer position at the beginning of the first affiliated
2052 keyword and CDR is a plist of affiliated keywords along with
2053 their value.
2055 Return a list whose CAR is `horizontal-rule' and CDR is a plist
2056 containing `:begin', `:end', `:post-blank' and `:post-affiliated'
2057 keywords."
2058 (save-excursion
2059 (let ((begin (car affiliated))
2060 (post-affiliated (point))
2061 (post-hr (progn (forward-line) (point)))
2062 (end (progn (skip-chars-forward " \r\t\n" limit)
2063 (if (eobp) (point) (line-beginning-position)))))
2064 (list 'horizontal-rule
2065 (nconc
2066 (list :begin begin
2067 :end end
2068 :post-blank (count-lines post-hr end)
2069 :post-affiliated post-affiliated)
2070 (cdr affiliated))))))
2072 (defun org-element-horizontal-rule-interpreter (&rest _)
2073 "Interpret HORIZONTAL-RULE element as Org syntax."
2074 "-----")
2077 ;;;; Keyword
2079 (defun org-element-keyword-parser (limit affiliated)
2080 "Parse a keyword at point.
2082 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2083 the buffer position at the beginning of the first affiliated
2084 keyword and CDR is a plist of affiliated keywords along with
2085 their value.
2087 Return a list whose CAR is `keyword' and CDR is a plist
2088 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2089 `:post-affiliated' keywords."
2090 (save-excursion
2091 ;; An orphaned affiliated keyword is considered as a regular
2092 ;; keyword. In this case AFFILIATED is nil, so we take care of
2093 ;; this corner case.
2094 (let ((begin (or (car affiliated) (point)))
2095 (post-affiliated (point))
2096 (key (progn (looking-at "[ \t]*#\\+\\(\\S-+*\\):")
2097 (upcase (org-match-string-no-properties 1))))
2098 (value (org-trim (buffer-substring-no-properties
2099 (match-end 0) (point-at-eol))))
2100 (pos-before-blank (progn (forward-line) (point)))
2101 (end (progn (skip-chars-forward " \r\t\n" limit)
2102 (if (eobp) (point) (line-beginning-position)))))
2103 (list 'keyword
2104 (nconc
2105 (list :key key
2106 :value value
2107 :begin begin
2108 :end end
2109 :post-blank (count-lines pos-before-blank end)
2110 :post-affiliated post-affiliated)
2111 (cdr affiliated))))))
2113 (defun org-element-keyword-interpreter (keyword _)
2114 "Interpret KEYWORD element as Org syntax."
2115 (format "#+%s: %s"
2116 (org-element-property :key keyword)
2117 (org-element-property :value keyword)))
2120 ;;;; Latex Environment
2122 (defconst org-element--latex-begin-environment
2123 "^[ \t]*\\\\begin{\\([A-Za-z0-9*]+\\)}"
2124 "Regexp matching the beginning of a LaTeX environment.
2125 The environment is captured by the first group.
2127 See also `org-element--latex-end-environment'.")
2129 (defconst org-element--latex-end-environment
2130 "\\\\end{%s}[ \t]*$"
2131 "Format string matching the ending of a LaTeX environment.
2132 See also `org-element--latex-begin-environment'.")
2134 (defun org-element-latex-environment-parser (limit affiliated)
2135 "Parse a LaTeX environment.
2137 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2138 the buffer position at the beginning of the first affiliated
2139 keyword and CDR is a plist of affiliated keywords along with
2140 their value.
2142 Return a list whose CAR is `latex-environment' and CDR is a plist
2143 containing `:begin', `:end', `:value', `:post-blank' and
2144 `:post-affiliated' keywords.
2146 Assume point is at the beginning of the latex environment."
2147 (save-excursion
2148 (let ((case-fold-search t)
2149 (code-begin (point)))
2150 (looking-at org-element--latex-begin-environment)
2151 (if (not (re-search-forward (format org-element--latex-end-environment
2152 (regexp-quote (match-string 1)))
2153 limit t))
2154 ;; Incomplete latex environment: parse it as a paragraph.
2155 (org-element-paragraph-parser limit affiliated)
2156 (let* ((code-end (progn (forward-line) (point)))
2157 (begin (car affiliated))
2158 (value (buffer-substring-no-properties code-begin code-end))
2159 (end (progn (skip-chars-forward " \r\t\n" limit)
2160 (if (eobp) (point) (line-beginning-position)))))
2161 (list 'latex-environment
2162 (nconc
2163 (list :begin begin
2164 :end end
2165 :value value
2166 :post-blank (count-lines code-end end)
2167 :post-affiliated code-begin)
2168 (cdr affiliated))))))))
2170 (defun org-element-latex-environment-interpreter (latex-environment _)
2171 "Interpret LATEX-ENVIRONMENT element as Org syntax."
2172 (org-element-property :value latex-environment))
2175 ;;;; Node Property
2177 (defun org-element-node-property-parser (limit)
2178 "Parse a node-property at point.
2180 LIMIT bounds the search.
2182 Return a list whose CAR is `node-property' and CDR is a plist
2183 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2184 `:post-affiliated' keywords."
2185 (looking-at org-property-re)
2186 (let ((case-fold-search t)
2187 (begin (point))
2188 (key (org-match-string-no-properties 2))
2189 (value (org-match-string-no-properties 3))
2190 (end (save-excursion
2191 (end-of-line)
2192 (if (re-search-forward org-property-re limit t)
2193 (line-beginning-position)
2194 limit))))
2195 (list 'node-property
2196 (list :key key
2197 :value value
2198 :begin begin
2199 :end end
2200 :post-blank 0
2201 :post-affiliated begin))))
2203 (defun org-element-node-property-interpreter (node-property _)
2204 "Interpret NODE-PROPERTY element as Org syntax."
2205 (format org-property-format
2206 (format ":%s:" (org-element-property :key node-property))
2207 (or (org-element-property :value node-property) "")))
2210 ;;;; Paragraph
2212 (defun org-element-paragraph-parser (limit affiliated)
2213 "Parse a paragraph.
2215 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2216 the buffer position at the beginning of the first affiliated
2217 keyword and CDR is a plist of affiliated keywords along with
2218 their value.
2220 Return a list whose CAR is `paragraph' and CDR is a plist
2221 containing `:begin', `:end', `:contents-begin' and
2222 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
2224 Assume point is at the beginning of the paragraph."
2225 (save-excursion
2226 (let* ((begin (car affiliated))
2227 (contents-begin (point))
2228 (before-blank
2229 (let ((case-fold-search t))
2230 (end-of-line)
2231 ;; A matching `org-element-paragraph-separate' is not
2232 ;; necessarily the end of the paragraph. In particular,
2233 ;; drawers, blocks or LaTeX environments opening lines
2234 ;; must be closed. Moreover keywords with a secondary
2235 ;; value must belong to "dual keywords".
2236 (while (not
2237 (cond
2238 ((not (and (re-search-forward
2239 org-element-paragraph-separate limit 'move)
2240 (progn (beginning-of-line) t))))
2241 ((looking-at org-drawer-regexp)
2242 (save-excursion
2243 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
2244 ((looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
2245 (save-excursion
2246 (re-search-forward
2247 (format "^[ \t]*#\\+END_%s[ \t]*$"
2248 (regexp-quote (match-string 1)))
2249 limit t)))
2250 ((looking-at org-element--latex-begin-environment)
2251 (save-excursion
2252 (re-search-forward
2253 (format org-element--latex-end-environment
2254 (regexp-quote (match-string 1)))
2255 limit t)))
2256 ((looking-at "[ \t]*#\\+\\(\\S-+\\)\\[.*\\]:")
2257 (member-ignore-case (match-string 1)
2258 org-element-dual-keywords))
2259 ;; Everything else is unambiguous.
2260 (t)))
2261 (end-of-line))
2262 (if (= (point) limit) limit
2263 (goto-char (line-beginning-position)))))
2264 (contents-end (save-excursion
2265 (skip-chars-backward " \r\t\n" contents-begin)
2266 (line-beginning-position 2)))
2267 (end (progn (skip-chars-forward " \r\t\n" limit)
2268 (if (eobp) (point) (line-beginning-position)))))
2269 (list 'paragraph
2270 (nconc
2271 (list :begin begin
2272 :end end
2273 :contents-begin contents-begin
2274 :contents-end contents-end
2275 :post-blank (count-lines before-blank end)
2276 :post-affiliated contents-begin)
2277 (cdr affiliated))))))
2279 (defun org-element-paragraph-interpreter (_ contents)
2280 "Interpret paragraph element as Org syntax.
2281 CONTENTS is the contents of the element."
2282 contents)
2285 ;;;; Planning
2287 (defun org-element-planning-parser (limit)
2288 "Parse a planning.
2290 LIMIT bounds the search.
2292 Return a list whose CAR is `planning' and CDR is a plist
2293 containing `:closed', `:deadline', `:scheduled', `:begin',
2294 `:end', `:post-blank' and `:post-affiliated' keywords."
2295 (save-excursion
2296 (let* ((case-fold-search nil)
2297 (begin (point))
2298 (post-blank (let ((before-blank (progn (forward-line) (point))))
2299 (skip-chars-forward " \r\t\n" limit)
2300 (skip-chars-backward " \t")
2301 (unless (bolp) (end-of-line))
2302 (count-lines before-blank (point))))
2303 (end (point))
2304 closed deadline scheduled)
2305 (goto-char begin)
2306 (while (re-search-forward org-keyword-time-not-clock-regexp end t)
2307 (goto-char (match-end 1))
2308 (skip-chars-forward " \t" end)
2309 (let ((keyword (match-string 1))
2310 (time (org-element-timestamp-parser)))
2311 (cond ((equal keyword org-closed-string) (setq closed time))
2312 ((equal keyword org-deadline-string) (setq deadline time))
2313 (t (setq scheduled time)))))
2314 (list 'planning
2315 (list :closed closed
2316 :deadline deadline
2317 :scheduled scheduled
2318 :begin begin
2319 :end end
2320 :post-blank post-blank
2321 :post-affiliated begin)))))
2323 (defun org-element-planning-interpreter (planning _)
2324 "Interpret PLANNING element as Org syntax."
2325 (mapconcat
2326 #'identity
2327 (delq nil
2328 (list (let ((deadline (org-element-property :deadline planning)))
2329 (when deadline
2330 (concat org-deadline-string " "
2331 (org-element-timestamp-interpreter deadline nil))))
2332 (let ((scheduled (org-element-property :scheduled planning)))
2333 (when scheduled
2334 (concat org-scheduled-string " "
2335 (org-element-timestamp-interpreter scheduled nil))))
2336 (let ((closed (org-element-property :closed planning)))
2337 (when closed
2338 (concat org-closed-string " "
2339 (org-element-timestamp-interpreter closed nil))))))
2340 " "))
2343 ;;;; Src Block
2345 (defun org-element-src-block-parser (limit affiliated)
2346 "Parse a src block.
2348 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2349 the buffer position at the beginning of the first affiliated
2350 keyword and CDR is a plist of affiliated keywords along with
2351 their value.
2353 Return a list whose CAR is `src-block' and CDR is a plist
2354 containing `:language', `:switches', `:parameters', `:begin',
2355 `:end', `:number-lines', `:retain-labels', `:use-labels',
2356 `:label-fmt', `:preserve-indent', `:value', `:post-blank' and
2357 `:post-affiliated' keywords.
2359 Assume point is at the beginning of the block."
2360 (let ((case-fold-search t))
2361 (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC[ \t]*$"
2362 limit t)))
2363 ;; Incomplete block: parse it as a paragraph.
2364 (org-element-paragraph-parser limit affiliated)
2365 (let ((contents-end (match-beginning 0)))
2366 (save-excursion
2367 (let* ((begin (car affiliated))
2368 (post-affiliated (point))
2369 ;; Get language as a string.
2370 (language
2371 (progn
2372 (looking-at
2373 (concat "^[ \t]*#\\+BEGIN_SRC"
2374 "\\(?: +\\(\\S-+\\)\\)?"
2375 "\\(\\(?: +\\(?:-l \".*?\"\\|[-+][A-Za-z]\\)\\)+\\)?"
2376 "\\(.*\\)[ \t]*$"))
2377 (org-match-string-no-properties 1)))
2378 ;; Get switches.
2379 (switches (org-match-string-no-properties 2))
2380 ;; Get parameters.
2381 (parameters (org-match-string-no-properties 3))
2382 ;; Switches analysis
2383 (number-lines
2384 (cond ((not switches) nil)
2385 ((string-match "-n\\>" switches) 'new)
2386 ((string-match "+n\\>" switches) 'continued)))
2387 (preserve-indent (and switches
2388 (string-match "-i\\>" switches)))
2389 (label-fmt
2390 (and switches
2391 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
2392 (match-string 1 switches)))
2393 ;; Should labels be retained in (or stripped from)
2394 ;; src blocks?
2395 (retain-labels
2396 (or (not switches)
2397 (not (string-match "-r\\>" switches))
2398 (and number-lines (string-match "-k\\>" switches))))
2399 ;; What should code-references use - labels or
2400 ;; line-numbers?
2401 (use-labels
2402 (or (not switches)
2403 (and retain-labels
2404 (not (string-match "-k\\>" switches)))))
2405 ;; Indentation.
2406 (block-ind (progn (skip-chars-forward " \t") (current-column)))
2407 ;; Retrieve code.
2408 (value (org-remove-indentation
2409 (org-unescape-code-in-string
2410 (buffer-substring-no-properties
2411 (progn (forward-line) (point)) contents-end))
2412 block-ind))
2413 (pos-before-blank (progn (goto-char contents-end)
2414 (forward-line)
2415 (point)))
2416 ;; Get position after ending blank lines.
2417 (end (progn (skip-chars-forward " \r\t\n" limit)
2418 (if (eobp) (point) (line-beginning-position)))))
2419 (list 'src-block
2420 (nconc
2421 (list :language language
2422 :switches (and (org-string-nw-p switches)
2423 (org-trim switches))
2424 :parameters (and (org-string-nw-p parameters)
2425 (org-trim parameters))
2426 :begin begin
2427 :end end
2428 :number-lines number-lines
2429 :preserve-indent preserve-indent
2430 :retain-labels retain-labels
2431 :use-labels use-labels
2432 :label-fmt label-fmt
2433 :value value
2434 :post-blank (count-lines pos-before-blank end)
2435 :post-affiliated post-affiliated)
2436 (cdr affiliated)))))))))
2438 (defun org-element-src-block-interpreter (src-block _)
2439 "Interpret SRC-BLOCK element as Org syntax."
2440 (let ((lang (org-element-property :language src-block))
2441 (switches (org-element-property :switches src-block))
2442 (params (org-element-property :parameters src-block))
2443 (value
2444 (let ((val (org-element-property :value src-block)))
2445 (cond
2446 ((or org-src-preserve-indentation
2447 (org-element-property :preserve-indent src-block))
2448 val)
2449 ((zerop org-edit-src-content-indentation) val)
2451 (let ((ind (make-string org-edit-src-content-indentation ?\s)))
2452 (replace-regexp-in-string
2453 "\\(^\\)[ \t]*\\S-" ind val nil nil 1)))))))
2454 (concat (format "#+BEGIN_SRC%s\n"
2455 (concat (and lang (concat " " lang))
2456 (and switches (concat " " switches))
2457 (and params (concat " " params))))
2458 (org-element-normalize-string (org-escape-code-in-string value))
2459 "#+END_SRC")))
2462 ;;;; Table
2464 (defun org-element-table-parser (limit affiliated)
2465 "Parse a table at point.
2467 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2468 the buffer position at the beginning of the first affiliated
2469 keyword and CDR is a plist of affiliated keywords along with
2470 their value.
2472 Return a list whose CAR is `table' and CDR is a plist containing
2473 `:begin', `:end', `:tblfm', `:type', `:contents-begin',
2474 `:contents-end', `:value', `:post-blank' and `:post-affiliated'
2475 keywords.
2477 Assume point is at the beginning of the table."
2478 (save-excursion
2479 (let* ((case-fold-search t)
2480 (table-begin (point))
2481 (type (if (looking-at "[ \t]*|") 'org 'table.el))
2482 (end-re (format "^[ \t]*\\($\\|[^| \t%s]\\)"
2483 (if (eq type 'org) "" "+")))
2484 (begin (car affiliated))
2485 (table-end
2486 (if (re-search-forward end-re limit 'move)
2487 (goto-char (match-beginning 0))
2488 (point)))
2489 (tblfm (let (acc)
2490 (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
2491 (push (org-match-string-no-properties 1) acc)
2492 (forward-line))
2493 acc))
2494 (pos-before-blank (point))
2495 (end (progn (skip-chars-forward " \r\t\n" limit)
2496 (if (eobp) (point) (line-beginning-position)))))
2497 (list 'table
2498 (nconc
2499 (list :begin begin
2500 :end end
2501 :type type
2502 :tblfm tblfm
2503 ;; Only `org' tables have contents. `table.el' tables
2504 ;; use a `:value' property to store raw table as
2505 ;; a string.
2506 :contents-begin (and (eq type 'org) table-begin)
2507 :contents-end (and (eq type 'org) table-end)
2508 :value (and (eq type 'table.el)
2509 (buffer-substring-no-properties
2510 table-begin table-end))
2511 :post-blank (count-lines pos-before-blank end)
2512 :post-affiliated table-begin)
2513 (cdr affiliated))))))
2515 (defun org-element-table-interpreter (table contents)
2516 "Interpret TABLE element as Org syntax.
2517 CONTENTS is a string, if table's type is `org', or nil."
2518 (if (eq (org-element-property :type table) 'table.el)
2519 (org-remove-indentation (org-element-property :value table))
2520 (concat (with-temp-buffer (insert contents)
2521 (org-table-align)
2522 (buffer-string))
2523 (mapconcat (lambda (fm) (concat "#+TBLFM: " fm))
2524 (reverse (org-element-property :tblfm table))
2525 "\n"))))
2528 ;;;; Table Row
2530 (defun org-element-table-row-parser (_)
2531 "Parse table row at point.
2533 Return a list whose CAR is `table-row' and CDR is a plist
2534 containing `:begin', `:end', `:contents-begin', `:contents-end',
2535 `:type', `:post-blank' and `:post-affiliated' keywords."
2536 (save-excursion
2537 (let* ((type (if (looking-at "^[ \t]*|-") 'rule 'standard))
2538 (begin (point))
2539 ;; A table rule has no contents. In that case, ensure
2540 ;; CONTENTS-BEGIN matches CONTENTS-END.
2541 (contents-begin (and (eq type 'standard) (search-forward "|")))
2542 (contents-end (and (eq type 'standard)
2543 (progn
2544 (end-of-line)
2545 (skip-chars-backward " \t")
2546 (point))))
2547 (end (line-beginning-position 2)))
2548 (list 'table-row
2549 (list :type type
2550 :begin begin
2551 :end end
2552 :contents-begin contents-begin
2553 :contents-end contents-end
2554 :post-blank 0
2555 :post-affiliated begin)))))
2557 (defun org-element-table-row-interpreter (table-row contents)
2558 "Interpret TABLE-ROW element as Org syntax.
2559 CONTENTS is the contents of the table row."
2560 (if (eq (org-element-property :type table-row) 'rule) "|-"
2561 (concat "| " contents)))
2564 ;;;; Verse Block
2566 (defun org-element-verse-block-parser (limit affiliated)
2567 "Parse a verse block.
2569 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2570 the buffer position at the beginning of the first affiliated
2571 keyword and CDR is a plist of affiliated keywords along with
2572 their value.
2574 Return a list whose CAR is `verse-block' and CDR is a plist
2575 containing `:begin', `:end', `:contents-begin', `:contents-end',
2576 `:post-blank' and `:post-affiliated' keywords.
2578 Assume point is at beginning of the block."
2579 (let ((case-fold-search t))
2580 (if (not (save-excursion
2581 (re-search-forward "^[ \t]*#\\+END_VERSE[ \t]*$" limit t)))
2582 ;; Incomplete block: parse it as a paragraph.
2583 (org-element-paragraph-parser limit affiliated)
2584 (let ((contents-end (match-beginning 0)))
2585 (save-excursion
2586 (let* ((begin (car affiliated))
2587 (post-affiliated (point))
2588 (contents-begin (progn (forward-line) (point)))
2589 (pos-before-blank (progn (goto-char contents-end)
2590 (forward-line)
2591 (point)))
2592 (end (progn (skip-chars-forward " \r\t\n" limit)
2593 (if (eobp) (point) (line-beginning-position)))))
2594 (list 'verse-block
2595 (nconc
2596 (list :begin begin
2597 :end end
2598 :contents-begin contents-begin
2599 :contents-end contents-end
2600 :post-blank (count-lines pos-before-blank end)
2601 :post-affiliated post-affiliated)
2602 (cdr affiliated)))))))))
2604 (defun org-element-verse-block-interpreter (_ contents)
2605 "Interpret verse-block element as Org syntax.
2606 CONTENTS is verse block contents."
2607 (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents))
2611 ;;; Objects
2613 ;; Unlike to elements, raw text can be found between objects. Hence,
2614 ;; `org-element--object-lex' is provided to find the next object in
2615 ;; buffer.
2617 ;; Some object types (e.g., `italic') are recursive. Restrictions on
2618 ;; object types they can contain will be specified in
2619 ;; `org-element-object-restrictions'.
2621 ;; Creating a new type of object requires to alter
2622 ;; `org-element--object-regexp' and `org-element--object-lex', add the
2623 ;; new type in `org-element-all-objects', and possibly add
2624 ;; restrictions in `org-element-object-restrictions'.
2626 ;;;; Bold
2628 (defun org-element-bold-parser ()
2629 "Parse bold object at point, if any.
2631 When at a bold object, return a list whose car is `bold' and cdr
2632 is a plist with `:begin', `:end', `:contents-begin' and
2633 `:contents-end' and `:post-blank' keywords. Otherwise, return
2634 nil.
2636 Assume point is at the first star marker."
2637 (save-excursion
2638 (unless (bolp) (backward-char 1))
2639 (when (looking-at org-emph-re)
2640 (let ((begin (match-beginning 2))
2641 (contents-begin (match-beginning 4))
2642 (contents-end (match-end 4))
2643 (post-blank (progn (goto-char (match-end 2))
2644 (skip-chars-forward " \t")))
2645 (end (point)))
2646 (list 'bold
2647 (list :begin begin
2648 :end end
2649 :contents-begin contents-begin
2650 :contents-end contents-end
2651 :post-blank post-blank))))))
2653 (defun org-element-bold-interpreter (_ contents)
2654 "Interpret bold object as Org syntax.
2655 CONTENTS is the contents of the object."
2656 (format "*%s*" contents))
2659 ;;;; Code
2661 (defun org-element-code-parser ()
2662 "Parse code object at point, if any.
2664 When at a code object, return a list whose car is `code' and cdr
2665 is a plist with `:value', `:begin', `:end' and `:post-blank'
2666 keywords. Otherwise, return nil.
2668 Assume point is at the first tilde marker."
2669 (save-excursion
2670 (unless (bolp) (backward-char 1))
2671 (when (looking-at org-emph-re)
2672 (let ((begin (match-beginning 2))
2673 (value (org-match-string-no-properties 4))
2674 (post-blank (progn (goto-char (match-end 2))
2675 (skip-chars-forward " \t")))
2676 (end (point)))
2677 (list 'code
2678 (list :value value
2679 :begin begin
2680 :end end
2681 :post-blank post-blank))))))
2683 (defun org-element-code-interpreter (code _)
2684 "Interpret CODE object as Org syntax."
2685 (format "~%s~" (org-element-property :value code)))
2688 ;;;; Entity
2690 (defun org-element-entity-parser ()
2691 "Parse entity at point, if any.
2693 When at an entity, return a list whose car is `entity' and cdr
2694 a plist with `:begin', `:end', `:latex', `:latex-math-p',
2695 `:html', `:latin1', `:utf-8', `:ascii', `:use-brackets-p' and
2696 `:post-blank' as keywords. Otherwise, return nil.
2698 Assume point is at the beginning of the entity."
2699 (catch 'no-object
2700 (when (looking-at "\\\\\\(?:\\(?1:_ +\\)\\|\\(?1:there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\(?2:$\\|{}\\|[^[:alpha:]]\\)\\)")
2701 (save-excursion
2702 (let* ((value (or (org-entity-get (match-string 1))
2703 (throw 'no-object nil)))
2704 (begin (match-beginning 0))
2705 (bracketsp (string= (match-string 2) "{}"))
2706 (post-blank (progn (goto-char (match-end 1))
2707 (when bracketsp (forward-char 2))
2708 (skip-chars-forward " \t")))
2709 (end (point)))
2710 (list 'entity
2711 (list :name (car value)
2712 :latex (nth 1 value)
2713 :latex-math-p (nth 2 value)
2714 :html (nth 3 value)
2715 :ascii (nth 4 value)
2716 :latin1 (nth 5 value)
2717 :utf-8 (nth 6 value)
2718 :begin begin
2719 :end end
2720 :use-brackets-p bracketsp
2721 :post-blank post-blank)))))))
2723 (defun org-element-entity-interpreter (entity _)
2724 "Interpret ENTITY object as Org syntax."
2725 (concat "\\"
2726 (org-element-property :name entity)
2727 (when (org-element-property :use-brackets-p entity) "{}")))
2730 ;;;; Export Snippet
2732 (defun org-element-export-snippet-parser ()
2733 "Parse export snippet at point.
2735 When at an export snippet, return a list whose car is
2736 `export-snippet' and cdr a plist with `:begin', `:end',
2737 `:back-end', `:value' and `:post-blank' as keywords. Otherwise,
2738 return nil.
2740 Assume point is at the beginning of the snippet."
2741 (save-excursion
2742 (let (contents-end)
2743 (when (and (looking-at "@@\\([-A-Za-z0-9]+\\):")
2744 (setq contents-end
2745 (save-match-data (goto-char (match-end 0))
2746 (re-search-forward "@@" nil t)
2747 (match-beginning 0))))
2748 (let* ((begin (match-beginning 0))
2749 (back-end (org-match-string-no-properties 1))
2750 (value (buffer-substring-no-properties
2751 (match-end 0) contents-end))
2752 (post-blank (skip-chars-forward " \t"))
2753 (end (point)))
2754 (list 'export-snippet
2755 (list :back-end back-end
2756 :value value
2757 :begin begin
2758 :end end
2759 :post-blank post-blank)))))))
2761 (defun org-element-export-snippet-interpreter (export-snippet _)
2762 "Interpret EXPORT-SNIPPET object as Org syntax."
2763 (format "@@%s:%s@@"
2764 (org-element-property :back-end export-snippet)
2765 (org-element-property :value export-snippet)))
2768 ;;;; Footnote Reference
2770 (defun org-element-footnote-reference-parser ()
2771 "Parse footnote reference at point, if any.
2773 When at a footnote reference, return a list whose car is
2774 `footnote-reference' and cdr a plist with `:label', `:type',
2775 `:begin', `:end', `:content-begin', `:contents-end' and
2776 `:post-blank' as keywords. Otherwise, return nil."
2777 (when (looking-at org-footnote-re)
2778 (let ((closing (with-syntax-table org-element--pair-square-table
2779 (ignore-errors (scan-lists (point) 1 0)))))
2780 (when closing
2781 (save-excursion
2782 (let* ((begin (point))
2783 (label
2784 (or (org-match-string-no-properties 2)
2785 (org-match-string-no-properties 3)
2786 (and (match-string 1)
2787 (concat "fn:" (org-match-string-no-properties 1)))))
2788 (type (if (or (not label) (match-string 1)) 'inline 'standard))
2789 (inner-begin (match-end 0))
2790 (inner-end (1- closing))
2791 (post-blank (progn (goto-char closing)
2792 (skip-chars-forward " \t")))
2793 (end (point)))
2794 (list 'footnote-reference
2795 (list :label label
2796 :type type
2797 :begin begin
2798 :end end
2799 :contents-begin (and (eq type 'inline) inner-begin)
2800 :contents-end (and (eq type 'inline) inner-end)
2801 :post-blank post-blank))))))))
2803 (defun org-element-footnote-reference-interpreter (footnote-reference contents)
2804 "Interpret FOOTNOTE-REFERENCE object as Org syntax.
2805 CONTENTS is its definition, when inline, or nil."
2806 (format "[%s]"
2807 (concat (or (org-element-property :label footnote-reference) "fn:")
2808 (and contents (concat ":" contents)))))
2811 ;;;; Inline Babel Call
2813 (defun org-element-inline-babel-call-parser ()
2814 "Parse inline babel call at point, if any.
2816 When at an inline babel call, return a list whose car is
2817 `inline-babel-call' and cdr a plist with `:call',
2818 `:inside-header', `:arguments', `:end-header', `:begin', `:end',
2819 `:value' and `:post-blank' as keywords. Otherwise, return nil.
2821 Assume point is at the beginning of the babel call."
2822 (save-excursion
2823 (unless (bolp) (backward-char))
2824 (when (let ((case-fold-search t))
2825 (looking-at org-babel-inline-lob-one-liner-regexp))
2826 (let ((begin (match-end 1))
2827 (call (org-match-string-no-properties 2))
2828 (inside-header (org-string-nw-p (org-match-string-no-properties 4)))
2829 (arguments (org-string-nw-p (org-match-string-no-properties 6)))
2830 (end-header (org-string-nw-p (org-match-string-no-properties 8)))
2831 (value (buffer-substring-no-properties (match-end 1) (match-end 0)))
2832 (post-blank (progn (goto-char (match-end 0))
2833 (skip-chars-forward " \t")))
2834 (end (point)))
2835 (list 'inline-babel-call
2836 (list :call call
2837 :inside-header inside-header
2838 :arguments arguments
2839 :end-header end-header
2840 :begin begin
2841 :end end
2842 :value value
2843 :post-blank post-blank))))))
2845 (defun org-element-inline-babel-call-interpreter (inline-babel-call _)
2846 "Interpret INLINE-BABEL-CALL object as Org syntax."
2847 (concat "call_"
2848 (org-element-property :call inline-babel-call)
2849 (let ((h (org-element-property :inside-header inline-babel-call)))
2850 (and h (format "[%s]" h)))
2851 "(" (org-element-property :arguments inline-babel-call) ")"
2852 (let ((h (org-element-property :end-header inline-babel-call)))
2853 (and h (format "[%s]" h)))))
2856 ;;;; Inline Src Block
2858 (defun org-element-inline-src-block-parser ()
2859 "Parse inline source block at point, if any.
2861 When at an inline source block, return a list whose car is
2862 `inline-src-block' and cdr a plist with `:begin', `:end',
2863 `:language', `:value', `:parameters' and `:post-blank' as
2864 keywords. Otherwise, return nil.
2866 Assume point is at the beginning of the inline src block."
2867 (save-excursion
2868 (unless (bolp) (backward-char))
2869 (when (looking-at org-babel-inline-src-block-regexp)
2870 (let ((begin (match-beginning 1))
2871 (language (org-match-string-no-properties 2))
2872 (parameters (org-match-string-no-properties 4))
2873 (value (org-match-string-no-properties 5))
2874 (post-blank (progn (goto-char (match-end 0))
2875 (skip-chars-forward " \t")))
2876 (end (point)))
2877 (list 'inline-src-block
2878 (list :language language
2879 :value value
2880 :parameters parameters
2881 :begin begin
2882 :end end
2883 :post-blank post-blank))))))
2885 (defun org-element-inline-src-block-interpreter (inline-src-block _)
2886 "Interpret INLINE-SRC-BLOCK object as Org syntax."
2887 (let ((language (org-element-property :language inline-src-block))
2888 (arguments (org-element-property :parameters inline-src-block))
2889 (body (org-element-property :value inline-src-block)))
2890 (format "src_%s%s{%s}"
2891 language
2892 (if arguments (format "[%s]" arguments) "")
2893 body)))
2895 ;;;; Italic
2897 (defun org-element-italic-parser ()
2898 "Parse italic object at point, if any.
2900 When at an italic object, return a list whose car is `italic' and
2901 cdr is a plist with `:begin', `:end', `:contents-begin' and
2902 `:contents-end' and `:post-blank' keywords. Otherwise, return
2903 nil.
2905 Assume point is at the first slash marker."
2906 (save-excursion
2907 (unless (bolp) (backward-char 1))
2908 (when (looking-at org-emph-re)
2909 (let ((begin (match-beginning 2))
2910 (contents-begin (match-beginning 4))
2911 (contents-end (match-end 4))
2912 (post-blank (progn (goto-char (match-end 2))
2913 (skip-chars-forward " \t")))
2914 (end (point)))
2915 (list 'italic
2916 (list :begin begin
2917 :end end
2918 :contents-begin contents-begin
2919 :contents-end contents-end
2920 :post-blank post-blank))))))
2922 (defun org-element-italic-interpreter (_ contents)
2923 "Interpret italic object as Org syntax.
2924 CONTENTS is the contents of the object."
2925 (format "/%s/" contents))
2928 ;;;; Latex Fragment
2930 (defun org-element-latex-fragment-parser ()
2931 "Parse LaTeX fragment at point, if any.
2933 When at a LaTeX fragment, return a list whose car is
2934 `latex-fragment' and cdr a plist with `:value', `:begin', `:end',
2935 and `:post-blank' as keywords. Otherwise, return nil.
2937 Assume point is at the beginning of the LaTeX fragment."
2938 (catch 'no-object
2939 (save-excursion
2940 (let* ((begin (point))
2941 (after-fragment
2942 (if (eq (char-after) ?$)
2943 (if (eq (char-after (1+ (point))) ?$)
2944 (search-forward "$$" nil t 2)
2945 (and (not (eq (char-before) ?$))
2946 (search-forward "$" nil t 2)
2947 (not (memq (char-before (match-beginning 0))
2948 '(?\s ?\t ?\n ?, ?.)))
2949 (looking-at "\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|$\\)")
2950 (point)))
2951 (pcase (char-after (1+ (point)))
2952 (?\( (search-forward "\\)" nil t))
2953 (?\[ (search-forward "\\]" nil t))
2955 ;; Macro.
2956 (and (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\
2957 \\|\\({[^{}\n]*}\\)\\)*")
2958 (match-end 0))))))
2959 (post-blank (if (not after-fragment) (throw 'no-object nil)
2960 (goto-char after-fragment)
2961 (skip-chars-forward " \t")))
2962 (end (point)))
2963 (list 'latex-fragment
2964 (list :value (buffer-substring-no-properties begin after-fragment)
2965 :begin begin
2966 :end end
2967 :post-blank post-blank))))))
2969 (defun org-element-latex-fragment-interpreter (latex-fragment _)
2970 "Interpret LATEX-FRAGMENT object as Org syntax."
2971 (org-element-property :value latex-fragment))
2973 ;;;; Line Break
2975 (defun org-element-line-break-parser ()
2976 "Parse line break at point, if any.
2978 When at a line break, return a list whose car is `line-break',
2979 and cdr a plist with `:begin', `:end' and `:post-blank' keywords.
2980 Otherwise, return nil.
2982 Assume point is at the beginning of the line break."
2983 (when (and (org-looking-at-p "\\\\\\\\[ \t]*$")
2984 (not (eq (char-before) ?\\)))
2985 (list 'line-break
2986 (list :begin (point)
2987 :end (line-beginning-position 2)
2988 :post-blank 0))))
2990 (defun org-element-line-break-interpreter (&rest _)
2991 "Interpret LINE-BREAK object as Org syntax."
2992 "\\\\\n")
2995 ;;;; Link
2997 (defun org-element-link-parser ()
2998 "Parse link at point, if any.
3000 When at a link, return a list whose car is `link' and cdr a plist
3001 with `:type', `:path', `:raw-link', `:application',
3002 `:search-option', `:begin', `:end', `:contents-begin',
3003 `:contents-end' and `:post-blank' as keywords. Otherwise, return
3004 nil.
3006 Assume point is at the beginning of the link."
3007 (catch 'no-object
3008 (let ((begin (point))
3009 end contents-begin contents-end link-end post-blank path type
3010 raw-link search-option application)
3011 (cond
3012 ;; Type 1: Text targeted from a radio target.
3013 ((and org-target-link-regexp
3014 (save-excursion (or (bolp) (backward-char))
3015 (looking-at org-target-link-regexp)))
3016 (setq type "radio"
3017 link-end (match-end 1)
3018 path (org-match-string-no-properties 1)
3019 contents-begin (match-beginning 1)
3020 contents-end (match-end 1)))
3021 ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
3022 ((looking-at org-bracket-link-regexp)
3023 (setq contents-begin (match-beginning 3))
3024 (setq contents-end (match-end 3))
3025 (setq link-end (match-end 0))
3026 ;; RAW-LINK is the original link. Expand any
3027 ;; abbreviation in it.
3029 ;; Also treat any newline character and associated
3030 ;; indentation as a single space character. This is not
3031 ;; compatible with RFC 3986, which requires to ignore
3032 ;; them altogether. However, doing so would require
3033 ;; users to encode spaces on the fly when writing links
3034 ;; (e.g., insert [[shell:ls%20*.org]] instead of
3035 ;; [[shell:ls *.org]], which defeats Org's focus on
3036 ;; simplicity.
3037 (setq raw-link (org-link-expand-abbrev
3038 (replace-regexp-in-string
3039 "[ \t]*\n[ \t]*" " "
3040 (org-match-string-no-properties 1))))
3041 ;; Determine TYPE of link and set PATH accordingly. According
3042 ;; to RFC 3986, remove whitespaces from URI in external links.
3043 ;; In internal ones, treat indentation as a single space.
3044 (cond
3045 ;; File type.
3046 ((or (file-name-absolute-p raw-link)
3047 (string-match "\\`\\.\\.?/" raw-link))
3048 (setq type "file")
3049 (setq path raw-link))
3050 ;; Explicit type (http, irc, bbdb...). See `org-link-types'.
3051 ((string-match org-link-types-re raw-link)
3052 (setq type (match-string 1 raw-link))
3053 (setq path (substring raw-link (match-end 0))))
3054 ;; Id type: PATH is the id.
3055 ((string-match "\\`id:\\([-a-f0-9]+\\)\\'" raw-link)
3056 (setq type "id" path (match-string 1 raw-link)))
3057 ;; Code-ref type: PATH is the name of the reference.
3058 ((and (org-string-match-p "\\`(" raw-link)
3059 (org-string-match-p ")\\'" raw-link))
3060 (setq type "coderef")
3061 (setq path (substring raw-link 1 -1)))
3062 ;; Custom-id type: PATH is the name of the custom id.
3063 ((= (string-to-char raw-link) ?#)
3064 (setq type "custom-id")
3065 (setq path (substring raw-link 1)))
3066 ;; Fuzzy type: Internal link either matches a target, an
3067 ;; headline name or nothing. PATH is the target or
3068 ;; headline's name.
3070 (setq type "fuzzy")
3071 (setq path raw-link))))
3072 ;; Type 3: Plain link, e.g., http://orgmode.org
3073 ((looking-at org-plain-link-re)
3074 (setq raw-link (org-match-string-no-properties 0)
3075 type (org-match-string-no-properties 1)
3076 link-end (match-end 0)
3077 path (org-match-string-no-properties 2)))
3078 ;; Type 4: Angular link, e.g., <http://orgmode.org>. Unlike to
3079 ;; bracket links, follow RFC 3986 and remove any extra
3080 ;; whitespace in URI.
3081 ((looking-at org-angle-link-re)
3082 (setq type (org-match-string-no-properties 1))
3083 (setq link-end (match-end 0))
3084 (setq raw-link
3085 (buffer-substring-no-properties
3086 (match-beginning 1) (match-end 2)))
3087 (setq path (replace-regexp-in-string
3088 "[ \t]*\n[ \t]*" "" (org-match-string-no-properties 2))))
3089 (t (throw 'no-object nil)))
3090 ;; In any case, deduce end point after trailing white space from
3091 ;; LINK-END variable.
3092 (save-excursion
3093 (setq post-blank
3094 (progn (goto-char link-end) (skip-chars-forward " \t")))
3095 (setq end (point)))
3096 ;; Special "file" type link processing. Extract opening
3097 ;; application and search option, if any. Also normalize URI.
3098 (when (string-match "\\`file\\(?:\\+\\(.+\\)\\)?\\'" type)
3099 (setq application (match-string 1 type) type "file")
3100 (when (string-match "::\\(.*\\)\\'" path)
3101 (setq search-option (match-string 1 path))
3102 (setq path (replace-match "" nil nil path)))
3103 (setq path (replace-regexp-in-string "\\`///+" "/" path)))
3104 ;; Translate link, if `org-link-translation-function' is set.
3105 (let ((trans (and (functionp org-link-translation-function)
3106 (funcall org-link-translation-function type path))))
3107 (when trans
3108 (setq type (car trans))
3109 (setq path (cdr trans))))
3110 (list 'link
3111 (list :type type
3112 :path path
3113 :raw-link (or raw-link path)
3114 :application application
3115 :search-option search-option
3116 :begin begin
3117 :end end
3118 :contents-begin contents-begin
3119 :contents-end contents-end
3120 :post-blank post-blank)))))
3122 (defun org-element-link-interpreter (link contents)
3123 "Interpret LINK object as Org syntax.
3124 CONTENTS is the contents of the object, or nil."
3125 (let ((type (org-element-property :type link))
3126 (path (org-element-property :path link)))
3127 (if (string= type "radio") path
3128 (format "[[%s]%s]"
3129 (cond ((string= type "coderef") (format "(%s)" path))
3130 ((string= type "custom-id") (concat "#" path))
3131 ((string= type "file")
3132 (let ((app (org-element-property :application link))
3133 (opt (org-element-property :search-option link)))
3134 (concat type (and app (concat "+" app)) ":"
3135 path
3136 (and opt (concat "::" opt)))))
3137 ((string= type "fuzzy") path)
3138 (t (concat type ":" path)))
3139 (if contents (format "[%s]" contents) "")))))
3142 ;;;; Macro
3144 (defun org-element-macro-parser ()
3145 "Parse macro at point, if any.
3147 When at a macro, return a list whose car is `macro' and cdr
3148 a plist with `:key', `:args', `:begin', `:end', `:value' and
3149 `:post-blank' as keywords. Otherwise, return nil.
3151 Assume point is at the macro."
3152 (save-excursion
3153 (when (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
3154 (let ((begin (point))
3155 (key (downcase (org-match-string-no-properties 1)))
3156 (value (org-match-string-no-properties 0))
3157 (post-blank (progn (goto-char (match-end 0))
3158 (skip-chars-forward " \t")))
3159 (end (point))
3160 (args (let ((args (org-match-string-no-properties 3)))
3161 (and args (org-macro-extract-arguments args)))))
3162 (list 'macro
3163 (list :key key
3164 :value value
3165 :args args
3166 :begin begin
3167 :end end
3168 :post-blank post-blank))))))
3170 (defun org-element-macro-interpreter (macro _)
3171 "Interpret MACRO object as Org syntax."
3172 (org-element-property :value macro))
3175 ;;;; Radio-target
3177 (defun org-element-radio-target-parser ()
3178 "Parse radio target at point, if any.
3180 When at a radio target, return a list whose car is `radio-target'
3181 and cdr a plist with `:begin', `:end', `:contents-begin',
3182 `:contents-end', `:value' and `:post-blank' as keywords.
3183 Otherwise, return nil.
3185 Assume point is at the radio target."
3186 (save-excursion
3187 (when (looking-at org-radio-target-regexp)
3188 (let ((begin (point))
3189 (contents-begin (match-beginning 1))
3190 (contents-end (match-end 1))
3191 (value (org-match-string-no-properties 1))
3192 (post-blank (progn (goto-char (match-end 0))
3193 (skip-chars-forward " \t")))
3194 (end (point)))
3195 (list 'radio-target
3196 (list :begin begin
3197 :end end
3198 :contents-begin contents-begin
3199 :contents-end contents-end
3200 :post-blank post-blank
3201 :value value))))))
3203 (defun org-element-radio-target-interpreter (_ contents)
3204 "Interpret target object as Org syntax.
3205 CONTENTS is the contents of the object."
3206 (concat "<<<" contents ">>>"))
3209 ;;;; Statistics Cookie
3211 (defun org-element-statistics-cookie-parser ()
3212 "Parse statistics cookie at point, if any.
3214 When at a statistics cookie, return a list whose car is
3215 `statistics-cookie', and cdr a plist with `:begin', `:end',
3216 `:value' and `:post-blank' keywords. Otherwise, return nil.
3218 Assume point is at the beginning of the statistics-cookie."
3219 (save-excursion
3220 (when (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
3221 (let* ((begin (point))
3222 (value (buffer-substring-no-properties
3223 (match-beginning 0) (match-end 0)))
3224 (post-blank (progn (goto-char (match-end 0))
3225 (skip-chars-forward " \t")))
3226 (end (point)))
3227 (list 'statistics-cookie
3228 (list :begin begin
3229 :end end
3230 :value value
3231 :post-blank post-blank))))))
3233 (defun org-element-statistics-cookie-interpreter (statistics-cookie _)
3234 "Interpret STATISTICS-COOKIE object as Org syntax."
3235 (org-element-property :value statistics-cookie))
3238 ;;;; Strike-Through
3240 (defun org-element-strike-through-parser ()
3241 "Parse strike-through object at point, if any.
3243 When at a strike-through object, return a list whose car is
3244 `strike-through' and cdr is a plist with `:begin', `:end',
3245 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3246 Otherwise, return nil.
3248 Assume point is at the first plus sign marker."
3249 (save-excursion
3250 (unless (bolp) (backward-char 1))
3251 (when (looking-at org-emph-re)
3252 (let ((begin (match-beginning 2))
3253 (contents-begin (match-beginning 4))
3254 (contents-end (match-end 4))
3255 (post-blank (progn (goto-char (match-end 2))
3256 (skip-chars-forward " \t")))
3257 (end (point)))
3258 (list 'strike-through
3259 (list :begin begin
3260 :end end
3261 :contents-begin contents-begin
3262 :contents-end contents-end
3263 :post-blank post-blank))))))
3265 (defun org-element-strike-through-interpreter (_ contents)
3266 "Interpret strike-through object as Org syntax.
3267 CONTENTS is the contents of the object."
3268 (format "+%s+" contents))
3271 ;;;; Subscript
3273 (defun org-element-subscript-parser ()
3274 "Parse subscript at point, if any.
3276 When at a subscript object, return a list whose car is
3277 `subscript' and cdr a plist with `:begin', `:end',
3278 `:contents-begin', `:contents-end', `:use-brackets-p' and
3279 `:post-blank' as keywords. Otherwise, return nil.
3281 Assume point is at the underscore."
3282 (save-excursion
3283 (unless (bolp) (backward-char))
3284 (when (looking-at org-match-substring-regexp)
3285 (let ((bracketsp (match-beginning 4))
3286 (begin (match-beginning 2))
3287 (contents-begin (or (match-beginning 4)
3288 (match-beginning 3)))
3289 (contents-end (or (match-end 4) (match-end 3)))
3290 (post-blank (progn (goto-char (match-end 0))
3291 (skip-chars-forward " \t")))
3292 (end (point)))
3293 (list 'subscript
3294 (list :begin begin
3295 :end end
3296 :use-brackets-p bracketsp
3297 :contents-begin contents-begin
3298 :contents-end contents-end
3299 :post-blank post-blank))))))
3301 (defun org-element-subscript-interpreter (subscript contents)
3302 "Interpret SUBSCRIPT object as Org syntax.
3303 CONTENTS is the contents of the object."
3304 (format
3305 (if (org-element-property :use-brackets-p subscript) "_{%s}" "_%s")
3306 contents))
3309 ;;;; Superscript
3311 (defun org-element-superscript-parser ()
3312 "Parse superscript at point, if any.
3314 When at a superscript object, return a list whose car is
3315 `superscript' and cdr a plist with `:begin', `:end',
3316 `:contents-begin', `:contents-end', `:use-brackets-p' and
3317 `:post-blank' as keywords. Otherwise, return nil.
3319 Assume point is at the caret."
3320 (save-excursion
3321 (unless (bolp) (backward-char))
3322 (when (looking-at org-match-substring-regexp)
3323 (let ((bracketsp (match-beginning 4))
3324 (begin (match-beginning 2))
3325 (contents-begin (or (match-beginning 4)
3326 (match-beginning 3)))
3327 (contents-end (or (match-end 4) (match-end 3)))
3328 (post-blank (progn (goto-char (match-end 0))
3329 (skip-chars-forward " \t")))
3330 (end (point)))
3331 (list 'superscript
3332 (list :begin begin
3333 :end end
3334 :use-brackets-p bracketsp
3335 :contents-begin contents-begin
3336 :contents-end contents-end
3337 :post-blank post-blank))))))
3339 (defun org-element-superscript-interpreter (superscript contents)
3340 "Interpret SUPERSCRIPT object as Org syntax.
3341 CONTENTS is the contents of the object."
3342 (format
3343 (if (org-element-property :use-brackets-p superscript) "^{%s}" "^%s")
3344 contents))
3347 ;;;; Table Cell
3349 (defun org-element-table-cell-parser ()
3350 "Parse table cell at point.
3351 Return a list whose car is `table-cell' and cdr is a plist
3352 containing `:begin', `:end', `:contents-begin', `:contents-end'
3353 and `:post-blank' keywords."
3354 (looking-at "[ \t]*\\(.*?\\)[ \t]*\\(?:|\\|$\\)")
3355 (let* ((begin (match-beginning 0))
3356 (end (match-end 0))
3357 (contents-begin (match-beginning 1))
3358 (contents-end (match-end 1)))
3359 (list 'table-cell
3360 (list :begin begin
3361 :end end
3362 :contents-begin contents-begin
3363 :contents-end contents-end
3364 :post-blank 0))))
3366 (defun org-element-table-cell-interpreter (_ contents)
3367 "Interpret table-cell element as Org syntax.
3368 CONTENTS is the contents of the cell, or nil."
3369 (concat " " contents " |"))
3372 ;;;; Target
3374 (defun org-element-target-parser ()
3375 "Parse target at point, if any.
3377 When at a target, return a list whose car is `target' and cdr
3378 a plist with `:begin', `:end', `:value' and `:post-blank' as
3379 keywords. Otherwise, return nil.
3381 Assume point is at the target."
3382 (save-excursion
3383 (when (looking-at org-target-regexp)
3384 (let ((begin (point))
3385 (value (org-match-string-no-properties 1))
3386 (post-blank (progn (goto-char (match-end 0))
3387 (skip-chars-forward " \t")))
3388 (end (point)))
3389 (list 'target
3390 (list :begin begin
3391 :end end
3392 :value value
3393 :post-blank post-blank))))))
3395 (defun org-element-target-interpreter (target _)
3396 "Interpret TARGET object as Org syntax."
3397 (format "<<%s>>" (org-element-property :value target)))
3400 ;;;; Timestamp
3402 (defconst org-element--timestamp-regexp
3403 (concat org-ts-regexp-both
3404 "\\|"
3405 "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
3406 "\\|"
3407 "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
3408 "Regexp matching any timestamp type object.")
3410 (defun org-element-timestamp-parser ()
3411 "Parse time stamp at point, if any.
3413 When at a time stamp, return a list whose car is `timestamp', and
3414 cdr a plist with `:type', `:raw-value', `:year-start',
3415 `:month-start', `:day-start', `:hour-start', `:minute-start',
3416 `:year-end', `:month-end', `:day-end', `:hour-end',
3417 `:minute-end', `:repeater-type', `:repeater-value',
3418 `:repeater-unit', `:warning-type', `:warning-value',
3419 `:warning-unit', `:begin', `:end' and `:post-blank' keywords.
3420 Otherwise, return nil.
3422 Assume point is at the beginning of the timestamp."
3423 (when (org-looking-at-p org-element--timestamp-regexp)
3424 (save-excursion
3425 (let* ((begin (point))
3426 (activep (eq (char-after) ?<))
3427 (raw-value
3428 (progn
3429 (looking-at "\\([<[]\\(%%\\)?.*?\\)[]>]\\(?:--\\([<[].*?[]>]\\)\\)?")
3430 (match-string-no-properties 0)))
3431 (date-start (match-string-no-properties 1))
3432 (date-end (match-string 3))
3433 (diaryp (match-beginning 2))
3434 (post-blank (progn (goto-char (match-end 0))
3435 (skip-chars-forward " \t")))
3436 (end (point))
3437 (time-range
3438 (and (not diaryp)
3439 (string-match
3440 "[012]?[0-9]:[0-5][0-9]\\(-\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)"
3441 date-start)
3442 (cons (string-to-number (match-string 2 date-start))
3443 (string-to-number (match-string 3 date-start)))))
3444 (type (cond (diaryp 'diary)
3445 ((and activep (or date-end time-range)) 'active-range)
3446 (activep 'active)
3447 ((or date-end time-range) 'inactive-range)
3448 (t 'inactive)))
3449 (repeater-props
3450 (and (not diaryp)
3451 (string-match "\\([.+]?\\+\\)\\([0-9]+\\)\\([hdwmy]\\)"
3452 raw-value)
3453 (list
3454 :repeater-type
3455 (let ((type (match-string 1 raw-value)))
3456 (cond ((equal "++" type) 'catch-up)
3457 ((equal ".+" type) 'restart)
3458 (t 'cumulate)))
3459 :repeater-value (string-to-number (match-string 2 raw-value))
3460 :repeater-unit
3461 (pcase (string-to-char (match-string 3 raw-value))
3462 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (_ 'year)))))
3463 (warning-props
3464 (and (not diaryp)
3465 (string-match "\\(-\\)?-\\([0-9]+\\)\\([hdwmy]\\)" raw-value)
3466 (list
3467 :warning-type (if (match-string 1 raw-value) 'first 'all)
3468 :warning-value (string-to-number (match-string 2 raw-value))
3469 :warning-unit
3470 (pcase (string-to-char (match-string 3 raw-value))
3471 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (_ 'year)))))
3472 year-start month-start day-start hour-start minute-start year-end
3473 month-end day-end hour-end minute-end)
3474 ;; Parse date-start.
3475 (unless diaryp
3476 (let ((date (org-parse-time-string date-start t)))
3477 (setq year-start (nth 5 date)
3478 month-start (nth 4 date)
3479 day-start (nth 3 date)
3480 hour-start (nth 2 date)
3481 minute-start (nth 1 date))))
3482 ;; Compute date-end. It can be provided directly in time-stamp,
3483 ;; or extracted from time range. Otherwise, it defaults to the
3484 ;; same values as date-start.
3485 (unless diaryp
3486 (let ((date (and date-end (org-parse-time-string date-end t))))
3487 (setq year-end (or (nth 5 date) year-start)
3488 month-end (or (nth 4 date) month-start)
3489 day-end (or (nth 3 date) day-start)
3490 hour-end (or (nth 2 date) (car time-range) hour-start)
3491 minute-end (or (nth 1 date) (cdr time-range) minute-start))))
3492 (list 'timestamp
3493 (nconc (list :type type
3494 :raw-value raw-value
3495 :year-start year-start
3496 :month-start month-start
3497 :day-start day-start
3498 :hour-start hour-start
3499 :minute-start minute-start
3500 :year-end year-end
3501 :month-end month-end
3502 :day-end day-end
3503 :hour-end hour-end
3504 :minute-end minute-end
3505 :begin begin
3506 :end end
3507 :post-blank post-blank)
3508 repeater-props
3509 warning-props))))))
3511 (defun org-element-timestamp-interpreter (timestamp _)
3512 "Interpret TIMESTAMP object as Org syntax."
3513 (let* ((repeat-string
3514 (concat
3515 (pcase (org-element-property :repeater-type timestamp)
3516 (`cumulate "+") (`catch-up "++") (`restart ".+"))
3517 (let ((val (org-element-property :repeater-value timestamp)))
3518 (and val (number-to-string val)))
3519 (pcase (org-element-property :repeater-unit timestamp)
3520 (`hour "h") (`day "d") (`week "w") (`month "m") (`year "y"))))
3521 (warning-string
3522 (concat
3523 (pcase (org-element-property :warning-type timestamp)
3524 (`first "--") (`all "-"))
3525 (let ((val (org-element-property :warning-value timestamp)))
3526 (and val (number-to-string val)))
3527 (pcase (org-element-property :warning-unit timestamp)
3528 (`hour "h") (`day "d") (`week "w") (`month "m") (`year "y"))))
3529 (build-ts-string
3530 ;; Build an Org timestamp string from TIME. ACTIVEP is
3531 ;; non-nil when time stamp is active. If WITH-TIME-P is
3532 ;; non-nil, add a time part. HOUR-END and MINUTE-END
3533 ;; specify a time range in the timestamp. REPEAT-STRING is
3534 ;; the repeater string, if any.
3535 (lambda (time activep &optional with-time-p hour-end minute-end)
3536 (let ((ts (format-time-string
3537 (funcall (if with-time-p #'cdr #'car)
3538 org-time-stamp-formats)
3539 time)))
3540 (when (and hour-end minute-end)
3541 (string-match "[012]?[0-9]:[0-5][0-9]" ts)
3542 (setq ts
3543 (replace-match
3544 (format "\\&-%02d:%02d" hour-end minute-end)
3545 nil nil ts)))
3546 (unless activep (setq ts (format "[%s]" (substring ts 1 -1))))
3547 (dolist (s (list repeat-string warning-string))
3548 (when (org-string-nw-p s)
3549 (setq ts (concat (substring ts 0 -1)
3552 (substring ts -1)))))
3553 ;; Return value.
3554 ts)))
3555 (type (org-element-property :type timestamp)))
3556 (pcase type
3557 ((or `active `inactive)
3558 (let* ((minute-start (org-element-property :minute-start timestamp))
3559 (minute-end (org-element-property :minute-end timestamp))
3560 (hour-start (org-element-property :hour-start timestamp))
3561 (hour-end (org-element-property :hour-end timestamp))
3562 (time-range-p (and hour-start hour-end minute-start minute-end
3563 (or (/= hour-start hour-end)
3564 (/= minute-start minute-end)))))
3565 (funcall
3566 build-ts-string
3567 (encode-time 0
3568 (or minute-start 0)
3569 (or hour-start 0)
3570 (org-element-property :day-start timestamp)
3571 (org-element-property :month-start timestamp)
3572 (org-element-property :year-start timestamp))
3573 (eq type 'active)
3574 (and hour-start minute-start)
3575 (and time-range-p hour-end)
3576 (and time-range-p minute-end))))
3577 ((or `active-range `inactive-range)
3578 (let ((minute-start (org-element-property :minute-start timestamp))
3579 (minute-end (org-element-property :minute-end timestamp))
3580 (hour-start (org-element-property :hour-start timestamp))
3581 (hour-end (org-element-property :hour-end timestamp)))
3582 (concat
3583 (funcall
3584 build-ts-string (encode-time
3586 (or minute-start 0)
3587 (or hour-start 0)
3588 (org-element-property :day-start timestamp)
3589 (org-element-property :month-start timestamp)
3590 (org-element-property :year-start timestamp))
3591 (eq type 'active-range)
3592 (and hour-start minute-start))
3593 "--"
3594 (funcall build-ts-string
3595 (encode-time 0
3596 (or minute-end 0)
3597 (or hour-end 0)
3598 (org-element-property :day-end timestamp)
3599 (org-element-property :month-end timestamp)
3600 (org-element-property :year-end timestamp))
3601 (eq type 'active-range)
3602 (and hour-end minute-end)))))
3603 (_ (org-element-property :raw-value timestamp)))))
3606 ;;;; Underline
3608 (defun org-element-underline-parser ()
3609 "Parse underline object at point, if any.
3611 When at an underline object, return a list whose car is
3612 `underline' and cdr is a plist with `:begin', `:end',
3613 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3614 Otherwise, return nil.
3616 Assume point is at the first underscore marker."
3617 (save-excursion
3618 (unless (bolp) (backward-char 1))
3619 (when (looking-at org-emph-re)
3620 (let ((begin (match-beginning 2))
3621 (contents-begin (match-beginning 4))
3622 (contents-end (match-end 4))
3623 (post-blank (progn (goto-char (match-end 2))
3624 (skip-chars-forward " \t")))
3625 (end (point)))
3626 (list 'underline
3627 (list :begin begin
3628 :end end
3629 :contents-begin contents-begin
3630 :contents-end contents-end
3631 :post-blank post-blank))))))
3633 (defun org-element-underline-interpreter (_ contents)
3634 "Interpret underline object as Org syntax.
3635 CONTENTS is the contents of the object."
3636 (format "_%s_" contents))
3639 ;;;; Verbatim
3641 (defun org-element-verbatim-parser ()
3642 "Parse verbatim object at point, if any.
3644 When at a verbatim object, return a list whose car is `verbatim'
3645 and cdr is a plist with `:value', `:begin', `:end' and
3646 `:post-blank' keywords. Otherwise, return nil.
3648 Assume point is at the first equal sign marker."
3649 (save-excursion
3650 (unless (bolp) (backward-char 1))
3651 (when (looking-at org-emph-re)
3652 (let ((begin (match-beginning 2))
3653 (value (org-match-string-no-properties 4))
3654 (post-blank (progn (goto-char (match-end 2))
3655 (skip-chars-forward " \t")))
3656 (end (point)))
3657 (list 'verbatim
3658 (list :value value
3659 :begin begin
3660 :end end
3661 :post-blank post-blank))))))
3663 (defun org-element-verbatim-interpreter (verbatim _)
3664 "Interpret VERBATIM object as Org syntax."
3665 (format "=%s=" (org-element-property :value verbatim)))
3669 ;;; Parsing Element Starting At Point
3671 ;; `org-element--current-element' is the core function of this section.
3672 ;; It returns the Lisp representation of the element starting at
3673 ;; point.
3675 ;; `org-element--current-element' makes use of special modes. They
3676 ;; are activated for fixed element chaining (e.g., `plain-list' >
3677 ;; `item') or fixed conditional element chaining (e.g., `headline' >
3678 ;; `section'). Special modes are: `first-section', `item',
3679 ;; `node-property', `section' and `table-row'.
3681 (defun org-element--current-element (limit &optional granularity mode structure)
3682 "Parse the element starting at point.
3684 Return value is a list like (TYPE PROPS) where TYPE is the type
3685 of the element and PROPS a plist of properties associated to the
3686 element.
3688 Possible types are defined in `org-element-all-elements'.
3690 LIMIT bounds the search.
3692 Optional argument GRANULARITY determines the depth of the
3693 recursion. Allowed values are `headline', `greater-element',
3694 `element', `object' or nil. When it is broader than `object' (or
3695 nil), secondary values will not be parsed, since they only
3696 contain objects.
3698 Optional argument MODE, when non-nil, can be either
3699 `first-section', `section', `planning', `item', `node-property'
3700 and `table-row'.
3702 If STRUCTURE isn't provided but MODE is set to `item', it will be
3703 computed.
3705 This function assumes point is always at the beginning of the
3706 element it has to parse."
3707 (save-excursion
3708 (let ((case-fold-search t)
3709 ;; Determine if parsing depth allows for secondary strings
3710 ;; parsing. It only applies to elements referenced in
3711 ;; `org-element-secondary-value-alist'.
3712 (raw-secondary-p (and granularity (not (eq granularity 'object)))))
3713 (cond
3714 ;; Item.
3715 ((eq mode 'item)
3716 (org-element-item-parser limit structure raw-secondary-p))
3717 ;; Table Row.
3718 ((eq mode 'table-row) (org-element-table-row-parser limit))
3719 ;; Node Property.
3720 ((eq mode 'node-property) (org-element-node-property-parser limit))
3721 ;; Headline.
3722 ((org-with-limited-levels (org-at-heading-p))
3723 (org-element-headline-parser limit raw-secondary-p))
3724 ;; Sections (must be checked after headline).
3725 ((eq mode 'section) (org-element-section-parser limit))
3726 ((eq mode 'first-section)
3727 (org-element-section-parser
3728 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
3729 limit)))
3730 ;; Planning.
3731 ((and (eq mode 'planning) (looking-at org-planning-line-re))
3732 (org-element-planning-parser limit))
3733 ;; Property drawer.
3734 ((and (memq mode '(planning property-drawer))
3735 (looking-at org-property-drawer-re))
3736 (org-element-property-drawer-parser limit))
3737 ;; When not at bol, point is at the beginning of an item or
3738 ;; a footnote definition: next item is always a paragraph.
3739 ((not (bolp)) (org-element-paragraph-parser limit (list (point))))
3740 ;; Clock.
3741 ((looking-at org-clock-line-re) (org-element-clock-parser limit))
3742 ;; Inlinetask.
3743 ((org-at-heading-p)
3744 (org-element-inlinetask-parser limit raw-secondary-p))
3745 ;; From there, elements can have affiliated keywords.
3746 (t (let ((affiliated (org-element--collect-affiliated-keywords limit)))
3747 (cond
3748 ;; Jumping over affiliated keywords put point off-limits.
3749 ;; Parse them as regular keywords.
3750 ((and (cdr affiliated) (>= (point) limit))
3751 (goto-char (car affiliated))
3752 (org-element-keyword-parser limit nil))
3753 ;; LaTeX Environment.
3754 ((looking-at org-element--latex-begin-environment)
3755 (org-element-latex-environment-parser limit affiliated))
3756 ;; Drawer and Property Drawer.
3757 ((looking-at org-drawer-regexp)
3758 (org-element-drawer-parser limit affiliated))
3759 ;; Fixed Width
3760 ((looking-at "[ \t]*:\\( \\|$\\)")
3761 (org-element-fixed-width-parser limit affiliated))
3762 ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
3763 ;; Keywords.
3764 ((looking-at "[ \t]*#")
3765 (goto-char (match-end 0))
3766 (cond ((looking-at "\\(?: \\|$\\)")
3767 (beginning-of-line)
3768 (org-element-comment-parser limit affiliated))
3769 ((looking-at "\\+BEGIN_\\(\\S-+\\)")
3770 (beginning-of-line)
3771 (let ((parser (assoc (upcase (match-string 1))
3772 org-element-block-name-alist)))
3773 (if parser (funcall (cdr parser) limit affiliated)
3774 (org-element-special-block-parser limit affiliated))))
3775 ((looking-at "\\+CALL:")
3776 (beginning-of-line)
3777 (org-element-babel-call-parser limit affiliated))
3778 ((looking-at "\\+BEGIN:? ")
3779 (beginning-of-line)
3780 (org-element-dynamic-block-parser limit affiliated))
3781 ((looking-at "\\+\\S-+:")
3782 (beginning-of-line)
3783 (org-element-keyword-parser limit affiliated))
3785 (beginning-of-line)
3786 (org-element-paragraph-parser limit affiliated))))
3787 ;; Footnote Definition.
3788 ((looking-at org-footnote-definition-re)
3789 (org-element-footnote-definition-parser limit affiliated))
3790 ;; Horizontal Rule.
3791 ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
3792 (org-element-horizontal-rule-parser limit affiliated))
3793 ;; Diary Sexp.
3794 ((looking-at "%%(")
3795 (org-element-diary-sexp-parser limit affiliated))
3796 ;; Table.
3797 ((looking-at "[ \t]*\\(|\\|\\+\\(-+\\+\\)+[ \t]*$\\)")
3798 (org-element-table-parser limit affiliated))
3799 ;; List.
3800 ((looking-at (org-item-re))
3801 (org-element-plain-list-parser
3802 limit affiliated
3803 (or structure (org-element--list-struct limit))))
3804 ;; Default element: Paragraph.
3805 (t (org-element-paragraph-parser limit affiliated)))))))))
3808 ;; Most elements can have affiliated keywords. When looking for an
3809 ;; element beginning, we want to move before them, as they belong to
3810 ;; that element, and, in the meantime, collect information they give
3811 ;; into appropriate properties. Hence the following function.
3813 (defun org-element--collect-affiliated-keywords (limit)
3814 "Collect affiliated keywords from point down to LIMIT.
3816 Return a list whose CAR is the position at the first of them and
3817 CDR a plist of keywords and values and move point to the
3818 beginning of the first line after them.
3820 As a special case, if element doesn't start at the beginning of
3821 the line (e.g., a paragraph starting an item), CAR is current
3822 position of point and CDR is nil."
3823 (if (not (bolp)) (list (point))
3824 (let ((case-fold-search t)
3825 (origin (point))
3826 ;; RESTRICT is the list of objects allowed in parsed
3827 ;; keywords value.
3828 (restrict (org-element-restriction 'keyword))
3829 output)
3830 (while (and (< (point) limit) (looking-at org-element--affiliated-re))
3831 (let* ((raw-kwd (upcase (match-string 1)))
3832 ;; Apply translation to RAW-KWD. From there, KWD is
3833 ;; the official keyword.
3834 (kwd (or (cdr (assoc raw-kwd
3835 org-element-keyword-translation-alist))
3836 raw-kwd))
3837 ;; Find main value for any keyword.
3838 (value
3839 (save-match-data
3840 (org-trim
3841 (buffer-substring-no-properties
3842 (match-end 0) (line-end-position)))))
3843 ;; PARSEDP is non-nil when keyword should have its
3844 ;; value parsed.
3845 (parsedp (member kwd org-element-parsed-keywords))
3846 ;; If KWD is a dual keyword, find its secondary
3847 ;; value. Maybe parse it.
3848 (dualp (member kwd org-element-dual-keywords))
3849 (dual-value
3850 (and dualp
3851 (let ((sec (org-match-string-no-properties 2)))
3852 (if (or (not sec) (not parsedp)) sec
3853 (save-match-data
3854 (org-element--parse-objects
3855 (match-beginning 2) (match-end 2) nil restrict))))))
3856 ;; Attribute a property name to KWD.
3857 (kwd-sym (and kwd (intern (concat ":" (downcase kwd))))))
3858 ;; Now set final shape for VALUE.
3859 (when parsedp
3860 (setq value
3861 (org-element--parse-objects
3862 (match-end 0)
3863 (progn (end-of-line) (skip-chars-backward " \t") (point))
3864 nil restrict)))
3865 (when dualp
3866 (setq value (and (or value dual-value) (cons value dual-value))))
3867 (when (or (member kwd org-element-multiple-keywords)
3868 ;; Attributes can always appear on multiple lines.
3869 (string-match "^ATTR_" kwd))
3870 (setq value (cons value (plist-get output kwd-sym))))
3871 ;; Eventually store the new value in OUTPUT.
3872 (setq output (plist-put output kwd-sym value))
3873 ;; Move to next keyword.
3874 (forward-line)))
3875 ;; If affiliated keywords are orphaned: move back to first one.
3876 ;; They will be parsed as a paragraph.
3877 (when (looking-at "[ \t]*$") (goto-char origin) (setq output nil))
3878 ;; Return value.
3879 (cons origin output))))
3883 ;;; The Org Parser
3885 ;; The two major functions here are `org-element-parse-buffer', which
3886 ;; parses Org syntax inside the current buffer, taking into account
3887 ;; region, narrowing, or even visibility if specified, and
3888 ;; `org-element-parse-secondary-string', which parses objects within
3889 ;; a given string.
3891 ;; The (almost) almighty `org-element-map' allows to apply a function
3892 ;; on elements or objects matching some type, and accumulate the
3893 ;; resulting values. In an export situation, it also skips unneeded
3894 ;; parts of the parse tree.
3896 (defun org-element-parse-buffer (&optional granularity visible-only)
3897 "Recursively parse the buffer and return structure.
3898 If narrowing is in effect, only parse the visible part of the
3899 buffer.
3901 Optional argument GRANULARITY determines the depth of the
3902 recursion. It can be set to the following symbols:
3904 `headline' Only parse headlines.
3905 `greater-element' Don't recurse into greater elements excepted
3906 headlines and sections. Thus, elements
3907 parsed are the top-level ones.
3908 `element' Parse everything but objects and plain text.
3909 `object' Parse the complete buffer (default).
3911 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
3912 elements.
3914 An element or an objects is represented as a list with the
3915 pattern (TYPE PROPERTIES CONTENTS), where :
3917 TYPE is a symbol describing the element or object. See
3918 `org-element-all-elements' and `org-element-all-objects' for an
3919 exhaustive list of such symbols. One can retrieve it with
3920 `org-element-type' function.
3922 PROPERTIES is the list of attributes attached to the element or
3923 object, as a plist. Although most of them are specific to the
3924 element or object type, all types share `:begin', `:end',
3925 `:post-blank' and `:parent' properties, which respectively
3926 refer to buffer position where the element or object starts,
3927 ends, the number of white spaces or blank lines after it, and
3928 the element or object containing it. Properties values can be
3929 obtained by using `org-element-property' function.
3931 CONTENTS is a list of elements, objects or raw strings
3932 contained in the current element or object, when applicable.
3933 One can access them with `org-element-contents' function.
3935 The Org buffer has `org-data' as type and nil as properties.
3936 `org-element-map' function can be used to find specific elements
3937 or objects within the parse tree.
3939 This function assumes that current major mode is `org-mode'."
3940 (save-excursion
3941 (goto-char (point-min))
3942 (org-skip-whitespace)
3943 (org-element--parse-elements
3944 (point-at-bol) (point-max)
3945 ;; Start in `first-section' mode so text before the first
3946 ;; headline belongs to a section.
3947 'first-section nil granularity visible-only (list 'org-data nil))))
3949 (defun org-element-parse-secondary-string (string restriction &optional parent)
3950 "Recursively parse objects in STRING and return structure.
3952 RESTRICTION is a symbol limiting the object types that will be
3953 looked after.
3955 Optional argument PARENT, when non-nil, is the element or object
3956 containing the secondary string. It is used to set correctly
3957 `:parent' property within the string.
3959 If STRING is the empty string or nil, return nil."
3960 (cond
3961 ((not string) nil)
3962 ((equal string "") nil)
3963 (t (let ((local-variables (buffer-local-variables)))
3964 (with-temp-buffer
3965 (dolist (v local-variables)
3966 (ignore-errors
3967 (if (symbolp v) (makunbound v)
3968 (set (make-local-variable (car v)) (cdr v)))))
3969 (insert string)
3970 (restore-buffer-modified-p nil)
3971 (let ((data (org-element--parse-objects
3972 (point-min) (point-max) nil restriction)))
3973 (when parent
3974 (dolist (o data) (org-element-put-property o :parent parent)))
3975 data))))))
3977 (defun org-element-map
3978 (data types fun &optional info first-match no-recursion with-affiliated)
3979 "Map a function on selected elements or objects.
3981 DATA is a parse tree, an element, an object, a string, or a list
3982 of such constructs. TYPES is a symbol or list of symbols of
3983 elements or objects types (see `org-element-all-elements' and
3984 `org-element-all-objects' for a complete list of types). FUN is
3985 the function called on the matching element or object. It has to
3986 accept one argument: the element or object itself.
3988 When optional argument INFO is non-nil, it should be a plist
3989 holding export options. In that case, parts of the parse tree
3990 not exportable according to that property list will be skipped.
3992 When optional argument FIRST-MATCH is non-nil, stop at the first
3993 match for which FUN doesn't return nil, and return that value.
3995 Optional argument NO-RECURSION is a symbol or a list of symbols
3996 representing elements or objects types. `org-element-map' won't
3997 enter any recursive element or object whose type belongs to that
3998 list. Though, FUN can still be applied on them.
4000 When optional argument WITH-AFFILIATED is non-nil, FUN will also
4001 apply to matching objects within parsed affiliated keywords (see
4002 `org-element-parsed-keywords').
4004 Nil values returned from FUN do not appear in the results.
4007 Examples:
4008 ---------
4010 Assuming TREE is a variable containing an Org buffer parse tree,
4011 the following example will return a flat list of all `src-block'
4012 and `example-block' elements in it:
4014 (org-element-map tree \\='(example-block src-block) #\\='identity)
4016 The following snippet will find the first headline with a level
4017 of 1 and a \"phone\" tag, and will return its beginning position:
4019 (org-element-map tree \\='headline
4020 (lambda (hl)
4021 (and (= (org-element-property :level hl) 1)
4022 (member \"phone\" (org-element-property :tags hl))
4023 (org-element-property :begin hl)))
4024 nil t)
4026 The next example will return a flat list of all `plain-list' type
4027 elements in TREE that are not a sub-list themselves:
4029 (org-element-map tree \\='plain-list #\\='identity nil nil \\='plain-list)
4031 Eventually, this example will return a flat list of all `bold'
4032 type objects containing a `latex-snippet' type object, even
4033 looking into captions:
4035 (org-element-map tree \\='bold
4036 (lambda (b)
4037 (and (org-element-map b \\='latex-snippet #\\='identity nil t) b))
4038 nil nil nil t)"
4039 ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
4040 (let* ((types (if (listp types) types (list types)))
4041 (no-recursion (if (listp no-recursion) no-recursion
4042 (list no-recursion)))
4043 ;; Recursion depth is determined by --CATEGORY.
4044 (--category
4045 (catch :--found
4046 (let ((category 'greater-elements)
4047 (all-objects (cons 'plain-text org-element-all-objects)))
4048 (dolist (type types category)
4049 (cond ((memq type all-objects)
4050 ;; If one object is found, the function has
4051 ;; to recurse into every object.
4052 (throw :--found 'objects))
4053 ((not (memq type org-element-greater-elements))
4054 ;; If one regular element is found, the
4055 ;; function has to recurse, at least, into
4056 ;; every element it encounters.
4057 (and (not (eq category 'elements))
4058 (setq category 'elements))))))))
4059 --acc)
4060 (letrec ((--walk-tree
4061 (lambda (--data)
4062 ;; Recursively walk DATA. INFO, if non-nil, is a plist
4063 ;; holding contextual information.
4064 (let ((--type (org-element-type --data)))
4065 (cond
4066 ((not --data))
4067 ;; Ignored element in an export context.
4068 ((and info (memq --data (plist-get info :ignore-list))))
4069 ;; List of elements or objects.
4070 ((not --type) (mapc --walk-tree --data))
4071 ;; Unconditionally enter parse trees.
4072 ((eq --type 'org-data)
4073 (mapc --walk-tree (org-element-contents --data)))
4075 ;; Check if TYPE is matching among TYPES. If so,
4076 ;; apply FUN to --DATA and accumulate return value
4077 ;; into --ACC (or exit if FIRST-MATCH is non-nil).
4078 (when (memq --type types)
4079 (let ((result (funcall fun --data)))
4080 (cond ((not result))
4081 (first-match (throw :--map-first-match result))
4082 (t (push result --acc)))))
4083 ;; If --DATA has a secondary string that can contain
4084 ;; objects with their type among TYPES, look inside.
4085 (when (and (eq --category 'objects) (not (stringp --data)))
4086 (dolist (p (cdr (assq --type
4087 org-element-secondary-value-alist)))
4088 (funcall --walk-tree (org-element-property p --data))))
4089 ;; If --DATA has any parsed affiliated keywords and
4090 ;; WITH-AFFILIATED is non-nil, look for objects in
4091 ;; them.
4092 (when (and with-affiliated
4093 (eq --category 'objects)
4094 (memq --type org-element-all-elements))
4095 (dolist (kwd-pair org-element--parsed-properties-alist)
4096 (let ((kwd (car kwd-pair))
4097 (value (org-element-property (cdr kwd-pair) --data)))
4098 ;; Pay attention to the type of parsed
4099 ;; keyword. In particular, preserve order for
4100 ;; multiple keywords.
4101 (cond
4102 ((not value))
4103 ((member kwd org-element-dual-keywords)
4104 (if (member kwd org-element-multiple-keywords)
4105 (dolist (line (reverse value))
4106 (funcall --walk-tree (cdr line))
4107 (funcall --walk-tree (car line)))
4108 (funcall --walk-tree (cdr value))
4109 (funcall --walk-tree (car value))))
4110 ((member kwd org-element-multiple-keywords)
4111 (mapc --walk-tree (reverse value)))
4112 (t (funcall --walk-tree value))))))
4113 ;; Determine if a recursion into --DATA is possible.
4114 (cond
4115 ;; --TYPE is explicitly removed from recursion.
4116 ((memq --type no-recursion))
4117 ;; --DATA has no contents.
4118 ((not (org-element-contents --data)))
4119 ;; Looking for greater elements but --DATA is
4120 ;; simply an element or an object.
4121 ((and (eq --category 'greater-elements)
4122 (not (memq --type org-element-greater-elements))))
4123 ;; Looking for elements but --DATA is an object.
4124 ((and (eq --category 'elements)
4125 (memq --type org-element-all-objects)))
4126 ;; In any other case, map contents.
4127 (t (mapc --walk-tree (org-element-contents --data))))))))))
4128 (catch :--map-first-match
4129 (funcall --walk-tree data)
4130 ;; Return value in a proper order.
4131 (nreverse --acc)))))
4132 (put 'org-element-map 'lisp-indent-function 2)
4134 ;; The following functions are internal parts of the parser.
4136 ;; The first one, `org-element--parse-elements' acts at the element's
4137 ;; level.
4139 ;; The second one, `org-element--parse-objects' applies on all objects
4140 ;; of a paragraph or a secondary string. It calls
4141 ;; `org-element--object-lex' to find the next object in the current
4142 ;; container.
4144 (defsubst org-element--next-mode (type parentp)
4145 "Return next special mode according to TYPE, or nil.
4146 TYPE is a symbol representing the type of an element or object
4147 containing next element if PARENTP is non-nil, or before it
4148 otherwise. Modes can be either `first-section', `item',
4149 `node-property', `planning', `property-drawer', `section',
4150 `table-row' or nil."
4151 (if parentp
4152 (pcase type
4153 (`headline 'section)
4154 (`inlinetask 'planning)
4155 (`plain-list 'item)
4156 (`property-drawer 'node-property)
4157 (`section 'planning)
4158 (`table 'table-row))
4159 (pcase type
4160 (`item 'item)
4161 (`node-property 'node-property)
4162 (`planning 'property-drawer)
4163 (`table-row 'table-row))))
4165 (defun org-element--parse-elements
4166 (beg end mode structure granularity visible-only acc)
4167 "Parse elements between BEG and END positions.
4169 MODE prioritizes some elements over the others. It can be set to
4170 `first-section', `section', `planning', `item', `node-property'
4171 or `table-row'.
4173 When value is `item', STRUCTURE will be used as the current list
4174 structure.
4176 GRANULARITY determines the depth of the recursion. See
4177 `org-element-parse-buffer' for more information.
4179 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4180 elements.
4182 Elements are accumulated into ACC."
4183 (save-excursion
4184 (goto-char beg)
4185 ;; Visible only: skip invisible parts at the beginning of the
4186 ;; element.
4187 (when (and visible-only (org-invisible-p2))
4188 (goto-char (min (1+ (org-find-visible)) end)))
4189 ;; When parsing only headlines, skip any text before first one.
4190 (when (and (eq granularity 'headline) (not (org-at-heading-p)))
4191 (org-with-limited-levels (outline-next-heading)))
4192 ;; Main loop start.
4193 (while (< (point) end)
4194 ;; Find current element's type and parse it accordingly to
4195 ;; its category.
4196 (let* ((element (org-element--current-element
4197 end granularity mode structure))
4198 (type (org-element-type element))
4199 (cbeg (org-element-property :contents-begin element)))
4200 (goto-char (org-element-property :end element))
4201 ;; Visible only: skip invisible parts between siblings.
4202 (when (and visible-only (org-invisible-p2))
4203 (goto-char (min (1+ (org-find-visible)) end)))
4204 ;; Fill ELEMENT contents by side-effect.
4205 (cond
4206 ;; If element has no contents, don't modify it.
4207 ((not cbeg))
4208 ;; Greater element: parse it between `contents-begin' and
4209 ;; `contents-end'. Make sure GRANULARITY allows the
4210 ;; recursion, or ELEMENT is a headline, in which case going
4211 ;; inside is mandatory, in order to get sub-level headings.
4212 ((and (memq type org-element-greater-elements)
4213 (or (memq granularity '(element object nil))
4214 (and (eq granularity 'greater-element)
4215 (eq type 'section))
4216 (eq type 'headline)))
4217 (org-element--parse-elements
4218 cbeg (org-element-property :contents-end element)
4219 ;; Possibly switch to a special mode.
4220 (org-element--next-mode type t)
4221 (and (memq type '(item plain-list))
4222 (org-element-property :structure element))
4223 granularity visible-only element))
4224 ;; ELEMENT has contents. Parse objects inside, if
4225 ;; GRANULARITY allows it.
4226 ((memq granularity '(object nil))
4227 (org-element--parse-objects
4228 cbeg (org-element-property :contents-end element) element
4229 (org-element-restriction type))))
4230 (org-element-adopt-elements acc element)
4231 ;; Update mode.
4232 (setq mode (org-element--next-mode type nil))))
4233 ;; Return result.
4234 acc))
4236 (defun org-element--object-lex (restriction)
4237 "Return next object in current buffer or nil.
4238 RESTRICTION is a list of object types, as symbols, that should be
4239 looked after. This function assumes that the buffer is narrowed
4240 to an appropriate container (e.g., a paragraph)."
4241 (if (memq 'table-cell restriction) (org-element-table-cell-parser)
4242 (save-excursion
4243 (let ((limit (and org-target-link-regexp
4244 (save-excursion
4245 (or (bolp) (backward-char))
4246 (re-search-forward org-target-link-regexp nil t))
4247 (match-beginning 1)))
4248 found)
4249 (while (and (not found)
4250 (re-search-forward org-element--object-regexp limit t))
4251 (goto-char (match-beginning 0))
4252 (let ((result (match-string 0)))
4253 (setq found
4254 (cond
4255 ((eq (compare-strings result nil nil "call_" nil nil t) t)
4256 (and (memq 'inline-babel-call restriction)
4257 (org-element-inline-babel-call-parser)))
4258 ((eq (compare-strings result nil nil "src_" nil nil t) t)
4259 (and (memq 'inline-src-block restriction)
4260 (org-element-inline-src-block-parser)))
4262 (pcase (char-after)
4263 (?^ (and (memq 'superscript restriction)
4264 (org-element-superscript-parser)))
4265 (?_ (or (and (memq 'subscript restriction)
4266 (org-element-subscript-parser))
4267 (and (memq 'underline restriction)
4268 (org-element-underline-parser))))
4269 (?* (and (memq 'bold restriction)
4270 (org-element-bold-parser)))
4271 (?/ (and (memq 'italic restriction)
4272 (org-element-italic-parser)))
4273 (?~ (and (memq 'code restriction)
4274 (org-element-code-parser)))
4275 (?= (and (memq 'verbatim restriction)
4276 (org-element-verbatim-parser)))
4277 (?+ (and (memq 'strike-through restriction)
4278 (org-element-strike-through-parser)))
4279 (?@ (and (memq 'export-snippet restriction)
4280 (org-element-export-snippet-parser)))
4281 (?{ (and (memq 'macro restriction)
4282 (org-element-macro-parser)))
4283 (?$ (and (memq 'latex-fragment restriction)
4284 (org-element-latex-fragment-parser)))
4286 (if (eq (aref result 1) ?<)
4287 (or (and (memq 'radio-target restriction)
4288 (org-element-radio-target-parser))
4289 (and (memq 'target restriction)
4290 (org-element-target-parser)))
4291 (or (and (memq 'timestamp restriction)
4292 (org-element-timestamp-parser))
4293 (and (memq 'link restriction)
4294 (org-element-link-parser)))))
4295 (?\\
4296 (if (eq (aref result 1) ?\\)
4297 (and (memq 'line-break restriction)
4298 (org-element-line-break-parser))
4299 (or (and (memq 'entity restriction)
4300 (org-element-entity-parser))
4301 (and (memq 'latex-fragment restriction)
4302 (org-element-latex-fragment-parser)))))
4303 (?\[
4304 (if (eq (aref result 1) ?\[)
4305 (and (memq 'link restriction)
4306 (org-element-link-parser))
4307 (or (and (memq 'footnote-reference restriction)
4308 (org-element-footnote-reference-parser))
4309 (and (memq 'timestamp restriction)
4310 (org-element-timestamp-parser))
4311 (and (memq 'statistics-cookie restriction)
4312 (org-element-statistics-cookie-parser)))))
4313 ;; This is probably a plain link.
4314 (_ (and (or (memq 'link restriction)
4315 (memq 'plain-link restriction))
4316 (org-element-link-parser)))))))
4317 (or (eobp) (forward-char))))
4318 (cond (found)
4319 ;; Radio link.
4320 ((and limit (memq 'link restriction))
4321 (goto-char limit) (org-element-link-parser)))))))
4323 (defun org-element--parse-objects (beg end acc restriction)
4324 "Parse objects between BEG and END and return recursive structure.
4326 Objects are accumulated in ACC.
4328 RESTRICTION is a list of object successors which are allowed in
4329 the current object."
4330 (save-excursion
4331 (save-restriction
4332 (narrow-to-region beg end)
4333 (goto-char (point-min))
4334 (let (next-object)
4335 (while (and (not (eobp))
4336 (setq next-object (org-element--object-lex restriction)))
4337 ;; 1. Text before any object. Untabify it.
4338 (let ((obj-beg (org-element-property :begin next-object)))
4339 (unless (= (point) obj-beg)
4340 (setq acc
4341 (org-element-adopt-elements
4343 (replace-regexp-in-string
4344 "\t" (make-string tab-width ?\s)
4345 (buffer-substring-no-properties (point) obj-beg))))))
4346 ;; 2. Object...
4347 (let ((obj-end (org-element-property :end next-object))
4348 (cont-beg (org-element-property :contents-begin next-object)))
4349 ;; Fill contents of NEXT-OBJECT by side-effect, if it has
4350 ;; a recursive type.
4351 (when (and cont-beg
4352 (memq (car next-object) org-element-recursive-objects))
4353 (org-element--parse-objects
4354 cont-beg (org-element-property :contents-end next-object)
4355 next-object (org-element-restriction next-object)))
4356 (setq acc (org-element-adopt-elements acc next-object))
4357 (goto-char obj-end))))
4358 ;; 3. Text after last object. Untabify it.
4359 (unless (eobp)
4360 (setq acc
4361 (org-element-adopt-elements
4363 (replace-regexp-in-string
4364 "\t" (make-string tab-width ?\s)
4365 (buffer-substring-no-properties (point) end)))))
4366 ;; Result.
4367 acc)))
4371 ;;; Towards A Bijective Process
4373 ;; The parse tree obtained with `org-element-parse-buffer' is really
4374 ;; a snapshot of the corresponding Org buffer. Therefore, it can be
4375 ;; interpreted and expanded into a string with canonical Org syntax.
4376 ;; Hence `org-element-interpret-data'.
4378 ;; The function relies internally on
4379 ;; `org-element--interpret-affiliated-keywords'.
4381 ;;;###autoload
4382 (defun org-element-interpret-data (data)
4383 "Interpret DATA as Org syntax.
4384 DATA is a parse tree, an element, an object or a secondary string
4385 to interpret. Return Org syntax as a string."
4386 (letrec ((fun
4387 (lambda (--data parent)
4388 (let* ((type (org-element-type --data))
4389 ;; Find interpreter for current object or
4390 ;; element. If it doesn't exist (e.g. this is
4391 ;; a pseudo object or element), return contents,
4392 ;; if any.
4393 (interpret
4394 (let ((fun (intern
4395 (format "org-element-%s-interpreter" type))))
4396 (if (fboundp fun) fun (lambda (_ contents) contents))))
4397 (results
4398 (cond
4399 ;; Secondary string.
4400 ((not type)
4401 (mapconcat (lambda (obj) (funcall fun obj parent))
4402 --data ""))
4403 ;; Full Org document.
4404 ((eq type 'org-data)
4405 (mapconcat (lambda (obj) (funcall fun obj parent))
4406 (org-element-contents --data) ""))
4407 ;; Plain text: return it.
4408 ((stringp --data) --data)
4409 ;; Element or object without contents.
4410 ((not (org-element-contents --data))
4411 (funcall interpret --data nil))
4412 ;; Element or object with contents.
4414 (funcall
4415 interpret
4416 --data
4417 ;; Recursively interpret contents.
4418 (mapconcat
4419 (lambda (obj) (funcall fun obj --data))
4420 (org-element-contents
4421 (if (not (memq type '(paragraph verse-block)))
4422 --data
4423 ;; Fix indentation of elements containing
4424 ;; objects. We ignore `table-row'
4425 ;; elements as they are one line long
4426 ;; anyway.
4427 (org-element-normalize-contents
4428 --data
4429 ;; When normalizing first paragraph of
4430 ;; an item or a footnote-definition,
4431 ;; ignore first line's indentation.
4432 (and (eq type 'paragraph)
4433 (equal --data
4434 (car (org-element-contents parent)))
4435 (memq (org-element-type parent)
4436 '(footnote-definition item))))))
4437 ""))))))
4438 (if (memq type '(org-data plain-text nil)) results
4439 ;; Build white spaces. If no `:post-blank' property
4440 ;; is specified, assume its value is 0.
4441 (let ((blank (or (org-element-property :post-blank --data) 0)))
4442 (if (or (memq type org-element-all-objects)
4443 (and parent
4444 (let ((type (org-element-type parent)))
4445 (or (not type)
4446 (memq type org-element-object-containers)))))
4447 (concat results (make-string blank ?\s))
4448 (concat
4449 (org-element--interpret-affiliated-keywords --data)
4450 (org-element-normalize-string results)
4451 (make-string blank ?\n)))))))))
4452 (funcall fun data nil)))
4454 (defun org-element--interpret-affiliated-keywords (element)
4455 "Return ELEMENT's affiliated keywords as Org syntax.
4456 If there is no affiliated keyword, return the empty string."
4457 (let ((keyword-to-org
4458 (function
4459 (lambda (key value)
4460 (let (dual)
4461 (when (member key org-element-dual-keywords)
4462 (setq dual (cdr value) value (car value)))
4463 (concat "#+" key
4464 (and dual
4465 (format "[%s]" (org-element-interpret-data dual)))
4466 ": "
4467 (if (member key org-element-parsed-keywords)
4468 (org-element-interpret-data value)
4469 value)
4470 "\n"))))))
4471 (mapconcat
4472 (lambda (prop)
4473 (let ((value (org-element-property prop element))
4474 (keyword (upcase (substring (symbol-name prop) 1))))
4475 (when value
4476 (if (or (member keyword org-element-multiple-keywords)
4477 ;; All attribute keywords can have multiple lines.
4478 (string-match "^ATTR_" keyword))
4479 (mapconcat (lambda (line) (funcall keyword-to-org keyword line))
4480 (reverse value)
4482 (funcall keyword-to-org keyword value)))))
4483 ;; List all ELEMENT's properties matching an attribute line or an
4484 ;; affiliated keyword, but ignore translated keywords since they
4485 ;; cannot belong to the property list.
4486 (loop for prop in (nth 1 element) by 'cddr
4487 when (let ((keyword (upcase (substring (symbol-name prop) 1))))
4488 (or (string-match "^ATTR_" keyword)
4489 (and
4490 (member keyword org-element-affiliated-keywords)
4491 (not (assoc keyword
4492 org-element-keyword-translation-alist)))))
4493 collect prop)
4494 "")))
4496 ;; Because interpretation of the parse tree must return the same
4497 ;; number of blank lines between elements and the same number of white
4498 ;; space after objects, some special care must be given to white
4499 ;; spaces.
4501 ;; The first function, `org-element-normalize-string', ensures any
4502 ;; string different from the empty string will end with a single
4503 ;; newline character.
4505 ;; The second function, `org-element-normalize-contents', removes
4506 ;; global indentation from the contents of the current element.
4508 (defun org-element-normalize-string (s)
4509 "Ensure string S ends with a single newline character.
4511 If S isn't a string return it unchanged. If S is the empty
4512 string, return it. Otherwise, return a new string with a single
4513 newline character at its end."
4514 (cond
4515 ((not (stringp s)) s)
4516 ((string= "" s) "")
4517 (t (and (string-match "\\(\n[ \t]*\\)*\\'" s)
4518 (replace-match "\n" nil nil s)))))
4520 (defun org-element-normalize-contents (element &optional ignore-first)
4521 "Normalize plain text in ELEMENT's contents.
4523 ELEMENT must only contain plain text and objects.
4525 If optional argument IGNORE-FIRST is non-nil, ignore first line's
4526 indentation to compute maximal common indentation.
4528 Return the normalized element that is element with global
4529 indentation removed from its contents. The function assumes that
4530 indentation is not done with TAB characters."
4531 (letrec ((find-min-ind
4532 ;; Return minimal common indentation within BLOB. This is
4533 ;; done by walking recursively BLOB and updating MIN-IND
4534 ;; along the way. FIRST-FLAG is non-nil when the next
4535 ;; object is expected to be a string that doesn't start
4536 ;; with a newline character. It happens for strings at
4537 ;; the beginnings of the contents or right after a line
4538 ;; break.
4539 (lambda (blob first-flag min-ind)
4540 (catch 'zero
4541 (dolist (object (org-element-contents blob) min-ind)
4542 (when first-flag
4543 (setq first-flag nil)
4544 ;; Objects cannot start with spaces: in this case,
4545 ;; indentation is 0.
4546 (if (not (stringp object)) (throw 'zero 0)
4547 (string-match "\\` *" object)
4548 (let ((len (match-end 0)))
4549 ;; An indentation of zero means no string will
4550 ;; be modified. Quit the process.
4551 (if (zerop len) (throw 'zero 0)
4552 (setq min-ind (min len min-ind))))))
4553 (cond
4554 ((stringp object)
4555 (dolist (line (cdr (org-split-string object " *\n")))
4556 (unless (string= line "")
4557 (setq min-ind
4558 (min (org-get-indentation line) min-ind)))))
4559 ((eq (org-element-type object) 'line-break)
4560 (setq first-flag t))
4561 ((memq (org-element-type object)
4562 org-element-recursive-objects)
4563 (setq min-ind
4564 (funcall find-min-ind
4565 object first-flag min-ind))))))))
4566 (min-ind (funcall find-min-ind
4567 element (not ignore-first) most-positive-fixnum)))
4568 (if (or (zerop min-ind) (= min-ind most-positive-fixnum)) element
4569 ;; Build ELEMENT back, replacing each string with the same
4570 ;; string minus common indentation.
4571 (letrec ((build
4572 (lambda (datum first-flag)
4573 ;; Return DATUM with all its strings indentation
4574 ;; shortened from MIN-IND white spaces.
4575 ;; FIRST-FLAG is non-nil when the next object is
4576 ;; expected to be a string that doesn't start with
4577 ;; a newline character.
4578 (setcdr (cdr datum)
4579 (mapcar
4580 (lambda (object)
4581 (when first-flag
4582 (setq first-flag nil)
4583 (when (stringp object)
4584 (setq object
4585 (replace-regexp-in-string
4586 (format "\\` \\{%d\\}" min-ind)
4587 "" object))))
4588 (cond
4589 ((stringp object)
4590 (replace-regexp-in-string
4591 (format "\n \\{%d\\}" min-ind) "\n" object))
4592 ((memq (org-element-type object)
4593 org-element-recursive-objects)
4594 (funcall build object first-flag))
4595 ((eq (org-element-type object) 'line-break)
4596 (setq first-flag t)
4597 object)
4598 (t object)))
4599 (org-element-contents datum)))
4600 datum)))
4601 (funcall build element (not ignore-first))))))
4605 ;;; Cache
4607 ;; Implement a caching mechanism for `org-element-at-point' and
4608 ;; `org-element-context', which see.
4610 ;; A single public function is provided: `org-element-cache-reset'.
4612 ;; Cache is enabled by default, but can be disabled globally with
4613 ;; `org-element-use-cache'. `org-element-cache-sync-idle-time',
4614 ;; org-element-cache-sync-duration' and `org-element-cache-sync-break'
4615 ;; can be tweaked to control caching behaviour.
4617 ;; Internally, parsed elements are stored in an AVL tree,
4618 ;; `org-element--cache'. This tree is updated lazily: whenever
4619 ;; a change happens to the buffer, a synchronization request is
4620 ;; registered in `org-element--cache-sync-requests' (see
4621 ;; `org-element--cache-submit-request'). During idle time, requests
4622 ;; are processed by `org-element--cache-sync'. Synchronization also
4623 ;; happens when an element is required from the cache. In this case,
4624 ;; the process stops as soon as the needed element is up-to-date.
4626 ;; A synchronization request can only apply on a synchronized part of
4627 ;; the cache. Therefore, the cache is updated at least to the
4628 ;; location where the new request applies. Thus, requests are ordered
4629 ;; from left to right and all elements starting before the first
4630 ;; request are correct. This property is used by functions like
4631 ;; `org-element--cache-find' to retrieve elements in the part of the
4632 ;; cache that can be trusted.
4634 ;; A request applies to every element, starting from its original
4635 ;; location (or key, see below). When a request is processed, it
4636 ;; moves forward and may collide the next one. In this case, both
4637 ;; requests are merged into a new one that starts from that element.
4638 ;; As a consequence, the whole synchronization complexity does not
4639 ;; depend on the number of pending requests, but on the number of
4640 ;; elements the very first request will be applied on.
4642 ;; Elements cannot be accessed through their beginning position, which
4643 ;; may or may not be up-to-date. Instead, each element in the tree is
4644 ;; associated to a key, obtained with `org-element--cache-key'. This
4645 ;; mechanism is robust enough to preserve total order among elements
4646 ;; even when the tree is only partially synchronized.
4648 ;; Objects contained in an element are stored in a hash table,
4649 ;; `org-element--cache-objects'.
4652 (defvar org-element-use-cache t
4653 "Non nil when Org parser should cache its results.
4654 This is mostly for debugging purpose.")
4656 (defvar org-element-cache-sync-idle-time 0.6
4657 "Length, in seconds, of idle time before syncing cache.")
4659 (defvar org-element-cache-sync-duration (seconds-to-time 0.04)
4660 "Maximum duration, as a time value, for a cache synchronization.
4661 If the synchronization is not over after this delay, the process
4662 pauses and resumes after `org-element-cache-sync-break'
4663 seconds.")
4665 (defvar org-element-cache-sync-break (seconds-to-time 0.3)
4666 "Duration, as a time value, of the pause between synchronizations.
4667 See `org-element-cache-sync-duration' for more information.")
4670 ;;;; Data Structure
4672 (defvar org-element--cache nil
4673 "AVL tree used to cache elements.
4674 Each node of the tree contains an element. Comparison is done
4675 with `org-element--cache-compare'. This cache is used in
4676 `org-element-at-point'.")
4678 (defvar org-element--cache-objects nil
4679 "Hash table used as to cache objects.
4680 Key is an element, as returned by `org-element-at-point', and
4681 value is an alist where each association is:
4683 \(PARENT COMPLETEP . OBJECTS)
4685 where PARENT is an element or object, COMPLETEP is a boolean,
4686 non-nil when all direct children of parent are already cached and
4687 OBJECTS is a list of such children, as objects, from farthest to
4688 closest.
4690 In the following example, \\alpha, bold object and \\beta are
4691 contained within a paragraph
4693 \\alpha *\\beta*
4695 If the paragraph is completely parsed, OBJECTS-DATA will be
4697 \((PARAGRAPH t BOLD-OBJECT ENTITY-OBJECT)
4698 \(BOLD-OBJECT t ENTITY-OBJECT))
4700 whereas in a partially parsed paragraph, it could be
4702 \((PARAGRAPH nil ENTITY-OBJECT))
4704 This cache is used in `org-element-context'.")
4706 (defvar org-element--cache-sync-requests nil
4707 "List of pending synchronization requests.
4709 A request is a vector with the following pattern:
4711 \[NEXT BEG END OFFSET PARENT PHASE]
4713 Processing a synchronization request consists of three phases:
4715 0. Delete modified elements,
4716 1. Fill missing area in cache,
4717 2. Shift positions and re-parent elements after the changes.
4719 During phase 0, NEXT is the key of the first element to be
4720 removed, BEG and END is buffer position delimiting the
4721 modifications. Elements starting between them (inclusive) are
4722 removed. So are elements whose parent is removed. PARENT, when
4723 non-nil, is the parent of the first element to be removed.
4725 During phase 1, NEXT is the key of the next known element in
4726 cache and BEG its beginning position. Parse buffer between that
4727 element and the one before it in order to determine the parent of
4728 the next element. Set PARENT to the element containing NEXT.
4730 During phase 2, NEXT is the key of the next element to shift in
4731 the parse tree. All elements starting from this one have their
4732 properties relatives to buffer positions shifted by integer
4733 OFFSET and, if they belong to element PARENT, are adopted by it.
4735 PHASE specifies the phase number, as an integer.")
4737 (defvar org-element--cache-sync-timer nil
4738 "Timer used for cache synchronization.")
4740 (defvar org-element--cache-sync-keys nil
4741 "Hash table used to store keys during synchronization.
4742 See `org-element--cache-key' for more information.")
4744 (defsubst org-element--cache-key (element)
4745 "Return a unique key for ELEMENT in cache tree.
4747 Keys are used to keep a total order among elements in the cache.
4748 Comparison is done with `org-element--cache-key-less-p'.
4750 When no synchronization is taking place, a key is simply the
4751 beginning position of the element, or that position plus one in
4752 the case of an first item (respectively row) in
4753 a list (respectively a table).
4755 During a synchronization, the key is the one the element had when
4756 the cache was synchronized for the last time. Elements added to
4757 cache during the synchronization get a new key generated with
4758 `org-element--cache-generate-key'.
4760 Such keys are stored in `org-element--cache-sync-keys'. The hash
4761 table is cleared once the synchronization is complete."
4762 (or (gethash element org-element--cache-sync-keys)
4763 (let* ((begin (org-element-property :begin element))
4764 ;; Increase beginning position of items (respectively
4765 ;; table rows) by one, so the first item can get
4766 ;; a different key from its parent list (respectively
4767 ;; table).
4768 (key (if (memq (org-element-type element) '(item table-row))
4769 (1+ begin)
4770 begin)))
4771 (if org-element--cache-sync-requests
4772 (puthash element key org-element--cache-sync-keys)
4773 key))))
4775 (defun org-element--cache-generate-key (lower upper)
4776 "Generate a key between LOWER and UPPER.
4778 LOWER and UPPER are integers or lists, possibly empty.
4780 If LOWER and UPPER are equals, return LOWER. Otherwise, return
4781 a unique key, as an integer or a list of integers, according to
4782 the following rules:
4784 - LOWER and UPPER are compared level-wise until values differ.
4786 - If, at a given level, LOWER and UPPER differ from more than
4787 2, the new key shares all the levels above with LOWER and
4788 gets a new level. Its value is the mean between LOWER and
4789 UPPER:
4791 \(1 2) + (1 4) --> (1 3)
4793 - If LOWER has no value to compare with, it is assumed that its
4794 value is `most-negative-fixnum'. E.g.,
4796 \(1 1) + (1 1 2)
4798 is equivalent to
4800 \(1 1 m) + (1 1 2)
4802 where m is `most-negative-fixnum'. Likewise, if UPPER is
4803 short of levels, the current value is `most-positive-fixnum'.
4805 - If they differ from only one, the new key inherits from
4806 current LOWER level and fork it at the next level. E.g.,
4808 \(2 1) + (3 3)
4810 is equivalent to
4812 \(2 1) + (2 M)
4814 where M is `most-positive-fixnum'.
4816 - If the key is only one level long, it is returned as an
4817 integer:
4819 \(1 2) + (3 2) --> 2
4821 When they are not equals, the function assumes that LOWER is
4822 lesser than UPPER, per `org-element--cache-key-less-p'."
4823 (if (equal lower upper) lower
4824 (let ((lower (if (integerp lower) (list lower) lower))
4825 (upper (if (integerp upper) (list upper) upper))
4826 skip-upper key)
4827 (catch 'exit
4828 (while t
4829 (let ((min (or (car lower) most-negative-fixnum))
4830 (max (cond (skip-upper most-positive-fixnum)
4831 ((car upper))
4832 (t most-positive-fixnum))))
4833 (if (< (1+ min) max)
4834 (let ((mean (+ (ash min -1) (ash max -1) (logand min max 1))))
4835 (throw 'exit (if key (nreverse (cons mean key)) mean)))
4836 (when (and (< min max) (not skip-upper))
4837 ;; When at a given level, LOWER and UPPER differ from
4838 ;; 1, ignore UPPER altogether. Instead create a key
4839 ;; between LOWER and the greatest key with the same
4840 ;; prefix as LOWER so far.
4841 (setq skip-upper t))
4842 (push min key)
4843 (setq lower (cdr lower) upper (cdr upper)))))))))
4845 (defsubst org-element--cache-key-less-p (a b)
4846 "Non-nil if key A is less than key B.
4847 A and B are either integers or lists of integers, as returned by
4848 `org-element--cache-key'."
4849 (if (integerp a) (if (integerp b) (< a b) (<= a (car b)))
4850 (if (integerp b) (< (car a) b)
4851 (catch 'exit
4852 (while (and a b)
4853 (cond ((car-less-than-car a b) (throw 'exit t))
4854 ((car-less-than-car b a) (throw 'exit nil))
4855 (t (setq a (cdr a) b (cdr b)))))
4856 ;; If A is empty, either keys are equal (B is also empty) and
4857 ;; we return nil, or A is lesser than B (B is longer) and we
4858 ;; return a non-nil value.
4860 ;; If A is not empty, B is necessarily empty and A is greater
4861 ;; than B (A is longer). Therefore, return nil.
4862 (and (null a) b)))))
4864 (defun org-element--cache-compare (a b)
4865 "Non-nil when element A is located before element B."
4866 (org-element--cache-key-less-p (org-element--cache-key a)
4867 (org-element--cache-key b)))
4869 (defsubst org-element--cache-root ()
4870 "Return root value in cache.
4871 This function assumes `org-element--cache' is a valid AVL tree."
4872 (avl-tree--node-left (avl-tree--dummyroot org-element--cache)))
4875 ;;;; Tools
4877 (defsubst org-element--cache-active-p ()
4878 "Non-nil when cache is active in current buffer."
4879 (and org-element-use-cache
4880 org-element--cache
4881 (or (derived-mode-p 'org-mode) orgstruct-mode)))
4883 (defun org-element--cache-find (pos &optional side)
4884 "Find element in cache starting at POS or before.
4886 POS refers to a buffer position.
4888 When optional argument SIDE is non-nil, the function checks for
4889 elements starting at or past POS instead. If SIDE is `both', the
4890 function returns a cons cell where car is the first element
4891 starting at or before POS and cdr the first element starting
4892 after POS.
4894 The function can only find elements in the synchronized part of
4895 the cache."
4896 (let ((limit (and org-element--cache-sync-requests
4897 (aref (car org-element--cache-sync-requests) 0)))
4898 (node (org-element--cache-root))
4899 lower upper)
4900 (while node
4901 (let* ((element (avl-tree--node-data node))
4902 (begin (org-element-property :begin element)))
4903 (cond
4904 ((and limit
4905 (not (org-element--cache-key-less-p
4906 (org-element--cache-key element) limit)))
4907 (setq node (avl-tree--node-left node)))
4908 ((> begin pos)
4909 (setq upper element
4910 node (avl-tree--node-left node)))
4911 ((< begin pos)
4912 (setq lower element
4913 node (avl-tree--node-right node)))
4914 ;; We found an element in cache starting at POS. If `side'
4915 ;; is `both' we also want the next one in order to generate
4916 ;; a key in-between.
4918 ;; If the element is the first row or item in a table or
4919 ;; a plain list, we always return the table or the plain
4920 ;; list.
4922 ;; In any other case, we return the element found.
4923 ((eq side 'both)
4924 (setq lower element)
4925 (setq node (avl-tree--node-right node)))
4926 ((and (memq (org-element-type element) '(item table-row))
4927 (let ((parent (org-element-property :parent element)))
4928 (and (= (org-element-property :begin element)
4929 (org-element-property :contents-begin parent))
4930 (setq node nil
4931 lower parent
4932 upper parent)))))
4934 (setq node nil
4935 lower element
4936 upper element)))))
4937 (pcase side
4938 (`both (cons lower upper))
4939 (`nil lower)
4940 (_ upper))))
4942 (defun org-element--cache-put (element &optional data)
4943 "Store ELEMENT in current buffer's cache, if allowed.
4944 When optional argument DATA is non-nil, assume is it object data
4945 relative to ELEMENT and store it in the objects cache."
4946 (cond ((not (org-element--cache-active-p)) nil)
4947 ((not data)
4948 (when org-element--cache-sync-requests
4949 ;; During synchronization, first build an appropriate key
4950 ;; for the new element so `avl-tree-enter' can insert it at
4951 ;; the right spot in the cache.
4952 (let ((keys (org-element--cache-find
4953 (org-element-property :begin element) 'both)))
4954 (puthash element
4955 (org-element--cache-generate-key
4956 (and (car keys) (org-element--cache-key (car keys)))
4957 (cond ((cdr keys) (org-element--cache-key (cdr keys)))
4958 (org-element--cache-sync-requests
4959 (aref (car org-element--cache-sync-requests) 0))))
4960 org-element--cache-sync-keys)))
4961 (avl-tree-enter org-element--cache element))
4962 ;; Headlines are not stored in cache, so objects in titles are
4963 ;; not stored either.
4964 ((eq (org-element-type element) 'headline) nil)
4965 (t (puthash element data org-element--cache-objects))))
4967 (defsubst org-element--cache-remove (element)
4968 "Remove ELEMENT from cache.
4969 Assume ELEMENT belongs to cache and that a cache is active."
4970 (avl-tree-delete org-element--cache element)
4971 (remhash element org-element--cache-objects))
4974 ;;;; Synchronization
4976 (defsubst org-element--cache-set-timer (buffer)
4977 "Set idle timer for cache synchronization in BUFFER."
4978 (when org-element--cache-sync-timer
4979 (cancel-timer org-element--cache-sync-timer))
4980 (setq org-element--cache-sync-timer
4981 (run-with-idle-timer
4982 (let ((idle (current-idle-time)))
4983 (if idle (time-add idle org-element-cache-sync-break)
4984 org-element-cache-sync-idle-time))
4986 #'org-element--cache-sync
4987 buffer)))
4989 (defsubst org-element--cache-interrupt-p (time-limit)
4990 "Non-nil when synchronization process should be interrupted.
4991 TIME-LIMIT is a time value or nil."
4992 (and time-limit
4993 (or (input-pending-p)
4994 (time-less-p time-limit (current-time)))))
4996 (defsubst org-element--cache-shift-positions (element offset &optional props)
4997 "Shift ELEMENT properties relative to buffer positions by OFFSET.
4999 Properties containing buffer positions are `:begin', `:end',
5000 `:contents-begin', `:contents-end' and `:structure'. When
5001 optional argument PROPS is a list of keywords, only shift
5002 properties provided in that list.
5004 Properties are modified by side-effect."
5005 (let ((properties (nth 1 element)))
5006 ;; Shift `:structure' property for the first plain list only: it
5007 ;; is the only one that really matters and it prevents from
5008 ;; shifting it more than once.
5009 (when (and (or (not props) (memq :structure props))
5010 (eq (org-element-type element) 'plain-list)
5011 (not (eq (org-element-type (plist-get properties :parent))
5012 'item)))
5013 (dolist (item (plist-get properties :structure))
5014 (incf (car item) offset)
5015 (incf (nth 6 item) offset)))
5016 (dolist (key '(:begin :contents-begin :contents-end :end :post-affiliated))
5017 (let ((value (and (or (not props) (memq key props))
5018 (plist-get properties key))))
5019 (and value (plist-put properties key (+ offset value)))))))
5021 (defun org-element--cache-sync (buffer &optional threshold future-change)
5022 "Synchronize cache with recent modification in BUFFER.
5024 When optional argument THRESHOLD is non-nil, do the
5025 synchronization for all elements starting before or at threshold,
5026 then exit. Otherwise, synchronize cache for as long as
5027 `org-element-cache-sync-duration' or until Emacs leaves idle
5028 state.
5030 FUTURE-CHANGE, when non-nil, is a buffer position where changes
5031 not registered yet in the cache are going to happen. It is used
5032 in `org-element--cache-submit-request', where cache is partially
5033 updated before current modification are actually submitted."
5034 (when (buffer-live-p buffer)
5035 (with-current-buffer buffer
5036 (let ((inhibit-quit t) request next)
5037 (when org-element--cache-sync-timer
5038 (cancel-timer org-element--cache-sync-timer))
5039 (catch 'interrupt
5040 (while org-element--cache-sync-requests
5041 (setq request (car org-element--cache-sync-requests)
5042 next (nth 1 org-element--cache-sync-requests))
5043 (org-element--cache-process-request
5044 request
5045 (and next (aref next 0))
5046 threshold
5047 (and (not threshold)
5048 (time-add (current-time)
5049 org-element-cache-sync-duration))
5050 future-change)
5051 ;; Request processed. Merge current and next offsets and
5052 ;; transfer ending position.
5053 (when next
5054 (incf (aref next 3) (aref request 3))
5055 (aset next 2 (aref request 2)))
5056 (setq org-element--cache-sync-requests
5057 (cdr org-element--cache-sync-requests))))
5058 ;; If more requests are awaiting, set idle timer accordingly.
5059 ;; Otherwise, reset keys.
5060 (if org-element--cache-sync-requests
5061 (org-element--cache-set-timer buffer)
5062 (clrhash org-element--cache-sync-keys))))))
5064 (defun org-element--cache-process-request
5065 (request next threshold time-limit future-change)
5066 "Process synchronization REQUEST for all entries before NEXT.
5068 REQUEST is a vector, built by `org-element--cache-submit-request'.
5070 NEXT is a cache key, as returned by `org-element--cache-key'.
5072 When non-nil, THRESHOLD is a buffer position. Synchronization
5073 stops as soon as a shifted element begins after it.
5075 When non-nil, TIME-LIMIT is a time value. Synchronization stops
5076 after this time or when Emacs exits idle state.
5078 When non-nil, FUTURE-CHANGE is a buffer position where changes
5079 not registered yet in the cache are going to happen. See
5080 `org-element--cache-submit-request' for more information.
5082 Throw `interrupt' if the process stops before completing the
5083 request."
5084 (catch 'quit
5085 (when (= (aref request 5) 0)
5086 ;; Phase 0.
5088 ;; Delete all elements starting after BEG, but not after buffer
5089 ;; position END or past element with key NEXT. Also delete
5090 ;; elements contained within a previously removed element
5091 ;; (stored in `last-container').
5093 ;; At each iteration, we start again at tree root since
5094 ;; a deletion modifies structure of the balanced tree.
5095 (catch 'end-phase
5096 (while t
5097 (when (org-element--cache-interrupt-p time-limit)
5098 (throw 'interrupt nil))
5099 ;; Find first element in cache with key BEG or after it.
5100 (let ((beg (aref request 0))
5101 (end (aref request 2))
5102 (node (org-element--cache-root))
5103 data data-key last-container)
5104 (while node
5105 (let* ((element (avl-tree--node-data node))
5106 (key (org-element--cache-key element)))
5107 (cond
5108 ((org-element--cache-key-less-p key beg)
5109 (setq node (avl-tree--node-right node)))
5110 ((org-element--cache-key-less-p beg key)
5111 (setq data element
5112 data-key key
5113 node (avl-tree--node-left node)))
5114 (t (setq data element
5115 data-key key
5116 node nil)))))
5117 (if data
5118 (let ((pos (org-element-property :begin data)))
5119 (if (if (or (not next)
5120 (org-element--cache-key-less-p data-key next))
5121 (<= pos end)
5122 (and last-container
5123 (let ((up data))
5124 (while (and up (not (eq up last-container)))
5125 (setq up (org-element-property :parent up)))
5126 up)))
5127 (progn (when (and (not last-container)
5128 (> (org-element-property :end data)
5129 end))
5130 (setq last-container data))
5131 (org-element--cache-remove data))
5132 (aset request 0 data-key)
5133 (aset request 1 pos)
5134 (aset request 5 1)
5135 (throw 'end-phase nil)))
5136 ;; No element starting after modifications left in
5137 ;; cache: further processing is futile.
5138 (throw 'quit t))))))
5139 (when (= (aref request 5) 1)
5140 ;; Phase 1.
5142 ;; Phase 0 left a hole in the cache. Some elements after it
5143 ;; could have parents within. For example, in the following
5144 ;; buffer:
5146 ;; - item
5149 ;; Paragraph1
5151 ;; Paragraph2
5153 ;; if we remove a blank line between "item" and "Paragraph1",
5154 ;; everything down to "Paragraph2" is removed from cache. But
5155 ;; the paragraph now belongs to the list, and its `:parent'
5156 ;; property no longer is accurate.
5158 ;; Therefore we need to parse again elements in the hole, or at
5159 ;; least in its last section, so that we can re-parent
5160 ;; subsequent elements, during phase 2.
5162 ;; Note that we only need to get the parent from the first
5163 ;; element in cache after the hole.
5165 ;; When next key is lesser or equal to the current one, delegate
5166 ;; phase 1 processing to next request in order to preserve key
5167 ;; order among requests.
5168 (let ((key (aref request 0)))
5169 (when (and next (not (org-element--cache-key-less-p key next)))
5170 (let ((next-request (nth 1 org-element--cache-sync-requests)))
5171 (aset next-request 0 key)
5172 (aset next-request 1 (aref request 1))
5173 (aset next-request 5 1))
5174 (throw 'quit t)))
5175 ;; Next element will start at its beginning position plus
5176 ;; offset, since it hasn't been shifted yet. Therefore, LIMIT
5177 ;; contains the real beginning position of the first element to
5178 ;; shift and re-parent.
5179 (let ((limit (+ (aref request 1) (aref request 3))))
5180 (cond ((and threshold (> limit threshold)) (throw 'interrupt nil))
5181 ((and future-change (>= limit future-change))
5182 ;; Changes are going to happen around this element and
5183 ;; they will trigger another phase 1 request. Skip the
5184 ;; current one.
5185 (aset request 5 2))
5187 (let ((parent (org-element--parse-to limit t time-limit)))
5188 (aset request 4 parent)
5189 (aset request 5 2))))))
5190 ;; Phase 2.
5192 ;; Shift all elements starting from key START, but before NEXT, by
5193 ;; OFFSET, and re-parent them when appropriate.
5195 ;; Elements are modified by side-effect so the tree structure
5196 ;; remains intact.
5198 ;; Once THRESHOLD, if any, is reached, or once there is an input
5199 ;; pending, exit. Before leaving, the current synchronization
5200 ;; request is updated.
5201 (let ((start (aref request 0))
5202 (offset (aref request 3))
5203 (parent (aref request 4))
5204 (node (org-element--cache-root))
5205 (stack (list nil))
5206 (leftp t)
5207 exit-flag)
5208 ;; No re-parenting nor shifting planned: request is over.
5209 (when (and (not parent) (zerop offset)) (throw 'quit t))
5210 (while node
5211 (let* ((data (avl-tree--node-data node))
5212 (key (org-element--cache-key data)))
5213 (if (and leftp (avl-tree--node-left node)
5214 (not (org-element--cache-key-less-p key start)))
5215 (progn (push node stack)
5216 (setq node (avl-tree--node-left node)))
5217 (unless (org-element--cache-key-less-p key start)
5218 ;; We reached NEXT. Request is complete.
5219 (when (equal key next) (throw 'quit t))
5220 ;; Handle interruption request. Update current request.
5221 (when (or exit-flag (org-element--cache-interrupt-p time-limit))
5222 (aset request 0 key)
5223 (aset request 4 parent)
5224 (throw 'interrupt nil))
5225 ;; Shift element.
5226 (unless (zerop offset)
5227 (org-element--cache-shift-positions data offset)
5228 ;; Shift associated objects data, if any.
5229 (dolist (object-data (gethash data org-element--cache-objects))
5230 (dolist (object (cddr object-data))
5231 (org-element--cache-shift-positions object offset))))
5232 (let ((begin (org-element-property :begin data)))
5233 ;; Update PARENT and re-parent DATA, only when
5234 ;; necessary. Propagate new structures for lists.
5235 (while (and parent
5236 (<= (org-element-property :end parent) begin))
5237 (setq parent (org-element-property :parent parent)))
5238 (cond ((and (not parent) (zerop offset)) (throw 'quit nil))
5239 ((and parent
5240 (let ((p (org-element-property :parent data)))
5241 (or (not p)
5242 (< (org-element-property :begin p)
5243 (org-element-property :begin parent)))))
5244 (org-element-put-property data :parent parent)
5245 (let ((s (org-element-property :structure parent)))
5246 (when (and s (org-element-property :structure data))
5247 (org-element-put-property data :structure s)))))
5248 ;; Cache is up-to-date past THRESHOLD. Request
5249 ;; interruption.
5250 (when (and threshold (> begin threshold)) (setq exit-flag t))))
5251 (setq node (if (setq leftp (avl-tree--node-right node))
5252 (avl-tree--node-right node)
5253 (pop stack))))))
5254 ;; We reached end of tree: synchronization complete.
5255 t)))
5257 (defun org-element--parse-to (pos &optional syncp time-limit)
5258 "Parse elements in current section, down to POS.
5260 Start parsing from the closest between the last known element in
5261 cache or headline above. Return the smallest element containing
5262 POS.
5264 When optional argument SYNCP is non-nil, return the parent of the
5265 element containing POS instead. In that case, it is also
5266 possible to provide TIME-LIMIT, which is a time value specifying
5267 when the parsing should stop. The function throws `interrupt' if
5268 the process stopped before finding the expected result."
5269 (catch 'exit
5270 (org-with-wide-buffer
5271 (goto-char pos)
5272 (let* ((cached (and (org-element--cache-active-p)
5273 (org-element--cache-find pos nil)))
5274 (begin (org-element-property :begin cached))
5275 element next mode)
5276 (cond
5277 ;; Nothing in cache before point: start parsing from first
5278 ;; element following headline above, or first element in
5279 ;; buffer.
5280 ((not cached)
5281 (when (org-with-limited-levels (outline-previous-heading))
5282 (setq mode 'planning)
5283 (forward-line))
5284 (skip-chars-forward " \r\t\n")
5285 (beginning-of-line))
5286 ;; Cache returned exact match: return it.
5287 ((= pos begin)
5288 (throw 'exit (if syncp (org-element-property :parent cached) cached)))
5289 ;; There's a headline between cached value and POS: cached
5290 ;; value is invalid. Start parsing from first element
5291 ;; following the headline.
5292 ((re-search-backward
5293 (org-with-limited-levels org-outline-regexp-bol) begin t)
5294 (forward-line)
5295 (skip-chars-forward " \r\t\n")
5296 (beginning-of-line)
5297 (setq mode 'planning))
5298 ;; Check if CACHED or any of its ancestors contain point.
5300 ;; If there is such an element, we inspect it in order to know
5301 ;; if we return it or if we need to parse its contents.
5302 ;; Otherwise, we just start parsing from current location,
5303 ;; which is right after the top-most element containing
5304 ;; CACHED.
5306 ;; As a special case, if POS is at the end of the buffer, we
5307 ;; want to return the innermost element ending there.
5309 ;; Also, if we find an ancestor and discover that we need to
5310 ;; parse its contents, make sure we don't start from
5311 ;; `:contents-begin', as we would otherwise go past CACHED
5312 ;; again. Instead, in that situation, we will resume parsing
5313 ;; from NEXT, which is located after CACHED or its higher
5314 ;; ancestor not containing point.
5316 (let ((up cached)
5317 (pos (if (= (point-max) pos) (1- pos) pos)))
5318 (goto-char (or (org-element-property :contents-begin cached) begin))
5319 (while (let ((end (org-element-property :end up)))
5320 (and (<= end pos)
5321 (goto-char end)
5322 (setq up (org-element-property :parent up)))))
5323 (cond ((not up))
5324 ((eobp) (setq element up))
5325 (t (setq element up next (point)))))))
5326 ;; Parse successively each element until we reach POS.
5327 (let ((end (or (org-element-property :end element)
5328 (save-excursion
5329 (org-with-limited-levels (outline-next-heading))
5330 (point))))
5331 (parent element))
5332 (while t
5333 (when syncp
5334 (cond ((= (point) pos) (throw 'exit parent))
5335 ((org-element--cache-interrupt-p time-limit)
5336 (throw 'interrupt nil))))
5337 (unless element
5338 (setq element (org-element--current-element
5339 end 'element mode
5340 (org-element-property :structure parent)))
5341 (org-element-put-property element :parent parent)
5342 (org-element--cache-put element))
5343 (let ((elem-end (org-element-property :end element))
5344 (type (org-element-type element)))
5345 (cond
5346 ;; Skip any element ending before point. Also skip
5347 ;; element ending at point (unless it is also the end of
5348 ;; buffer) since we're sure that another element begins
5349 ;; after it.
5350 ((and (<= elem-end pos) (/= (point-max) elem-end))
5351 (goto-char elem-end)
5352 (setq mode (org-element--next-mode type nil)))
5353 ;; A non-greater element contains point: return it.
5354 ((not (memq type org-element-greater-elements))
5355 (throw 'exit element))
5356 ;; Otherwise, we have to decide if ELEMENT really
5357 ;; contains POS. In that case we start parsing from
5358 ;; contents' beginning.
5360 ;; If POS is at contents' beginning but it is also at
5361 ;; the beginning of the first item in a list or a table.
5362 ;; In that case, we need to create an anchor for that
5363 ;; list or table, so return it.
5365 ;; Also, if POS is at the end of the buffer, no element
5366 ;; can start after it, but more than one may end there.
5367 ;; Arbitrarily, we choose to return the innermost of
5368 ;; such elements.
5369 ((let ((cbeg (org-element-property :contents-begin element))
5370 (cend (org-element-property :contents-end element)))
5371 (when (or syncp
5372 (and cbeg cend
5373 (or (< cbeg pos)
5374 (and (= cbeg pos)
5375 (not (memq type '(plain-list table)))))
5376 (or (> cend pos)
5377 (and (= cend pos) (= (point-max) pos)))))
5378 (goto-char (or next cbeg))
5379 (setq next nil
5380 mode (org-element--next-mode type t)
5381 parent element
5382 end cend))))
5383 ;; Otherwise, return ELEMENT as it is the smallest
5384 ;; element containing POS.
5385 (t (throw 'exit element))))
5386 (setq element nil)))))))
5389 ;;;; Staging Buffer Changes
5391 (defconst org-element--cache-sensitive-re
5392 (concat
5393 org-outline-regexp-bol "\\|"
5394 "\\\\end{[A-Za-z0-9*]+}[ \t]*$" "\\|"
5395 "^[ \t]*\\(?:"
5396 "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ \t]*$\\)\\)" "\\|"
5397 "\\\\begin{[A-Za-z0-9*]+}" "\\|"
5398 ":\\(?:\\w\\|[-_]\\)+:[ \t]*$"
5399 "\\)")
5400 "Regexp matching a sensitive line, structure wise.
5401 A sensitive line is a headline, inlinetask, block, drawer, or
5402 latex-environment boundary. When such a line is modified,
5403 structure changes in the document may propagate in the whole
5404 section, possibly making cache invalid.")
5406 (defvar org-element--cache-change-warning nil
5407 "Non-nil when a sensitive line is about to be changed.
5408 It is a symbol among nil, t and `headline'.")
5410 (defun org-element--cache-before-change (beg end)
5411 "Request extension of area going to be modified if needed.
5412 BEG and END are the beginning and end of the range of changed
5413 text. See `before-change-functions' for more information."
5414 (when (org-element--cache-active-p)
5415 (org-with-wide-buffer
5416 (goto-char beg)
5417 (beginning-of-line)
5418 (let ((bottom (save-excursion (goto-char end) (line-end-position))))
5419 (setq org-element--cache-change-warning
5420 (save-match-data
5421 (if (and (org-with-limited-levels (org-at-heading-p))
5422 (= (line-end-position) bottom))
5423 'headline
5424 (let ((case-fold-search t))
5425 (re-search-forward
5426 org-element--cache-sensitive-re bottom t)))))))))
5428 (defun org-element--cache-after-change (beg end pre)
5429 "Update buffer modifications for current buffer.
5430 BEG and END are the beginning and end of the range of changed
5431 text, and the length in bytes of the pre-change text replaced by
5432 that range. See `after-change-functions' for more information."
5433 (when (org-element--cache-active-p)
5434 (org-with-wide-buffer
5435 (goto-char beg)
5436 (beginning-of-line)
5437 (save-match-data
5438 (let ((top (point))
5439 (bottom (save-excursion (goto-char end) (line-end-position))))
5440 ;; Determine if modified area needs to be extended, according
5441 ;; to both previous and current state. We make a special
5442 ;; case for headline editing: if a headline is modified but
5443 ;; not removed, do not extend.
5444 (when (pcase org-element--cache-change-warning
5445 (`t t)
5446 (`headline
5447 (not (and (org-with-limited-levels (org-at-heading-p))
5448 (= (line-end-position) bottom))))
5450 (let ((case-fold-search t))
5451 (re-search-forward
5452 org-element--cache-sensitive-re bottom t))))
5453 ;; Effectively extend modified area.
5454 (org-with-limited-levels
5455 (setq top (progn (goto-char top)
5456 (when (outline-previous-heading) (forward-line))
5457 (point)))
5458 (setq bottom (progn (goto-char bottom)
5459 (if (outline-next-heading) (1- (point))
5460 (point))))))
5461 ;; Store synchronization request.
5462 (let ((offset (- end beg pre)))
5463 (org-element--cache-submit-request top (- bottom offset) offset)))))
5464 ;; Activate a timer to process the request during idle time.
5465 (org-element--cache-set-timer (current-buffer))))
5467 (defun org-element--cache-for-removal (beg end offset)
5468 "Return first element to remove from cache.
5470 BEG and END are buffer positions delimiting buffer modifications.
5471 OFFSET is the size of the changes.
5473 Returned element is usually the first element in cache containing
5474 any position between BEG and END. As an exception, greater
5475 elements around the changes that are robust to contents
5476 modifications are preserved and updated according to the
5477 changes."
5478 (let* ((elements (org-element--cache-find (1- beg) 'both))
5479 (before (car elements))
5480 (after (cdr elements)))
5481 (if (not before) after
5482 (let ((up before)
5483 (robust-flag t))
5484 (while up
5485 (if (let ((type (org-element-type up)))
5486 (and (or (memq type '(center-block dynamic-block quote-block
5487 special-block))
5488 ;; Drawers named "PROPERTIES" are probably
5489 ;; a properties drawer being edited. Force
5490 ;; parsing to check if editing is over.
5491 (and (eq type 'drawer)
5492 (not (string=
5493 (org-element-property :drawer-name up)
5494 "PROPERTIES"))))
5495 (let ((cbeg (org-element-property :contents-begin up)))
5496 (and cbeg
5497 (<= cbeg beg)
5498 (> (org-element-property :contents-end up) end)))))
5499 ;; UP is a robust greater element containing changes.
5500 ;; We only need to extend its ending boundaries.
5501 (org-element--cache-shift-positions
5502 up offset '(:contents-end :end))
5503 (setq before up)
5504 (when robust-flag (setq robust-flag nil)))
5505 (setq up (org-element-property :parent up)))
5506 ;; We're at top level element containing ELEMENT: if it's
5507 ;; altered by buffer modifications, it is first element in
5508 ;; cache to be removed. Otherwise, that first element is the
5509 ;; following one.
5511 ;; As a special case, do not remove BEFORE if it is a robust
5512 ;; container for current changes.
5513 (if (or (< (org-element-property :end before) beg) robust-flag) after
5514 before)))))
5516 (defun org-element--cache-submit-request (beg end offset)
5517 "Submit a new cache synchronization request for current buffer.
5518 BEG and END are buffer positions delimiting the minimal area
5519 where cache data should be removed. OFFSET is the size of the
5520 change, as an integer."
5521 (let ((next (car org-element--cache-sync-requests))
5522 delete-to delete-from)
5523 (if (and next
5524 (zerop (aref next 5))
5525 (> (setq delete-to (+ (aref next 2) (aref next 3))) end)
5526 (<= (setq delete-from (aref next 1)) end))
5527 ;; Current changes can be merged with first sync request: we
5528 ;; can save a partial cache synchronization.
5529 (progn
5530 (incf (aref next 3) offset)
5531 ;; If last change happened within area to be removed, extend
5532 ;; boundaries of robust parents, if any. Otherwise, find
5533 ;; first element to remove and update request accordingly.
5534 (if (> beg delete-from)
5535 (let ((up (aref next 4)))
5536 (while up
5537 (org-element--cache-shift-positions
5538 up offset '(:contents-end :end))
5539 (setq up (org-element-property :parent up))))
5540 (let ((first (org-element--cache-for-removal beg delete-to offset)))
5541 (when first
5542 (aset next 0 (org-element--cache-key first))
5543 (aset next 1 (org-element-property :begin first))
5544 (aset next 4 (org-element-property :parent first))))))
5545 ;; Ensure cache is correct up to END. Also make sure that NEXT,
5546 ;; if any, is no longer a 0-phase request, thus ensuring that
5547 ;; phases are properly ordered. We need to provide OFFSET as
5548 ;; optional parameter since current modifications are not known
5549 ;; yet to the otherwise correct part of the cache (i.e, before
5550 ;; the first request).
5551 (when next (org-element--cache-sync (current-buffer) end beg))
5552 (let ((first (org-element--cache-for-removal beg end offset)))
5553 (if first
5554 (push (let ((beg (org-element-property :begin first))
5555 (key (org-element--cache-key first)))
5556 (cond
5557 ;; When changes happen before the first known
5558 ;; element, re-parent and shift the rest of the
5559 ;; cache.
5560 ((> beg end) (vector key beg nil offset nil 1))
5561 ;; Otherwise, we find the first non robust
5562 ;; element containing END. All elements between
5563 ;; FIRST and this one are to be removed.
5564 ((let ((first-end (org-element-property :end first)))
5565 (and (> first-end end)
5566 (vector key beg first-end offset first 0))))
5568 (let* ((element (org-element--cache-find end))
5569 (end (org-element-property :end element))
5570 (up element))
5571 (while (and (setq up (org-element-property :parent up))
5572 (>= (org-element-property :begin up) beg))
5573 (setq end (org-element-property :end up)
5574 element up))
5575 (vector key beg end offset element 0)))))
5576 org-element--cache-sync-requests)
5577 ;; No element to remove. No need to re-parent either.
5578 ;; Simply shift additional elements, if any, by OFFSET.
5579 (when org-element--cache-sync-requests
5580 (incf (aref (car org-element--cache-sync-requests) 3) offset)))))))
5583 ;;;; Public Functions
5585 ;;;###autoload
5586 (defun org-element-cache-reset (&optional all)
5587 "Reset cache in current buffer.
5588 When optional argument ALL is non-nil, reset cache in all Org
5589 buffers."
5590 (interactive "P")
5591 (dolist (buffer (if all (buffer-list) (list (current-buffer))))
5592 (with-current-buffer buffer
5593 (when (and org-element-use-cache
5594 (or (derived-mode-p 'org-mode) orgstruct-mode))
5595 (setq-local org-element--cache
5596 (avl-tree-create #'org-element--cache-compare))
5597 (setq-local org-element--cache-objects (make-hash-table :test #'eq))
5598 (setq-local org-element--cache-sync-keys
5599 (make-hash-table :weakness 'key :test #'eq))
5600 (setq-local org-element--cache-change-warning nil)
5601 (setq-local org-element--cache-sync-requests nil)
5602 (setq-local org-element--cache-sync-timer nil)
5603 (add-hook 'before-change-functions
5604 #'org-element--cache-before-change nil t)
5605 (add-hook 'after-change-functions
5606 #'org-element--cache-after-change nil t)))))
5608 ;;;###autoload
5609 (defun org-element-cache-refresh (pos)
5610 "Refresh cache at position POS."
5611 (when (org-element--cache-active-p)
5612 (org-element--cache-sync (current-buffer) pos)
5613 (org-element--cache-submit-request pos pos 0)
5614 (org-element--cache-set-timer (current-buffer))))
5618 ;;; The Toolbox
5620 ;; The first move is to implement a way to obtain the smallest element
5621 ;; containing point. This is the job of `org-element-at-point'. It
5622 ;; basically jumps back to the beginning of section containing point
5623 ;; and proceed, one element after the other, with
5624 ;; `org-element--current-element' until the container is found. Note:
5625 ;; When using `org-element-at-point', secondary values are never
5626 ;; parsed since the function focuses on elements, not on objects.
5628 ;; At a deeper level, `org-element-context' lists all elements and
5629 ;; objects containing point.
5631 ;; `org-element-nested-p' and `org-element-swap-A-B' may be used
5632 ;; internally by navigation and manipulation tools.
5635 ;;;###autoload
5636 (defun org-element-at-point ()
5637 "Determine closest element around point.
5639 Return value is a list like (TYPE PROPS) where TYPE is the type
5640 of the element and PROPS a plist of properties associated to the
5641 element.
5643 Possible types are defined in `org-element-all-elements'.
5644 Properties depend on element or object type, but always include
5645 `:begin', `:end', `:parent' and `:post-blank' properties.
5647 As a special case, if point is at the very beginning of the first
5648 item in a list or sub-list, returned element will be that list
5649 instead of the item. Likewise, if point is at the beginning of
5650 the first row of a table, returned element will be the table
5651 instead of the first row.
5653 When point is at the end of the buffer, return the innermost
5654 element ending there."
5655 (org-with-wide-buffer
5656 (let ((origin (point)))
5657 (end-of-line)
5658 (skip-chars-backward " \r\t\n")
5659 (cond
5660 ;; Within blank lines at the beginning of buffer, return nil.
5661 ((bobp) nil)
5662 ;; Within blank lines right after a headline, return that
5663 ;; headline.
5664 ((org-with-limited-levels (org-at-heading-p))
5665 (beginning-of-line)
5666 (org-element-headline-parser (point-max) t))
5667 ;; Otherwise parse until we find element containing ORIGIN.
5669 (when (org-element--cache-active-p)
5670 (if (not org-element--cache) (org-element-cache-reset)
5671 (org-element--cache-sync (current-buffer) origin)))
5672 (org-element--parse-to origin))))))
5674 ;;;###autoload
5675 (defun org-element-context (&optional element)
5676 "Return smallest element or object around point.
5678 Return value is a list like (TYPE PROPS) where TYPE is the type
5679 of the element or object and PROPS a plist of properties
5680 associated to it.
5682 Possible types are defined in `org-element-all-elements' and
5683 `org-element-all-objects'. Properties depend on element or
5684 object type, but always include `:begin', `:end', `:parent' and
5685 `:post-blank'.
5687 As a special case, if point is right after an object and not at
5688 the beginning of any other object, return that object.
5690 Optional argument ELEMENT, when non-nil, is the closest element
5691 containing point, as returned by `org-element-at-point'.
5692 Providing it allows for quicker computation."
5693 (catch 'objects-forbidden
5694 (org-with-wide-buffer
5695 (let* ((pos (point))
5696 (element (or element (org-element-at-point)))
5697 (type (org-element-type element)))
5698 ;; If point is inside an element containing objects or
5699 ;; a secondary string, narrow buffer to the container and
5700 ;; proceed with parsing. Otherwise, return ELEMENT.
5701 (cond
5702 ;; At a parsed affiliated keyword, check if we're inside main
5703 ;; or dual value.
5704 ((let ((post (org-element-property :post-affiliated element)))
5705 (and post (< pos post)))
5706 (beginning-of-line)
5707 (let ((case-fold-search t)) (looking-at org-element--affiliated-re))
5708 (cond
5709 ((not (member-ignore-case (match-string 1)
5710 org-element-parsed-keywords))
5711 (throw 'objects-forbidden element))
5712 ((< (match-end 0) pos)
5713 (narrow-to-region (match-end 0) (line-end-position)))
5714 ((and (match-beginning 2)
5715 (>= pos (match-beginning 2))
5716 (< pos (match-end 2)))
5717 (narrow-to-region (match-beginning 2) (match-end 2)))
5718 (t (throw 'objects-forbidden element)))
5719 ;; Also change type to retrieve correct restrictions.
5720 (setq type 'keyword))
5721 ;; At an item, objects can only be located within tag, if any.
5722 ((eq type 'item)
5723 (let ((tag (org-element-property :tag element)))
5724 (if (not tag) (throw 'objects-forbidden element)
5725 (beginning-of-line)
5726 (search-forward tag (line-end-position))
5727 (goto-char (match-beginning 0))
5728 (if (and (>= pos (point)) (< pos (match-end 0)))
5729 (narrow-to-region (point) (match-end 0))
5730 (throw 'objects-forbidden element)))))
5731 ;; At an headline or inlinetask, objects are in title.
5732 ((memq type '(headline inlinetask))
5733 (goto-char (org-element-property :begin element))
5734 (skip-chars-forward "*")
5735 (if (and (> pos (point)) (< pos (line-end-position)))
5736 (narrow-to-region (point) (line-end-position))
5737 (throw 'objects-forbidden element)))
5738 ;; At a paragraph, a table-row or a verse block, objects are
5739 ;; located within their contents.
5740 ((memq type '(paragraph table-row verse-block))
5741 (let ((cbeg (org-element-property :contents-begin element))
5742 (cend (org-element-property :contents-end element)))
5743 ;; CBEG is nil for table rules.
5744 (if (and cbeg cend (>= pos cbeg)
5745 (or (< pos cend) (and (= pos cend) (eobp))))
5746 (narrow-to-region cbeg cend)
5747 (throw 'objects-forbidden element))))
5748 ;; At a planning line, if point is at a timestamp, return it,
5749 ;; otherwise, return element.
5750 ((eq type 'planning)
5751 (dolist (p '(:closed :deadline :scheduled))
5752 (let ((timestamp (org-element-property p element)))
5753 (when (and timestamp
5754 (<= (org-element-property :begin timestamp) pos)
5755 (> (org-element-property :end timestamp) pos))
5756 (throw 'objects-forbidden timestamp))))
5757 ;; All other locations cannot contain objects: bail out.
5758 (throw 'objects-forbidden element))
5759 (t (throw 'objects-forbidden element)))
5760 (goto-char (point-min))
5761 (let ((restriction (org-element-restriction type))
5762 (parent element)
5763 (cache (cond ((not (org-element--cache-active-p)) nil)
5764 (org-element--cache-objects
5765 (gethash element org-element--cache-objects))
5766 (t (org-element-cache-reset) nil)))
5767 next object-data last)
5768 (prog1
5769 (catch 'exit
5770 (while t
5771 ;; When entering PARENT for the first time, get list
5772 ;; of objects within known so far. Store it in
5773 ;; OBJECT-DATA.
5774 (unless next
5775 (let ((data (assq parent cache)))
5776 (if data (setq object-data data)
5777 (push (setq object-data (list parent nil)) cache))))
5778 ;; Find NEXT object for analysis.
5779 (catch 'found
5780 ;; If NEXT is non-nil, we already exhausted the
5781 ;; cache so we can parse buffer to find the object
5782 ;; after it.
5783 (if next (setq next (org-element--object-lex restriction))
5784 ;; Otherwise, check if cache can help us.
5785 (let ((objects (cddr object-data))
5786 (completep (nth 1 object-data)))
5787 (cond
5788 ((and (not objects) completep) (throw 'exit parent))
5789 ((not objects)
5790 (setq next (org-element--object-lex restriction)))
5792 (let ((cache-limit
5793 (org-element-property :end (car objects))))
5794 (if (>= cache-limit pos)
5795 ;; Cache contains the information needed.
5796 (dolist (object objects (throw 'exit parent))
5797 (when (<= (org-element-property :begin object)
5798 pos)
5799 (if (>= (org-element-property :end object)
5800 pos)
5801 (throw 'found (setq next object))
5802 (throw 'exit parent))))
5803 (goto-char cache-limit)
5804 (setq next
5805 (org-element--object-lex restriction))))))))
5806 ;; If we have a new object to analyze, store it in
5807 ;; cache. Otherwise record that there is nothing
5808 ;; more to parse in this element at this depth.
5809 (if next
5810 (progn (org-element-put-property next :parent parent)
5811 (push next (cddr object-data)))
5812 (setcar (cdr object-data) t)))
5813 ;; Process NEXT, if any, in order to know if we need
5814 ;; to skip it, return it or move into it.
5815 (if (or (not next) (> (org-element-property :begin next) pos))
5816 (throw 'exit (or last parent))
5817 (let ((end (org-element-property :end next))
5818 (cbeg (org-element-property :contents-begin next))
5819 (cend (org-element-property :contents-end next)))
5820 (cond
5821 ;; Skip objects ending before point. Also skip
5822 ;; objects ending at point unless it is also the
5823 ;; end of buffer, since we want to return the
5824 ;; innermost object.
5825 ((and (<= end pos) (/= (point-max) end))
5826 (goto-char end)
5827 ;; For convenience, when object ends at POS,
5828 ;; without any space, store it in LAST, as we
5829 ;; will return it if no object starts here.
5830 (when (and (= end pos)
5831 (not (memq (char-before) '(?\s ?\t))))
5832 (setq last next)))
5833 ;; If POS is within a container object, move
5834 ;; into that object.
5835 ((and cbeg cend
5836 (>= pos cbeg)
5837 (or (< pos cend)
5838 ;; At contents' end, if there is no
5839 ;; space before point, also move into
5840 ;; object, for consistency with
5841 ;; convenience feature above.
5842 (and (= pos cend)
5843 (or (= (point-max) pos)
5844 (not (memq (char-before pos)
5845 '(?\s ?\t)))))))
5846 (goto-char cbeg)
5847 (narrow-to-region (point) cend)
5848 (setq parent next
5849 restriction (org-element-restriction next)
5850 next nil
5851 object-data nil))
5852 ;; Otherwise, return NEXT.
5853 (t (throw 'exit next)))))))
5854 ;; Store results in cache, if applicable.
5855 (org-element--cache-put element cache)))))))
5857 (defun org-element-lineage (blob &optional types with-self)
5858 "List all ancestors of a given element or object.
5860 BLOB is an object or element.
5862 When optional argument TYPES is a list of symbols, return the
5863 first element or object in the lineage whose type belongs to that
5864 list.
5866 When optional argument WITH-SELF is non-nil, lineage includes
5867 BLOB itself as the first element, and TYPES, if provided, also
5868 apply to it.
5870 When BLOB is obtained through `org-element-context' or
5871 `org-element-at-point', only ancestors from its section can be
5872 found. There is no such limitation when BLOB belongs to a full
5873 parse tree."
5874 (let ((up (if with-self blob (org-element-property :parent blob)))
5875 ancestors)
5876 (while (and up (not (memq (org-element-type up) types)))
5877 (unless types (push up ancestors))
5878 (setq up (org-element-property :parent up)))
5879 (if types up (nreverse ancestors))))
5881 (defun org-element-nested-p (elem-A elem-B)
5882 "Non-nil when elements ELEM-A and ELEM-B are nested."
5883 (let ((beg-A (org-element-property :begin elem-A))
5884 (beg-B (org-element-property :begin elem-B))
5885 (end-A (org-element-property :end elem-A))
5886 (end-B (org-element-property :end elem-B)))
5887 (or (and (>= beg-A beg-B) (<= end-A end-B))
5888 (and (>= beg-B beg-A) (<= end-B end-A)))))
5890 (defun org-element-swap-A-B (elem-A elem-B)
5891 "Swap elements ELEM-A and ELEM-B.
5892 Assume ELEM-B is after ELEM-A in the buffer. Leave point at the
5893 end of ELEM-A."
5894 (goto-char (org-element-property :begin elem-A))
5895 ;; There are two special cases when an element doesn't start at bol:
5896 ;; the first paragraph in an item or in a footnote definition.
5897 (let ((specialp (not (bolp))))
5898 ;; Only a paragraph without any affiliated keyword can be moved at
5899 ;; ELEM-A position in such a situation. Note that the case of
5900 ;; a footnote definition is impossible: it cannot contain two
5901 ;; paragraphs in a row because it cannot contain a blank line.
5902 (if (and specialp
5903 (or (not (eq (org-element-type elem-B) 'paragraph))
5904 (/= (org-element-property :begin elem-B)
5905 (org-element-property :contents-begin elem-B))))
5906 (error "Cannot swap elements"))
5907 ;; In a special situation, ELEM-A will have no indentation. We'll
5908 ;; give it ELEM-B's (which will in, in turn, have no indentation).
5909 (let* ((ind-B (when specialp
5910 (goto-char (org-element-property :begin elem-B))
5911 (org-get-indentation)))
5912 (beg-A (org-element-property :begin elem-A))
5913 (end-A (save-excursion
5914 (goto-char (org-element-property :end elem-A))
5915 (skip-chars-backward " \r\t\n")
5916 (point-at-eol)))
5917 (beg-B (org-element-property :begin elem-B))
5918 (end-B (save-excursion
5919 (goto-char (org-element-property :end elem-B))
5920 (skip-chars-backward " \r\t\n")
5921 (point-at-eol)))
5922 ;; Store inner overlays responsible for visibility status.
5923 ;; We also need to store their boundaries as they will be
5924 ;; removed from buffer.
5925 (overlays
5926 (cons
5927 (delq nil
5928 (mapcar (lambda (o)
5929 (and (>= (overlay-start o) beg-A)
5930 (<= (overlay-end o) end-A)
5931 (list o (overlay-start o) (overlay-end o))))
5932 (overlays-in beg-A end-A)))
5933 (delq nil
5934 (mapcar (lambda (o)
5935 (and (>= (overlay-start o) beg-B)
5936 (<= (overlay-end o) end-B)
5937 (list o (overlay-start o) (overlay-end o))))
5938 (overlays-in beg-B end-B)))))
5939 ;; Get contents.
5940 (body-A (buffer-substring beg-A end-A))
5941 (body-B (delete-and-extract-region beg-B end-B)))
5942 (goto-char beg-B)
5943 (when specialp
5944 (setq body-B (replace-regexp-in-string "\\`[ \t]*" "" body-B))
5945 (org-indent-to-column ind-B))
5946 (insert body-A)
5947 ;; Restore ex ELEM-A overlays.
5948 (let ((offset (- beg-B beg-A)))
5949 (dolist (o (car overlays))
5950 (move-overlay (car o) (+ (nth 1 o) offset) (+ (nth 2 o) offset)))
5951 (goto-char beg-A)
5952 (delete-region beg-A end-A)
5953 (insert body-B)
5954 ;; Restore ex ELEM-B overlays.
5955 (dolist (o (cdr overlays))
5956 (move-overlay (car o) (- (nth 1 o) offset) (- (nth 2 o) offset))))
5957 (goto-char (org-element-property :end elem-B)))))
5959 ;; For backward-compatibility with Org <= 8.3
5960 (define-obsolete-function-alias
5961 'org-element-remove-indentation 'org-remove-indentation "25.1")
5964 (provide 'org-element)
5966 ;; Local variables:
5967 ;; generated-autoload-file: "org-loaddefs.el"
5968 ;; End:
5970 ;;; org-element.el ends here