1 ;;; org-element.el --- Parser for Org Syntax -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2012-2017 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/>.
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
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
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
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
151 ;; Headlines, inlinetasks.
152 org-outline-regexp
"\\|"
153 ;; Footnote definitions.
154 "\\[fn:[-_[:word:]]+\\]" "\\|"
160 ;; Tables (any type).
162 "\\+\\(?:-+\\+\\)+[ \t]*$" "\\|"
163 ;; Comments, keyword-like or block-like constructs.
164 ;; Blocks and keywords with dual values need to be
166 "#\\(?: \\|$\\|\\+\\(?:"
168 "\\S-+\\(?:\\[.*\\]\\)?:[ \t]*\\)\\)"
170 ;; Drawers (any type) and fixed-width areas. Drawers
171 ;; need to be double-checked.
172 ":\\(?: \\|$\\|[-_[:word:]]+:[ \t]*$\\)" "\\|"
174 "-\\{5,\\}[ \t]*$" "\\|"
175 ;; LaTeX environments.
176 "\\\\begin{\\([A-Za-z0-9*]+\\)}" "\\|"
178 (regexp-quote org-clock-string
) "\\|"
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]\\|$\\)"))
186 org-element--object-regexp
187 (mapconcat #'identity
188 (let ((link-types (regexp-opt (org-link-types))))
191 "\\(?:[_^][-{(*+.,[:alnum:]]\\)"
192 ;; Bold, code, italic, strike-through, underline
196 (nth 2 org-emphasis-regexp-components
)))
198 (concat "\\<" link-types
":")
199 ;; Objects starting with "[": regular link,
200 ;; footnote reference, statistics cookie,
201 ;; timestamp (inactive).
205 "[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}" "\\|"
206 "[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
208 ;; Objects starting with "@": export snippets.
210 ;; Objects starting with "{": macro.
212 ;; Objects starting with "<" : timestamp
213 ;; (active, diary), target, radio target and
215 (concat "<\\(?:%%\\|<\\|[0-9]\\|" link-types
"\\)")
216 ;; Objects starting with "$": latex fragment.
218 ;; Objects starting with "\": line break,
219 ;; entity, latex fragment.
220 "\\\\\\(?:[a-zA-Z[(]\\|\\\\[ \t]*$\\|_ +\\)"
221 ;; Objects starting with raw text: inline Babel
222 ;; source block, inline Babel call.
223 "\\(?:call\\|src\\)_"))
226 (org-element--set-regexps)
229 (defun org-element-update-syntax ()
230 "Update parser internals."
232 (org-element--set-regexps)
233 (org-element-cache-reset 'all
))
235 (defconst org-element-all-elements
236 '(babel-call center-block clock comment comment-block diary-sexp drawer
237 dynamic-block example-block export-block fixed-width
238 footnote-definition headline horizontal-rule inlinetask item
239 keyword latex-environment node-property paragraph plain-list
240 planning property-drawer quote-block section
241 special-block src-block table table-row verse-block
)
242 "Complete list of element types.")
244 (defconst org-element-greater-elements
245 '(center-block drawer dynamic-block footnote-definition headline inlinetask
246 item plain-list property-drawer quote-block section
248 "List of recursive element types aka Greater Elements.")
250 (defconst org-element-all-objects
251 '(bold code entity export-snippet footnote-reference inline-babel-call
252 inline-src-block italic line-break latex-fragment link macro
253 radio-target statistics-cookie strike-through subscript superscript
254 table-cell target timestamp underline verbatim
)
255 "Complete list of object types.")
257 (defconst org-element-recursive-objects
258 '(bold footnote-reference italic link subscript radio-target strike-through
259 superscript table-cell underline
)
260 "List of recursive object types.")
262 (defconst org-element-object-containers
263 (append org-element-recursive-objects
'(paragraph table-row verse-block
))
264 "List of object or element types that can directly contain objects.")
266 (defconst org-element-affiliated-keywords
267 '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
268 "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
269 "List of affiliated keywords as strings.
270 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
271 are affiliated keywords and need not to be in this list.")
273 (defconst org-element-keyword-translation-alist
274 '(("DATA" .
"NAME") ("LABEL" .
"NAME") ("RESNAME" .
"NAME")
275 ("SOURCE" .
"NAME") ("SRCNAME" .
"NAME") ("TBLNAME" .
"NAME")
276 ("RESULT" .
"RESULTS") ("HEADERS" .
"HEADER"))
277 "Alist of usual translations for keywords.
278 The key is the old name and the value the new one. The property
279 holding their value will be named after the translated name.")
281 (defconst org-element-multiple-keywords
'("CAPTION" "HEADER")
282 "List of affiliated keywords that can occur more than once in an element.
284 Their value will be consed into a list of strings, which will be
285 returned as the value of the property.
287 This list is checked after translations have been applied. See
288 `org-element-keyword-translation-alist'.
290 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
291 allow multiple occurrences and need not to be in this list.")
293 (defconst org-element-parsed-keywords
'("CAPTION")
294 "List of affiliated keywords whose value can be parsed.
296 Their value will be stored as a secondary string: a list of
299 This list is checked after translations have been applied. See
300 `org-element-keyword-translation-alist'.")
302 (defconst org-element--parsed-properties-alist
303 (mapcar (lambda (k) (cons k
(intern (concat ":" (downcase k
)))))
304 org-element-parsed-keywords
)
305 "Alist of parsed keywords and associated properties.
306 This is generated from `org-element-parsed-keywords', which
309 (defconst org-element-dual-keywords
'("CAPTION" "RESULTS")
310 "List of affiliated keywords which can have a secondary value.
312 In Org syntax, they can be written with optional square brackets
313 before the colons. For example, RESULTS keyword can be
314 associated to a hash value with the following:
316 #+RESULTS[hash-string]: some-source
318 This list is checked after translations have been applied. See
319 `org-element-keyword-translation-alist'.")
321 (defconst org-element--affiliated-re
322 (format "[ \t]*#\\+\\(?:%s\\):[ \t]*"
324 ;; Dual affiliated keywords.
325 (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?"
326 (regexp-opt org-element-dual-keywords
))
328 ;; Regular affiliated keywords.
329 (format "\\(?1:%s\\)"
332 (lambda (k) (member k org-element-dual-keywords
))
333 org-element-affiliated-keywords
)))
335 ;; Export attributes.
336 "\\(?1:ATTR_[-_A-Za-z0-9]+\\)"))
337 "Regexp matching any affiliated keyword.
339 Keyword name is put in match group 1. Moreover, if keyword
340 belongs to `org-element-dual-keywords', put the dual value in
343 Don't modify it, set `org-element-affiliated-keywords' instead.")
345 (defconst org-element-object-restrictions
346 (let* ((standard-set (remq 'table-cell org-element-all-objects
))
347 (standard-set-no-line-break (remq 'line-break standard-set
)))
348 `((bold ,@standard-set
)
349 (footnote-reference ,@standard-set
)
350 (headline ,@standard-set-no-line-break
)
351 (inlinetask ,@standard-set-no-line-break
)
352 (italic ,@standard-set
)
353 (item ,@standard-set-no-line-break
)
354 (keyword ,@(remq 'footnote-reference standard-set
))
355 ;; Ignore all links excepted plain links and angular links in
356 ;; a link description. Also ignore radio-targets and line
358 (link bold code entity export-snippet inline-babel-call inline-src-block
359 italic latex-fragment macro statistics-cookie strike-through
360 subscript superscript underline verbatim
)
361 (paragraph ,@standard-set
)
362 ;; Remove any variable object from radio target as it would
363 ;; prevent it from being properly recognized.
364 (radio-target bold code entity italic latex-fragment strike-through
365 subscript superscript underline superscript
)
366 (strike-through ,@standard-set
)
367 (subscript ,@standard-set
)
368 (superscript ,@standard-set
)
369 ;; Ignore inline babel call and inline src block as formulas are
370 ;; possible. Also ignore line breaks and statistics cookies.
371 (table-cell bold code entity export-snippet footnote-reference italic
372 latex-fragment link macro radio-target strike-through
373 subscript superscript target timestamp underline verbatim
)
374 (table-row table-cell
)
375 (underline ,@standard-set
)
376 (verse-block ,@standard-set
)))
377 "Alist of objects restrictions.
379 key is an element or object type containing objects and value is
380 a list of types that can be contained within an element or object
383 For example, in a `radio-target' object, one can only find
384 entities, latex-fragments, subscript, superscript and text
387 This alist also applies to secondary string. For example, an
388 `headline' type element doesn't directly contain objects, but
389 still has an entry since one of its properties (`:title') does.")
391 (defconst org-element-secondary-value-alist
395 "Alist between element types and locations of secondary values.")
397 (defconst org-element--pair-round-table
398 (let ((table (make-syntax-table)))
399 (modify-syntax-entry ?\
( "()" table
)
400 (modify-syntax-entry ?\
) ")(" table
)
401 (dolist (char '(?\
{ ?\
} ?\
[ ?\
] ?\
< ?\
>) table
)
402 (modify-syntax-entry char
" " table
)))
403 "Table used internally to pair only round brackets.
404 Other brackets are treated as spaces.")
406 (defconst org-element--pair-square-table
407 (let ((table (make-syntax-table)))
408 (modify-syntax-entry ?\
[ "(]" table
)
409 (modify-syntax-entry ?\
] ")[" table
)
410 (dolist (char '(?\
{ ?\
} ?\
( ?\
) ?\
< ?\
>) table
)
411 (modify-syntax-entry char
" " table
)))
412 "Table used internally to pair only square brackets.
413 Other brackets are treated as spaces.")
415 (defconst org-element--pair-curly-table
416 (let ((table (make-syntax-table)))
417 (modify-syntax-entry ?\
{ "(}" table
)
418 (modify-syntax-entry ?\
} "){" table
)
419 (dolist (char '(?\
[ ?\
] ?\
( ?\
) ?\
< ?\
>) table
)
420 (modify-syntax-entry char
" " table
)))
421 "Table used internally to pair only curly brackets.
422 Other brackets are treated as spaces.")
424 (defun org-element--parse-paired-brackets (char)
425 "Parse paired brackets at point.
426 CHAR is the opening bracket to consider, as a character. Return
427 contents between brackets, as a string, or nil. Also move point
429 (when (eq char
(char-after))
430 (let ((syntax-table (pcase char
431 (?\
{ org-element--pair-curly-table
)
432 (?\
[ org-element--pair-square-table
)
433 (?\
( org-element--pair-round-table
)
437 (with-syntax-table syntax-table
438 (let ((end (ignore-errors (scan-lists pos
1 0))))
441 (buffer-substring-no-properties (1+ pos
) (1- end
)))))))))
444 ;;; Accessors and Setters
446 ;; Provide four accessors: `org-element-type', `org-element-property'
447 ;; `org-element-contents' and `org-element-restriction'.
449 ;; Setter functions allow modification of elements by side effect.
450 ;; There is `org-element-put-property', `org-element-set-contents'.
451 ;; These low-level functions are useful to build a parse tree.
453 ;; `org-element-adopt-element', `org-element-set-element',
454 ;; `org-element-extract-element' and `org-element-insert-before' are
455 ;; high-level functions useful to modify a parse tree.
457 ;; `org-element-secondary-p' is a predicate used to know if a given
458 ;; object belongs to a secondary string. `org-element-class' tells if
459 ;; some parsed data is an element or an object, handling pseudo
460 ;; elements and objects. `org-element-copy' returns an element or
461 ;; object, stripping its parent property in the process.
463 (defsubst org-element-type
(element)
464 "Return type of ELEMENT.
466 The function returns the type of the element or object provided.
467 It can also return the following special value:
468 `plain-text' for a string
469 `org-data' for a complete document
470 nil in any other case."
472 ((not (consp element
)) (and (stringp element
) 'plain-text
))
473 ((symbolp (car element
)) (car element
))))
475 (defsubst org-element-property
(property element
)
476 "Extract the value from the PROPERTY of an ELEMENT."
477 (if (stringp element
) (get-text-property 0 property element
)
478 (plist-get (nth 1 element
) property
)))
480 (defsubst org-element-contents
(element)
481 "Extract contents from an ELEMENT."
482 (cond ((not (consp element
)) nil
)
483 ((symbolp (car element
)) (nthcdr 2 element
))
486 (defsubst org-element-restriction
(element)
487 "Return restriction associated to ELEMENT.
488 ELEMENT can be an element, an object or a symbol representing an
489 element or object type."
490 (cdr (assq (if (symbolp element
) element
(org-element-type element
))
491 org-element-object-restrictions
)))
493 (defsubst org-element-put-property
(element property value
)
494 "In ELEMENT set PROPERTY to VALUE.
495 Return modified element."
496 (if (stringp element
) (org-add-props element nil property value
)
497 (setcar (cdr element
) (plist-put (nth 1 element
) property value
))
500 (defsubst org-element-set-contents
(element &rest contents
)
501 "Set ELEMENT's contents to CONTENTS.
503 (cond ((null element
) contents
)
504 ((not (symbolp (car element
))) contents
)
505 ((cdr element
) (setcdr (cdr element
) contents
) element
)
506 (t (nconc element contents
))))
508 (defun org-element-secondary-p (object)
509 "Non-nil when OBJECT directly belongs to a secondary string.
510 Return value is the property name, as a keyword, or nil."
511 (let* ((parent (org-element-property :parent object
))
512 (properties (cdr (assq (org-element-type parent
)
513 org-element-secondary-value-alist
))))
515 (dolist (p properties
)
516 (and (memq object
(org-element-property p parent
))
519 (defsubst org-element-class
(datum &optional parent
)
520 "Return class for ELEMENT, as a symbol.
521 Class is either `element' or `object'. Optional argument PARENT
522 is the element or object containing DATUM. It defaults to the
523 value of DATUM `:parent' property."
524 (let ((type (org-element-type datum
))
525 (parent (or parent
(org-element-property :parent datum
))))
528 ((memq type org-element-all-objects
) 'object
)
529 ((memq type org-element-all-elements
) 'element
)
531 ((eq type
'org-data
) 'element
)
532 ((eq type
'plain-text
) 'object
)
534 ;; Pseudo object or elements. Make a guess about its class.
535 ;; Basically a pseudo object is contained within another object,
536 ;; a secondary string or a container element.
537 ((not parent
) 'element
)
539 (let ((parent-type (org-element-type parent
)))
540 (cond ((not parent-type
) 'object
)
541 ((memq parent-type org-element-object-containers
) 'object
)
542 ((org-element-secondary-p datum
) 'object
)
545 (defsubst org-element-adopt-elements
(parent &rest children
)
546 "Append elements to the contents of another element.
548 PARENT is an element or object. CHILDREN can be elements,
549 objects, or a strings.
551 The function takes care of setting `:parent' property for CHILD.
552 Return parent element."
553 (if (not children
) parent
554 ;; Link every child to PARENT. If PARENT is nil, it is a secondary
555 ;; string: parent is the list itself.
556 (dolist (child children
)
557 (org-element-put-property child
:parent
(or parent children
)))
558 ;; Add CHILDREN at the end of PARENT contents.
560 (apply #'org-element-set-contents
562 (nconc (org-element-contents parent
) children
)))
563 ;; Return modified PARENT element.
564 (or parent children
)))
566 (defun org-element-extract-element (element)
567 "Extract ELEMENT from parse tree.
568 Remove element from the parse tree by side-effect, and return it
569 with its `:parent' property stripped out."
570 (let ((parent (org-element-property :parent element
))
571 (secondary (org-element-secondary-p element
)))
573 (org-element-put-property
575 (delq element
(org-element-property secondary parent
)))
576 (apply #'org-element-set-contents
578 (delq element
(org-element-contents parent
))))
579 ;; Return ELEMENT with its :parent removed.
580 (org-element-put-property element
:parent nil
)))
582 (defun org-element-insert-before (element location
)
583 "Insert ELEMENT before LOCATION in parse tree.
584 LOCATION is an element, object or string within the parse tree.
585 Parse tree is modified by side effect."
586 (let* ((parent (org-element-property :parent location
))
587 (property (org-element-secondary-p location
))
588 (siblings (if property
(org-element-property property parent
)
589 (org-element-contents parent
)))
590 ;; Special case: LOCATION is the first element of an
591 ;; independent secondary string (e.g. :title property). Add
593 (specialp (and (not property
)
595 (eq (car parent
) location
))))
596 ;; Install ELEMENT at the appropriate POSITION within SIBLINGS.
598 ((or (null siblings
) (eq (car siblings
) location
))
599 (push element siblings
))
600 ((null location
) (nconc siblings
(list element
)))
601 (t (let ((previous (cadr (memq location
(reverse siblings
)))))
603 (error "No location found to insert element")
604 (let ((next (memq previous siblings
)))
605 (setcdr next
(cons element
(cdr next
))))))))
606 ;; Store SIBLINGS at appropriate place in parse tree.
608 (specialp (setcdr parent
(copy-sequence parent
)) (setcar parent element
))
609 (property (org-element-put-property parent property siblings
))
610 (t (apply #'org-element-set-contents parent siblings
)))
611 ;; Set appropriate :parent property.
612 (org-element-put-property element
:parent parent
)))
614 (defun org-element-set-element (old new
)
615 "Replace element or object OLD with element or object NEW.
616 The function takes care of setting `:parent' property for NEW."
617 ;; Ensure OLD and NEW have the same parent.
618 (org-element-put-property new
:parent
(org-element-property :parent old
))
619 (if (or (memq (org-element-type old
) '(plain-text nil
))
620 (memq (org-element-type new
) '(plain-text nil
)))
621 ;; We cannot replace OLD with NEW since one of them is not an
622 ;; object or element. We take the long path.
623 (progn (org-element-insert-before new old
)
624 (org-element-extract-element old
))
625 ;; Since OLD is going to be changed into NEW by side-effect, first
626 ;; make sure that every element or object within NEW has OLD as
628 (dolist (blob (org-element-contents new
))
629 (org-element-put-property blob
:parent old
))
630 ;; Transfer contents.
631 (apply #'org-element-set-contents old
(org-element-contents new
))
632 ;; Overwrite OLD's properties with NEW's.
633 (setcar (cdr old
) (nth 1 new
))
635 (setcar old
(car new
))))
637 (defun org-element-create (type &optional props
&rest children
)
638 "Create a new element of type TYPE.
639 Optional argument PROPS, when non-nil, is a plist defining the
640 properties of the element. CHILDREN can be elements, objects or
642 (apply #'org-element-adopt-elements
(list type props
) children
))
644 (defun org-element-copy (datum)
645 "Return a copy of DATUM.
646 DATUM is an element, object, string or nil. `:parent' property
647 is cleared and contents are removed in the process."
649 (let ((type (org-element-type datum
)))
651 (`org-data
(list 'org-data nil
))
652 (`plain-text
(substring-no-properties datum
))
653 (`nil
(copy-sequence datum
))
655 (list type
(plist-put (copy-sequence (nth 1 datum
)) :parent nil
)))))))
661 ;; For each greater element type, we define a parser and an
664 ;; A parser returns the element or object as the list described above.
665 ;; Most of them accepts no argument. Though, exceptions exist. Hence
666 ;; every element containing a secondary string (see
667 ;; `org-element-secondary-value-alist') will accept an optional
668 ;; argument to toggle parsing of these secondary strings. Moreover,
669 ;; `item' parser requires current list's structure as its first
672 ;; An interpreter accepts two arguments: the list representation of
673 ;; the element or object, and its contents. The latter may be nil,
674 ;; depending on the element or object considered. It returns the
675 ;; appropriate Org syntax, as a string.
677 ;; Parsing functions must follow the naming convention:
678 ;; org-element-TYPE-parser, where TYPE is greater element's type, as
679 ;; defined in `org-element-greater-elements'.
681 ;; Similarly, interpreting functions must follow the naming
682 ;; convention: org-element-TYPE-interpreter.
684 ;; With the exception of `headline' and `item' types, greater elements
685 ;; cannot contain other greater elements of their own type.
687 ;; Beside implementing a parser and an interpreter, adding a new
688 ;; greater element requires tweaking `org-element--current-element'.
689 ;; Moreover, the newly defined type must be added to both
690 ;; `org-element-all-elements' and `org-element-greater-elements'.
695 (defun org-element-center-block-parser (limit affiliated
)
696 "Parse a center block.
698 LIMIT bounds the search. AFFILIATED is a list of which CAR is
699 the buffer position at the beginning of the first affiliated
700 keyword and CDR is a plist of affiliated keywords along with
703 Return a list whose CAR is `center-block' and CDR is a plist
704 containing `:begin', `:end', `:contents-begin', `:contents-end',
705 `:post-blank' and `:post-affiliated' keywords.
707 Assume point is at the beginning of the block."
708 (let ((case-fold-search t
))
709 (if (not (save-excursion
710 (re-search-forward "^[ \t]*#\\+END_CENTER[ \t]*$" limit t
)))
711 ;; Incomplete block: parse it as a paragraph.
712 (org-element-paragraph-parser limit affiliated
)
713 (let ((block-end-line (match-beginning 0)))
714 (let* ((begin (car affiliated
))
715 (post-affiliated (point))
716 ;; Empty blocks have no contents.
717 (contents-begin (progn (forward-line)
718 (and (< (point) block-end-line
)
720 (contents-end (and contents-begin block-end-line
))
721 (pos-before-blank (progn (goto-char block-end-line
)
725 (skip-chars-forward " \r\t\n" limit
)
726 (if (eobp) (point) (line-beginning-position)))))
731 :contents-begin contents-begin
732 :contents-end contents-end
733 :post-blank
(count-lines pos-before-blank end
)
734 :post-affiliated post-affiliated
)
735 (cdr affiliated
))))))))
737 (defun org-element-center-block-interpreter (_ contents
)
738 "Interpret a center-block element as Org syntax.
739 CONTENTS is the contents of the element."
740 (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents
))
745 (defun org-element-drawer-parser (limit affiliated
)
748 LIMIT bounds the search. AFFILIATED is a list of which CAR is
749 the buffer position at the beginning of the first affiliated
750 keyword and CDR is a plist of affiliated keywords along with
753 Return a list whose CAR is `drawer' and CDR is a plist containing
754 `:drawer-name', `:begin', `:end', `:contents-begin',
755 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
757 Assume point is at beginning of drawer."
758 (let ((case-fold-search t
))
759 (if (not (save-excursion (re-search-forward "^[ \t]*:END:[ \t]*$" limit t
)))
760 ;; Incomplete drawer: parse it as a paragraph.
761 (org-element-paragraph-parser limit affiliated
)
763 (let* ((drawer-end-line (match-beginning 0))
764 (name (progn (looking-at org-drawer-regexp
)
765 (match-string-no-properties 1)))
766 (begin (car affiliated
))
767 (post-affiliated (point))
768 ;; Empty drawers have no contents.
769 (contents-begin (progn (forward-line)
770 (and (< (point) drawer-end-line
)
772 (contents-end (and contents-begin drawer-end-line
))
773 (pos-before-blank (progn (goto-char drawer-end-line
)
776 (end (progn (skip-chars-forward " \r\t\n" limit
)
777 (if (eobp) (point) (line-beginning-position)))))
783 :contents-begin contents-begin
784 :contents-end contents-end
785 :post-blank
(count-lines pos-before-blank end
)
786 :post-affiliated post-affiliated
)
787 (cdr affiliated
))))))))
789 (defun org-element-drawer-interpreter (drawer contents
)
790 "Interpret DRAWER element as Org syntax.
791 CONTENTS is the contents of the element."
792 (format ":%s:\n%s:END:"
793 (org-element-property :drawer-name drawer
)
799 (defun org-element-dynamic-block-parser (limit affiliated
)
800 "Parse a dynamic block.
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
807 Return a list whose CAR is `dynamic-block' and CDR is a plist
808 containing `:block-name', `:begin', `:end', `:contents-begin',
809 `:contents-end', `:arguments', `:post-blank' and
810 `:post-affiliated' keywords.
812 Assume point is at beginning of dynamic block."
813 (let ((case-fold-search t
))
814 (if (not (save-excursion
815 (re-search-forward "^[ \t]*#\\+END:?[ \t]*$" limit t
)))
816 ;; Incomplete block: parse it as a paragraph.
817 (org-element-paragraph-parser limit affiliated
)
818 (let ((block-end-line (match-beginning 0)))
820 (let* ((name (progn (looking-at org-dblock-start-re
)
821 (match-string-no-properties 1)))
822 (arguments (match-string-no-properties 3))
823 (begin (car affiliated
))
824 (post-affiliated (point))
825 ;; Empty blocks have no contents.
826 (contents-begin (progn (forward-line)
827 (and (< (point) block-end-line
)
829 (contents-end (and contents-begin block-end-line
))
830 (pos-before-blank (progn (goto-char block-end-line
)
833 (end (progn (skip-chars-forward " \r\t\n" limit
)
834 (if (eobp) (point) (line-beginning-position)))))
841 :contents-begin contents-begin
842 :contents-end contents-end
843 :post-blank
(count-lines pos-before-blank end
)
844 :post-affiliated post-affiliated
)
845 (cdr affiliated
)))))))))
847 (defun org-element-dynamic-block-interpreter (dynamic-block contents
)
848 "Interpret DYNAMIC-BLOCK element as Org syntax.
849 CONTENTS is the contents of the element."
850 (format "#+BEGIN: %s%s\n%s#+END:"
851 (org-element-property :block-name dynamic-block
)
852 (let ((args (org-element-property :arguments dynamic-block
)))
853 (and args
(concat " " args
)))
857 ;;;; Footnote Definition
859 (defconst org-element--footnote-separator
860 (concat org-outline-regexp-bol
"\\|"
861 org-footnote-definition-re
"\\|"
862 "^\\([ \t]*\n\\)\\{2,\\}")
863 "Regexp used as a footnote definition separator.")
865 (defun org-element-footnote-definition-parser (limit affiliated
)
866 "Parse a footnote definition.
868 LIMIT bounds the search. AFFILIATED is a list of which CAR is
869 the buffer position at the beginning of the first affiliated
870 keyword and CDR is a plist of affiliated keywords along with
873 Return a list whose CAR is `footnote-definition' and CDR is
874 a plist containing `:label', `:begin' `:end', `:contents-begin',
875 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
877 Assume point is at the beginning of the footnote definition."
879 (let* ((label (progn (looking-at org-footnote-definition-re
)
880 (match-string-no-properties 1)))
881 (begin (car affiliated
))
882 (post-affiliated (point))
888 (re-search-forward org-element--footnote-separator limit t
))
890 ((eq (char-after (match-beginning 0)) ?\
[)
891 ;; At a new footnote definition, make sure we end
892 ;; before any affiliated keyword above.
894 (while (and (> (point) post-affiliated
)
895 (looking-at-p org-element--affiliated-re
))
897 (line-beginning-position 2))
898 (t (match-beginning 0)))))
902 (skip-chars-forward " \r\t\n" ending
)
903 (cond ((= (point) ending
) nil
)
904 ((= (line-beginning-position) post-affiliated
) (point))
905 (t (line-beginning-position)))))
906 (contents-end (and contents-begin ending
))
907 (end (progn (goto-char ending
)
908 (skip-chars-forward " \r\t\n" limit
)
909 (if (eobp) (point) (line-beginning-position)))))
910 (list 'footnote-definition
915 :contents-begin contents-begin
916 :contents-end contents-end
917 :post-blank
(count-lines ending end
)
918 :post-affiliated post-affiliated
)
919 (cdr affiliated
))))))
921 (defun org-element-footnote-definition-interpreter (footnote-definition contents
)
922 "Interpret FOOTNOTE-DEFINITION element as Org syntax.
923 CONTENTS is the contents of the footnote-definition."
924 (concat (format "[fn:%s]" (org-element-property :label footnote-definition
))
931 (defun org-element--get-node-properties ()
932 "Return node properties associated to headline at point.
933 Upcase property names. It avoids confusion between properties
934 obtained through property drawer and default properties from the
935 parser (e.g. `:end' and :END:). Return value is a plist."
938 (when (looking-at-p org-planning-line-re
) (forward-line))
939 (when (looking-at org-property-drawer-re
)
941 (let ((end (match-end 0)) properties
)
942 (while (< (line-end-position) end
)
943 (looking-at org-property-re
)
944 (push (match-string-no-properties 3) properties
)
945 (push (intern (concat ":" (upcase (match-string 2)))) properties
)
949 (defun org-element--get-time-properties ()
950 "Return time properties associated to headline at point.
951 Return value is a plist."
953 (when (progn (forward-line) (looking-at org-planning-line-re
))
954 (let ((end (line-end-position)) plist
)
955 (while (re-search-forward org-keyword-time-not-clock-regexp end t
)
956 (goto-char (match-end 1))
957 (skip-chars-forward " \t")
958 (let ((keyword (match-string 1))
959 (time (org-element-timestamp-parser)))
960 (cond ((equal keyword org-scheduled-string
)
961 (setq plist
(plist-put plist
:scheduled time
)))
962 ((equal keyword org-deadline-string
)
963 (setq plist
(plist-put plist
:deadline time
)))
964 (t (setq plist
(plist-put plist
:closed time
))))))
967 (defun org-element-headline-parser (limit &optional raw-secondary-p
)
970 Return a list whose CAR is `headline' and CDR is a plist
971 containing `:raw-value', `:title', `:begin', `:end',
972 `:pre-blank', `:contents-begin' and `:contents-end', `:level',
973 `:priority', `:tags', `:todo-keyword',`:todo-type', `:scheduled',
974 `:deadline', `:closed', `:archivedp', `:commentedp'
975 `:footnote-section-p', `:post-blank' and `:post-affiliated'
978 The plist also contains any property set in the property drawer,
979 with its name in upper cases and colons added at the
980 beginning (e.g., `:CUSTOM_ID').
982 LIMIT is a buffer position bounding the search.
984 When RAW-SECONDARY-P is non-nil, headline's title will not be
985 parsed as a secondary string, but as a plain string instead.
987 Assume point is at beginning of the headline."
989 (let* ((begin (point))
990 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
991 (skip-chars-forward " \t")))
992 (todo (and org-todo-regexp
993 (let (case-fold-search) (looking-at org-todo-regexp
))
994 (progn (goto-char (match-end 0))
995 (skip-chars-forward " \t")
998 (and todo
(if (member todo org-done-keywords
) 'done
'todo
)))
999 (priority (and (looking-at "\\[#.\\][ \t]*")
1000 (progn (goto-char (match-end 0))
1001 (aref (match-string 0) 2))))
1003 (and (let (case-fold-search) (looking-at org-comment-string
))
1004 (goto-char (match-end 0))))
1005 (title-start (point))
1006 (tags (when (re-search-forward
1007 "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
1010 (goto-char (match-beginning 0))
1011 (org-split-string (match-string 1) ":")))
1013 (raw-value (org-trim
1014 (buffer-substring-no-properties title-start title-end
)))
1015 (archivedp (member org-archive-tag tags
))
1016 (footnote-section-p (and org-footnote-section
1017 (string= org-footnote-section raw-value
)))
1018 (standard-props (org-element--get-node-properties))
1019 (time-props (org-element--get-time-properties))
1020 (end (min (save-excursion (org-end-of-subtree t t
)) limit
))
1021 (contents-begin (save-excursion
1023 (skip-chars-forward " \r\t\n" end
)
1024 (and (/= (point) end
) (line-beginning-position))))
1025 (contents-end (and contents-begin
1026 (progn (goto-char end
)
1027 (skip-chars-backward " \r\t\n")
1028 (line-beginning-position 2)))))
1032 (list :raw-value raw-value
1036 (if (not contents-begin
) 0
1037 (1- (count-lines begin contents-begin
)))
1038 :contents-begin contents-begin
1039 :contents-end contents-end
1044 :todo-type todo-type
1047 (count-lines contents-end end
)
1048 (1- (count-lines begin end
)))
1049 :footnote-section-p footnote-section-p
1050 :archivedp archivedp
1051 :commentedp commentedp
1052 :post-affiliated begin
)
1055 (org-element-put-property
1057 (if raw-secondary-p raw-value
1058 (org-element--parse-objects
1059 (progn (goto-char title-start
)
1060 (skip-chars-forward " \t")
1062 (progn (goto-char title-end
)
1063 (skip-chars-backward " \t")
1066 (org-element-restriction 'headline
)
1069 (defun org-element-headline-interpreter (headline contents
)
1070 "Interpret HEADLINE element as Org syntax.
1071 CONTENTS is the contents of the element."
1072 (let* ((level (org-element-property :level headline
))
1073 (todo (org-element-property :todo-keyword headline
))
1074 (priority (org-element-property :priority headline
))
1075 (title (org-element-interpret-data
1076 (org-element-property :title headline
)))
1077 (tags (let ((tag-list (org-element-property :tags headline
)))
1079 (format ":%s:" (mapconcat #'identity tag-list
":")))))
1080 (commentedp (org-element-property :commentedp headline
))
1081 (pre-blank (or (org-element-property :pre-blank headline
) 0))
1083 (concat (make-string (if org-odd-levels-only
(1- (* level
2)) level
)
1085 (and todo
(concat " " todo
))
1086 (and commentedp
(concat " " org-comment-string
))
1087 (and priority
(format " [#%c]" priority
))
1089 (if (and org-footnote-section
1090 (org-element-property :footnote-section-p headline
))
1091 org-footnote-section
1098 ((zerop org-tags-column
) (format " %s" tags
))
1099 ((< org-tags-column
0)
1102 (max (- (+ org-tags-column
(length heading
) (length tags
))) 1)
1107 (make-string (max (- org-tags-column
(length heading
)) 1) ?\s
)
1109 (make-string (1+ pre-blank
) ?
\n)
1115 (defun org-element-inlinetask-parser (limit &optional raw-secondary-p
)
1116 "Parse an inline task.
1118 Return a list whose CAR is `inlinetask' and CDR is a plist
1119 containing `:title', `:begin', `:end', `:pre-blank',
1120 `:contents-begin' and `:contents-end', `:level', `:priority',
1121 `:raw-value', `:tags', `:todo-keyword', `:todo-type',
1122 `:scheduled', `:deadline', `:closed', `:post-blank' and
1123 `:post-affiliated' keywords.
1125 The plist also contains any property set in the property drawer,
1126 with its name in upper cases and colons added at the
1127 beginning (e.g., `:CUSTOM_ID').
1129 When optional argument RAW-SECONDARY-P is non-nil, inline-task's
1130 title will not be parsed as a secondary string, but as a plain
1133 Assume point is at beginning of the inline task."
1135 (let* ((begin (point))
1136 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
1137 (skip-chars-forward " \t")))
1138 (todo (and org-todo-regexp
1139 (let (case-fold-search) (looking-at org-todo-regexp
))
1140 (progn (goto-char (match-end 0))
1141 (skip-chars-forward " \t")
1143 (todo-type (and todo
1144 (if (member todo org-done-keywords
) 'done
'todo
)))
1145 (priority (and (looking-at "\\[#.\\][ \t]*")
1146 (progn (goto-char (match-end 0))
1147 (aref (match-string 0) 2))))
1148 (title-start (point))
1149 (tags (when (re-search-forward
1150 "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
1153 (goto-char (match-beginning 0))
1154 (org-split-string (match-string 1) ":")))
1156 (raw-value (org-trim
1157 (buffer-substring-no-properties title-start title-end
)))
1158 (task-end (save-excursion
1160 (and (re-search-forward org-outline-regexp-bol limit t
)
1161 (looking-at-p "[ \t]*END[ \t]*$")
1162 (line-beginning-position))))
1163 (standard-props (and task-end
(org-element--get-node-properties)))
1164 (time-props (and task-end
(org-element--get-time-properties)))
1165 (contents-begin (and task-end
1166 (< (point) task-end
)
1169 (skip-chars-forward " \t\n")
1170 (line-beginning-position))))
1171 (contents-end (and contents-begin task-end
))
1172 (end (progn (when task-end
(goto-char task-end
))
1174 (skip-chars-forward " \r\t\n" limit
)
1175 (if (eobp) (point) (line-beginning-position))))
1179 (list :raw-value raw-value
1183 (if (not contents-begin
) 0
1184 (1- (count-lines begin contents-begin
)))
1185 :contents-begin contents-begin
1186 :contents-end contents-end
1191 :todo-type todo-type
1192 :post-blank
(1- (count-lines (or task-end begin
) end
))
1193 :post-affiliated begin
)
1196 (org-element-put-property
1198 (if raw-secondary-p raw-value
1199 (org-element--parse-objects
1200 (progn (goto-char title-start
)
1201 (skip-chars-forward " \t")
1203 (progn (goto-char title-end
)
1204 (skip-chars-backward " \t")
1207 (org-element-restriction 'inlinetask
)
1210 (defun org-element-inlinetask-interpreter (inlinetask contents
)
1211 "Interpret INLINETASK element as Org syntax.
1212 CONTENTS is the contents of inlinetask."
1213 (let* ((level (org-element-property :level inlinetask
))
1214 (todo (org-element-property :todo-keyword inlinetask
))
1215 (priority (org-element-property :priority inlinetask
))
1216 (title (org-element-interpret-data
1217 (org-element-property :title inlinetask
)))
1218 (tags (let ((tag-list (org-element-property :tags inlinetask
)))
1220 (format ":%s:" (mapconcat 'identity tag-list
":")))))
1221 (task (concat (make-string level ?
*)
1222 (and todo
(concat " " todo
))
1223 (and priority
(format " [#%c]" priority
))
1224 (and title
(concat " " title
)))))
1229 ((zerop org-tags-column
) (format " %s" tags
))
1230 ((< org-tags-column
0)
1233 (max (- (+ org-tags-column
(length task
) (length tags
))) 1)
1238 (make-string (max (- org-tags-column
(length task
)) 1) ?
)
1240 ;; Prefer degenerate inlinetasks when there are no
1245 (make-string level ?
*) " END")))))
1250 (defun org-element-item-parser (_ struct
&optional raw-secondary-p
)
1253 STRUCT is the structure of the plain list.
1255 Return a list whose CAR is `item' and CDR is a plist containing
1256 `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
1257 `:checkbox', `:counter', `:tag', `:structure', `:post-blank' and
1258 `:post-affiliated' keywords.
1260 When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
1261 any, will not be parsed as a secondary string, but as a plain
1264 Assume point is at the beginning of the item."
1267 (looking-at org-list-full-item-re
)
1268 (let* ((begin (point))
1269 (bullet (match-string-no-properties 1))
1270 (checkbox (let ((box (match-string 3)))
1271 (cond ((equal "[ ]" box
) 'off
)
1272 ((equal "[X]" box
) 'on
)
1273 ((equal "[-]" box
) 'trans
))))
1274 (counter (let ((c (match-string 2)))
1278 ((string-match "[A-Za-z]" c
)
1279 (- (string-to-char (upcase (match-string 0 c
)))
1281 ((string-match "[0-9]+" c
)
1282 (string-to-number (match-string 0 c
)))))))
1283 (end (progn (goto-char (nth 6 (assq (point) struct
)))
1284 (if (bolp) (point) (line-beginning-position 2))))
1287 ;; Ignore tags in un-ordered lists: they are just
1288 ;; a part of item's body.
1289 (if (and (match-beginning 4)
1290 (save-match-data (string-match "[.)]" bullet
)))
1293 (skip-chars-forward " \r\t\n" end
)
1294 (cond ((= (point) end
) nil
)
1295 ;; If first line isn't empty, contents really
1296 ;; start at the text after item's meta-data.
1297 ((= (line-beginning-position) begin
) (point))
1298 (t (line-beginning-position)))))
1299 (contents-end (and contents-begin
1300 (progn (goto-char end
)
1301 (skip-chars-backward " \r\t\n")
1302 (line-beginning-position 2))))
1305 (list :bullet bullet
1308 :contents-begin contents-begin
1309 :contents-end contents-end
1313 :post-blank
(count-lines (or contents-end begin
) end
)
1314 :post-affiliated begin
))))
1315 (org-element-put-property
1317 (let ((raw (org-list-get-tag begin struct
)))
1319 (if raw-secondary-p raw
1320 (org-element--parse-objects
1321 (match-beginning 4) (match-end 4) nil
1322 (org-element-restriction 'item
)
1325 (defun org-element-item-interpreter (item contents
)
1326 "Interpret ITEM element as Org syntax.
1327 CONTENTS is the contents of the element."
1328 (let* ((bullet (let ((bullet (org-element-property :bullet item
)))
1329 (org-list-bullet-string
1330 (cond ((not (string-match "[0-9a-zA-Z]" bullet
)) "- ")
1331 ((eq org-plain-list-ordered-item-terminator ?\
)) "1)")
1333 (checkbox (org-element-property :checkbox item
))
1334 (counter (org-element-property :counter item
))
1335 (tag (let ((tag (org-element-property :tag item
)))
1336 (and tag
(org-element-interpret-data tag
))))
1337 ;; Compute indentation.
1338 (ind (make-string (length bullet
) 32))
1339 (item-starts-with-par-p
1340 (eq (org-element-type (car (org-element-contents item
)))
1345 (and counter
(format "[@%d] " counter
))
1351 (and tag
(format "%s :: " tag
))
1353 (let ((contents (replace-regexp-in-string
1354 "\\(^\\)[ \t]*\\S-" ind contents nil nil
1)))
1355 (if item-starts-with-par-p
(org-trim contents
)
1356 (concat "\n" contents
)))))))
1361 (defun org-element--list-struct (limit)
1362 ;; Return structure of list at point. Internal function. See
1363 ;; `org-list-struct' for details.
1364 (let ((case-fold-search t
)
1366 (item-re (org-item-re))
1367 (inlinetask-re (and (featurep 'org-inlinetask
) "^\\*+ "))
1373 ;; At limit: end all items.
1376 (let ((end (progn (skip-chars-backward " \r\t\n")
1379 (dolist (item items
(sort (nconc items struct
)
1380 'car-less-than-car
))
1381 (setcar (nthcdr 6 item
) end
)))))
1382 ;; At list end: end all items.
1383 ((looking-at org-list-end-re
)
1384 (throw 'exit
(dolist (item items
(sort (nconc items struct
)
1385 'car-less-than-car
))
1386 (setcar (nthcdr 6 item
) (point)))))
1387 ;; At a new item: end previous sibling.
1388 ((looking-at item-re
)
1389 (let ((ind (save-excursion (skip-chars-forward " \t")
1391 (setq top-ind
(min top-ind ind
))
1392 (while (and items
(<= ind
(nth 1 (car items
))))
1393 (let ((item (pop items
)))
1394 (setcar (nthcdr 6 item
) (point))
1395 (push item struct
)))
1396 (push (progn (looking-at org-list-full-item-re
)
1397 (let ((bullet (match-string-no-properties 1)))
1401 (match-string-no-properties 2) ; counter
1402 (match-string-no-properties 3) ; checkbox
1404 (and (save-match-data
1405 (string-match "[-+*]" bullet
))
1406 (match-string-no-properties 4))
1407 ;; Ending position, unknown so far.
1411 ;; Skip empty lines.
1412 ((looking-at "^[ \t]*$") (forward-line))
1413 ;; Skip inline tasks and blank lines along the way.
1414 ((and inlinetask-re
(looking-at inlinetask-re
))
1416 (let ((origin (point)))
1417 (when (re-search-forward inlinetask-re limit t
)
1418 (if (looking-at-p "END[ \t]*$") (forward-line)
1419 (goto-char origin
)))))
1420 ;; At some text line. Check if it ends any previous item.
1422 (let ((ind (save-excursion (skip-chars-forward " \t")
1424 (when (<= ind top-ind
)
1425 (skip-chars-backward " \r\t\n")
1427 (while (<= ind
(nth 1 (car items
)))
1428 (let ((item (pop items
)))
1429 (setcar (nthcdr 6 item
) (line-beginning-position))
1432 (throw 'exit
(sort struct
#'car-less-than-car
))))))
1433 ;; Skip blocks (any type) and drawers contents.
1435 ((and (looking-at "[ \t]*#\\+BEGIN\\(:\\|_\\S-+\\)")
1437 (format "^[ \t]*#\\+END%s[ \t]*$" (match-string 1))
1439 ((and (looking-at org-drawer-regexp
)
1440 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t
))))
1441 (forward-line))))))))
1443 (defun org-element-plain-list-parser (limit affiliated structure
)
1444 "Parse a plain list.
1446 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1447 the buffer position at the beginning of the first affiliated
1448 keyword and CDR is a plist of affiliated keywords along with
1449 their value. STRUCTURE is the structure of the plain list being
1452 Return a list whose CAR is `plain-list' and CDR is a plist
1453 containing `:type', `:begin', `:end', `:contents-begin' and
1454 `:contents-end', `:structure', `:post-blank' and
1455 `:post-affiliated' keywords.
1457 Assume point is at the beginning of the list."
1459 (let* ((struct (or structure
(org-element--list-struct limit
)))
1460 (type (cond ((looking-at-p "[ \t]*[A-Za-z0-9]") 'ordered
)
1461 ((nth 5 (assq (point) struct
)) 'descriptive
)
1463 (contents-begin (point))
1464 (begin (car affiliated
))
1465 (contents-end (let* ((item (assq contents-begin struct
))
1468 (while (and (setq item
(assq pos struct
))
1469 (= (nth 1 item
) ind
))
1470 (setq pos
(nth 6 item
)))
1472 (end (progn (goto-char contents-end
)
1473 (skip-chars-forward " \r\t\n" limit
)
1474 (if (= (point) limit
) limit
(line-beginning-position)))))
1481 :contents-begin contents-begin
1482 :contents-end contents-end
1484 :post-blank
(count-lines contents-end end
)
1485 :post-affiliated contents-begin
)
1486 (cdr affiliated
))))))
1488 (defun org-element-plain-list-interpreter (_ contents
)
1489 "Interpret plain-list element as Org syntax.
1490 CONTENTS is the contents of the element."
1493 (goto-char (point-min))
1498 ;;;; Property Drawer
1500 (defun org-element-property-drawer-parser (limit)
1501 "Parse a property drawer.
1503 LIMIT bounds the search.
1505 Return a list whose car is `property-drawer' and cdr is a plist
1506 containing `:begin', `:end', `:contents-begin', `:contents-end',
1507 `:post-blank' and `:post-affiliated' keywords.
1509 Assume point is at the beginning of the property drawer."
1511 (let ((case-fold-search t
)
1513 (contents-begin (line-beginning-position 2)))
1514 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t
)
1515 (let ((contents-end (and (> (match-beginning 0) contents-begin
)
1516 (match-beginning 0)))
1517 (before-blank (progn (forward-line) (point)))
1518 (end (progn (skip-chars-forward " \r\t\n" limit
)
1519 (if (eobp) (point) (line-beginning-position)))))
1520 (list 'property-drawer
1523 :contents-begin
(and contents-end contents-begin
)
1524 :contents-end contents-end
1525 :post-blank
(count-lines before-blank end
)
1526 :post-affiliated begin
))))))
1528 (defun org-element-property-drawer-interpreter (_ contents
)
1529 "Interpret property-drawer element as Org syntax.
1530 CONTENTS is the properties within the drawer."
1531 (format ":PROPERTIES:\n%s:END:" contents
))
1536 (defun org-element-quote-block-parser (limit affiliated
)
1537 "Parse a quote block.
1539 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1540 the buffer position at the beginning of the first affiliated
1541 keyword and CDR is a plist of affiliated keywords along with
1544 Return a list whose CAR is `quote-block' and CDR is a plist
1545 containing `:begin', `:end', `:contents-begin', `:contents-end',
1546 `:post-blank' and `:post-affiliated' keywords.
1548 Assume point is at the beginning of the block."
1549 (let ((case-fold-search t
))
1550 (if (not (save-excursion
1551 (re-search-forward "^[ \t]*#\\+END_QUOTE[ \t]*$" limit t
)))
1552 ;; Incomplete block: parse it as a paragraph.
1553 (org-element-paragraph-parser limit affiliated
)
1554 (let ((block-end-line (match-beginning 0)))
1556 (let* ((begin (car affiliated
))
1557 (post-affiliated (point))
1558 ;; Empty blocks have no contents.
1559 (contents-begin (progn (forward-line)
1560 (and (< (point) block-end-line
)
1562 (contents-end (and contents-begin block-end-line
))
1563 (pos-before-blank (progn (goto-char block-end-line
)
1566 (end (progn (skip-chars-forward " \r\t\n" limit
)
1567 (if (eobp) (point) (line-beginning-position)))))
1572 :contents-begin contents-begin
1573 :contents-end contents-end
1574 :post-blank
(count-lines pos-before-blank end
)
1575 :post-affiliated post-affiliated
)
1576 (cdr affiliated
)))))))))
1578 (defun org-element-quote-block-interpreter (_ contents
)
1579 "Interpret quote-block element as Org syntax.
1580 CONTENTS is the contents of the element."
1581 (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents
))
1586 (defun org-element-section-parser (_)
1589 Return a list whose CAR is `section' and CDR is a plist
1590 containing `:begin', `:end', `:contents-begin', `contents-end',
1591 `:post-blank' and `:post-affiliated' keywords."
1593 ;; Beginning of section is the beginning of the first non-blank
1594 ;; line after previous headline.
1595 (let ((begin (point))
1596 (end (progn (org-with-limited-levels (outline-next-heading))
1598 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1599 (line-beginning-position 2))))
1603 :contents-begin begin
1604 :contents-end pos-before-blank
1605 :post-blank
(count-lines pos-before-blank end
)
1606 :post-affiliated begin
)))))
1608 (defun org-element-section-interpreter (_ contents
)
1609 "Interpret section element as Org syntax.
1610 CONTENTS is the contents of the element."
1616 (defun org-element-special-block-parser (limit affiliated
)
1617 "Parse a special block.
1619 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1620 the buffer position at the beginning of the first affiliated
1621 keyword and CDR is a plist of affiliated keywords along with
1624 Return a list whose CAR is `special-block' and CDR is a plist
1625 containing `:type', `:begin', `:end', `:contents-begin',
1626 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
1628 Assume point is at the beginning of the block."
1629 (let* ((case-fold-search t
)
1630 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1631 (match-string-no-properties 1))))
1632 (if (not (save-excursion
1634 (format "^[ \t]*#\\+END_%s[ \t]*$" (regexp-quote type
))
1636 ;; Incomplete block: parse it as a paragraph.
1637 (org-element-paragraph-parser limit affiliated
)
1638 (let ((block-end-line (match-beginning 0)))
1640 (let* ((begin (car affiliated
))
1641 (post-affiliated (point))
1642 ;; Empty blocks have no contents.
1643 (contents-begin (progn (forward-line)
1644 (and (< (point) block-end-line
)
1646 (contents-end (and contents-begin block-end-line
))
1647 (pos-before-blank (progn (goto-char block-end-line
)
1650 (end (progn (skip-chars-forward " \r\t\n" limit
)
1651 (if (eobp) (point) (line-beginning-position)))))
1652 (list 'special-block
1657 :contents-begin contents-begin
1658 :contents-end contents-end
1659 :post-blank
(count-lines pos-before-blank end
)
1660 :post-affiliated post-affiliated
)
1661 (cdr affiliated
)))))))))
1663 (defun org-element-special-block-interpreter (special-block contents
)
1664 "Interpret SPECIAL-BLOCK element as Org syntax.
1665 CONTENTS is the contents of the element."
1666 (let ((block-type (org-element-property :type special-block
)))
1667 (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type
)))
1673 ;; For each element, a parser and an interpreter are also defined.
1674 ;; Both follow the same naming convention used for greater elements.
1676 ;; Also, as for greater elements, adding a new element type is done
1677 ;; through the following steps: implement a parser and an interpreter,
1678 ;; tweak `org-element--current-element' so that it recognizes the new
1679 ;; type and add that new type to `org-element-all-elements'.
1684 (defun org-element-babel-call-parser (limit affiliated
)
1685 "Parse a babel call.
1687 LIMIT bounds the search. AFFILIATED is a list of which car is
1688 the buffer position at the beginning of the first affiliated
1689 keyword and cdr is a plist of affiliated keywords along with
1692 Return a list whose car is `babel-call' and cdr is a plist
1693 containing `:call', `:inside-header', `:arguments',
1694 `:end-header', `:begin', `:end', `:value', `:post-blank' and
1695 `:post-affiliated' as keywords."
1697 (let* ((begin (car affiliated
))
1698 (post-affiliated (point))
1699 (value (progn (search-forward ":" nil t
)
1701 (buffer-substring-no-properties
1702 (point) (line-end-position)))))
1703 (pos-before-blank (progn (forward-line) (point)))
1704 (end (progn (skip-chars-forward " \r\t\n" limit
)
1705 (if (eobp) (point) (line-beginning-position))))
1708 "\\([^()\n]+?\\)\\(?:\\[\\(.*?\\)\\]\\)?(\\(.*\\))[ \t]*\\(.*\\)"
1712 (list :call
(and valid-value
(match-string 1 value
))
1713 :inside-header
(and valid-value
1714 (org-string-nw-p (match-string 2 value
)))
1715 :arguments
(and valid-value
1716 (org-string-nw-p (match-string 3 value
)))
1717 :end-header
(and valid-value
1718 (org-string-nw-p (match-string 4 value
)))
1722 :post-blank
(count-lines pos-before-blank end
)
1723 :post-affiliated post-affiliated
)
1724 (cdr affiliated
))))))
1726 (defun org-element-babel-call-interpreter (babel-call _
)
1727 "Interpret BABEL-CALL element as Org syntax."
1729 (org-element-property :call babel-call
)
1730 (let ((h (org-element-property :inside-header babel-call
)))
1731 (and h
(format "[%s]" h
)))
1732 (concat "(" (org-element-property :arguments babel-call
) ")")
1733 (let ((h (org-element-property :end-header babel-call
)))
1734 (and h
(concat " " h
)))))
1739 (defun org-element-clock-parser (limit)
1742 LIMIT bounds the search.
1744 Return a list whose CAR is `clock' and CDR is a plist containing
1745 `:status', `:value', `:time', `:begin', `:end', `:post-blank' and
1746 `:post-affiliated' as keywords."
1748 (let* ((case-fold-search nil
)
1750 (value (progn (search-forward org-clock-string
(line-end-position) t
)
1751 (skip-chars-forward " \t")
1752 (org-element-timestamp-parser)))
1753 (duration (and (search-forward " => " (line-end-position) t
)
1754 (progn (skip-chars-forward " \t")
1755 (looking-at "\\(\\S-+\\)[ \t]*$"))
1756 (match-string-no-properties 1)))
1757 (status (if duration
'closed
'running
))
1758 (post-blank (let ((before-blank (progn (forward-line) (point))))
1759 (skip-chars-forward " \r\t\n" limit
)
1760 (skip-chars-backward " \t")
1761 (unless (bolp) (end-of-line))
1762 (count-lines before-blank
(point))))
1765 (list :status status
1770 :post-blank post-blank
1771 :post-affiliated begin
)))))
1773 (defun org-element-clock-interpreter (clock _
)
1774 "Interpret CLOCK element as Org syntax."
1775 (concat org-clock-string
" "
1776 (org-element-timestamp-interpreter
1777 (org-element-property :value clock
) nil
)
1778 (let ((duration (org-element-property :duration clock
)))
1783 (org-split-string duration
":")))))))
1788 (defun org-element-comment-parser (limit affiliated
)
1791 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1792 the buffer position at the beginning of the first affiliated
1793 keyword and CDR is a plist of affiliated keywords along with
1796 Return a list whose CAR is `comment' and CDR is a plist
1797 containing `:begin', `:end', `:value', `:post-blank',
1798 `:post-affiliated' keywords.
1800 Assume point is at comment beginning."
1802 (let* ((begin (car affiliated
))
1803 (post-affiliated (point))
1804 (value (prog2 (looking-at "[ \t]*# ?")
1805 (buffer-substring-no-properties
1806 (match-end 0) (line-end-position))
1809 ;; Get comments ending.
1811 (while (and (< (point) limit
) (looking-at "[ \t]*#\\( \\|$\\)"))
1812 ;; Accumulate lines without leading hash and first
1817 (buffer-substring-no-properties
1818 (match-end 0) (line-end-position))))
1821 (end (progn (goto-char com-end
)
1822 (skip-chars-forward " \r\t\n" limit
)
1823 (if (eobp) (point) (line-beginning-position)))))
1829 :post-blank
(count-lines com-end end
)
1830 :post-affiliated post-affiliated
)
1831 (cdr affiliated
))))))
1833 (defun org-element-comment-interpreter (comment _
)
1834 "Interpret COMMENT element as Org syntax.
1836 (replace-regexp-in-string "^" "# " (org-element-property :value comment
)))
1841 (defun org-element-comment-block-parser (limit affiliated
)
1842 "Parse an export block.
1844 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1845 the buffer position at the beginning of the first affiliated
1846 keyword and CDR is a plist of affiliated keywords along with
1849 Return a list whose CAR is `comment-block' and CDR is a plist
1850 containing `:begin', `:end', `:value', `:post-blank' and
1851 `:post-affiliated' keywords.
1853 Assume point is at comment block beginning."
1854 (let ((case-fold-search t
))
1855 (if (not (save-excursion
1856 (re-search-forward "^[ \t]*#\\+END_COMMENT[ \t]*$" limit t
)))
1857 ;; Incomplete block: parse it as a paragraph.
1858 (org-element-paragraph-parser limit affiliated
)
1859 (let ((contents-end (match-beginning 0)))
1861 (let* ((begin (car affiliated
))
1862 (post-affiliated (point))
1863 (contents-begin (progn (forward-line) (point)))
1864 (pos-before-blank (progn (goto-char contents-end
)
1867 (end (progn (skip-chars-forward " \r\t\n" limit
)
1868 (if (eobp) (point) (line-beginning-position))))
1869 (value (buffer-substring-no-properties
1870 contents-begin contents-end
)))
1871 (list 'comment-block
1876 :post-blank
(count-lines pos-before-blank end
)
1877 :post-affiliated post-affiliated
)
1878 (cdr affiliated
)))))))))
1880 (defun org-element-comment-block-interpreter (comment-block _
)
1881 "Interpret COMMENT-BLOCK element as Org syntax."
1882 (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
1883 (org-element-normalize-string
1884 (org-remove-indentation
1885 (org-element-property :value comment-block
)))))
1890 (defun org-element-diary-sexp-parser (limit affiliated
)
1891 "Parse a diary sexp.
1893 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1894 the buffer position at the beginning of the first affiliated
1895 keyword and CDR is a plist of affiliated keywords along with
1898 Return a list whose CAR is `diary-sexp' and CDR is a plist
1899 containing `:begin', `:end', `:value', `:post-blank' and
1900 `:post-affiliated' keywords."
1902 (let ((begin (car affiliated
))
1903 (post-affiliated (point))
1904 (value (progn (looking-at "\\(%%(.*\\)[ \t]*$")
1905 (match-string-no-properties 1)))
1906 (pos-before-blank (progn (forward-line) (point)))
1907 (end (progn (skip-chars-forward " \r\t\n" limit
)
1908 (if (eobp) (point) (line-beginning-position)))))
1914 :post-blank
(count-lines pos-before-blank end
)
1915 :post-affiliated post-affiliated
)
1916 (cdr affiliated
))))))
1918 (defun org-element-diary-sexp-interpreter (diary-sexp _
)
1919 "Interpret DIARY-SEXP as Org syntax."
1920 (org-element-property :value diary-sexp
))
1925 (defun org-element-example-block-parser (limit affiliated
)
1926 "Parse an example block.
1928 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1929 the buffer position at the beginning of the first affiliated
1930 keyword and CDR is a plist of affiliated keywords along with
1933 Return a list whose CAR is `example-block' and CDR is a plist
1934 containing `:begin', `:end', `:number-lines', `:preserve-indent',
1935 `:retain-labels', `:use-labels', `:label-fmt', `:switches',
1936 `:value', `:post-blank' and `:post-affiliated' keywords."
1937 (let ((case-fold-search t
))
1938 (if (not (save-excursion
1939 (re-search-forward "^[ \t]*#\\+END_EXAMPLE[ \t]*$" limit t
)))
1940 ;; Incomplete block: parse it as a paragraph.
1941 (org-element-paragraph-parser limit affiliated
)
1942 (let ((contents-end (match-beginning 0)))
1946 (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
1947 (match-string-no-properties 1)))
1948 ;; Switches analysis.
1951 (string-match "\\([-+]\\)n\\(?: *\\([0-9]+\\)\\)?\\>"
1954 (if (equal (match-string 1 switches
) "-")
1957 (if (not (match-end 2)) 0
1958 ;; Subtract 1 to give number of lines before
1960 (1- (string-to-number (match-string 2 switches
)))))))
1962 (and switches
(string-match "-i\\>" switches
)))
1963 ;; Should labels be retained in (or stripped from) example
1967 (not (string-match "-r\\>" switches
))
1968 (and number-lines
(string-match "-k\\>" switches
))))
1969 ;; What should code-references use - labels or
1974 (not (string-match "-k\\>" switches
)))))
1977 (string-match "-l +\"\\([^\"\n]+\\)\"" switches
)
1978 (match-string 1 switches
)))
1979 ;; Standard block parsing.
1980 (begin (car affiliated
))
1981 (post-affiliated (point))
1982 (contents-begin (line-beginning-position 2))
1983 (value (org-unescape-code-in-string
1984 (buffer-substring-no-properties
1985 contents-begin contents-end
)))
1986 (pos-before-blank (progn (goto-char contents-end
)
1989 (end (progn (skip-chars-forward " \r\t\n" limit
)
1990 (if (eobp) (point) (line-beginning-position)))))
1991 (list 'example-block
1997 :number-lines number-lines
1998 :preserve-indent preserve-indent
1999 :retain-labels retain-labels
2000 :use-labels use-labels
2001 :label-fmt label-fmt
2002 :post-blank
(count-lines pos-before-blank end
)
2003 :post-affiliated post-affiliated
)
2004 (cdr affiliated
)))))))))
2006 (defun org-element-example-block-interpreter (example-block _
)
2007 "Interpret EXAMPLE-BLOCK element as Org syntax."
2008 (let ((switches (org-element-property :switches example-block
))
2009 (value (org-element-property :value example-block
)))
2010 (concat "#+BEGIN_EXAMPLE" (and switches
(concat " " switches
)) "\n"
2011 (org-element-normalize-string
2012 (org-escape-code-in-string
2013 (if (or org-src-preserve-indentation
2014 (org-element-property :preserve-indent example-block
))
2016 (org-remove-indentation value
))))
2022 (defun org-element-export-block-parser (limit affiliated
)
2023 "Parse an export block.
2025 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2026 the buffer position at the beginning of the first affiliated
2027 keyword and CDR is a plist of affiliated keywords along with
2030 Return a list whose CAR is `export-block' and CDR is a plist
2031 containing `:begin', `:end', `:type', `:value', `:post-blank' and
2032 `:post-affiliated' keywords.
2034 Assume point is at export-block beginning."
2035 (let* ((case-fold-search t
))
2036 (if (not (save-excursion
2037 (re-search-forward "^[ \t]*#\\+END_EXPORT[ \t]*$" limit t
)))
2038 ;; Incomplete block: parse it as a paragraph.
2039 (org-element-paragraph-parser limit affiliated
)
2041 (let* ((contents-end (match-beginning 0))
2045 "[ \t]*#\\+BEGIN_EXPORT\\(?:[ \t]+\\(\\S-+\\)\\)?[ \t]*$")
2046 (match-string-no-properties 1)))
2047 (begin (car affiliated
))
2048 (post-affiliated (point))
2049 (contents-begin (progn (forward-line) (point)))
2050 (pos-before-blank (progn (goto-char contents-end
)
2053 (end (progn (skip-chars-forward " \r\t\n" limit
)
2054 (if (eobp) (point) (line-beginning-position))))
2055 (value (org-unescape-code-in-string
2056 (buffer-substring-no-properties contents-begin
2060 (list :type
(and backend
(upcase backend
))
2064 :post-blank
(count-lines pos-before-blank end
)
2065 :post-affiliated post-affiliated
)
2066 (cdr affiliated
))))))))
2068 (defun org-element-export-block-interpreter (export-block _
)
2069 "Interpret EXPORT-BLOCK element as Org syntax."
2070 (format "#+BEGIN_EXPORT %s\n%s#+END_EXPORT"
2071 (org-element-property :type export-block
)
2072 (org-element-property :value export-block
)))
2077 (defun org-element-fixed-width-parser (limit affiliated
)
2078 "Parse a fixed-width section.
2080 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2081 the buffer position at the beginning of the first affiliated
2082 keyword and CDR is a plist of affiliated keywords along with
2085 Return a list whose CAR is `fixed-width' and CDR is a plist
2086 containing `:begin', `:end', `:value', `:post-blank' and
2087 `:post-affiliated' keywords.
2089 Assume point is at the beginning of the fixed-width area."
2091 (let* ((begin (car affiliated
))
2092 (post-affiliated (point))
2096 (while (and (< (point) limit
)
2097 (looking-at "[ \t]*:\\( \\|$\\)"))
2098 ;; Accumulate text without starting colons.
2101 (buffer-substring-no-properties
2102 (match-end 0) (point-at-eol))
2106 (end (progn (skip-chars-forward " \r\t\n" limit
)
2107 (if (eobp) (point) (line-beginning-position)))))
2113 :post-blank
(count-lines end-area end
)
2114 :post-affiliated post-affiliated
)
2115 (cdr affiliated
))))))
2117 (defun org-element-fixed-width-interpreter (fixed-width _
)
2118 "Interpret FIXED-WIDTH element as Org syntax."
2119 (let ((value (org-element-property :value fixed-width
)))
2121 (replace-regexp-in-string
2123 (if (string-match "\n\\'" value
) (substring value
0 -
1) value
)))))
2126 ;;;; Horizontal Rule
2128 (defun org-element-horizontal-rule-parser (limit affiliated
)
2129 "Parse an horizontal rule.
2131 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2132 the buffer position at the beginning of the first affiliated
2133 keyword and CDR is a plist of affiliated keywords along with
2136 Return a list whose CAR is `horizontal-rule' and CDR is a plist
2137 containing `:begin', `:end', `:post-blank' and `:post-affiliated'
2140 (let ((begin (car affiliated
))
2141 (post-affiliated (point))
2142 (post-hr (progn (forward-line) (point)))
2143 (end (progn (skip-chars-forward " \r\t\n" limit
)
2144 (if (eobp) (point) (line-beginning-position)))))
2145 (list 'horizontal-rule
2149 :post-blank
(count-lines post-hr end
)
2150 :post-affiliated post-affiliated
)
2151 (cdr affiliated
))))))
2153 (defun org-element-horizontal-rule-interpreter (&rest _
)
2154 "Interpret HORIZONTAL-RULE element as Org syntax."
2160 (defun org-element-keyword-parser (limit affiliated
)
2161 "Parse a keyword at point.
2163 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2164 the buffer position at the beginning of the first affiliated
2165 keyword and CDR is a plist of affiliated keywords along with
2168 Return a list whose CAR is `keyword' and CDR is a plist
2169 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2170 `:post-affiliated' keywords."
2172 ;; An orphaned affiliated keyword is considered as a regular
2173 ;; keyword. In this case AFFILIATED is nil, so we take care of
2174 ;; this corner case.
2175 (let ((begin (or (car affiliated
) (point)))
2176 (post-affiliated (point))
2177 (key (progn (looking-at "[ \t]*#\\+\\(\\S-+*\\):")
2178 (upcase (match-string-no-properties 1))))
2179 (value (org-trim (buffer-substring-no-properties
2180 (match-end 0) (point-at-eol))))
2181 (pos-before-blank (progn (forward-line) (point)))
2182 (end (progn (skip-chars-forward " \r\t\n" limit
)
2183 (if (eobp) (point) (line-beginning-position)))))
2190 :post-blank
(count-lines pos-before-blank end
)
2191 :post-affiliated post-affiliated
)
2192 (cdr affiliated
))))))
2194 (defun org-element-keyword-interpreter (keyword _
)
2195 "Interpret KEYWORD element as Org syntax."
2197 (org-element-property :key keyword
)
2198 (org-element-property :value keyword
)))
2201 ;;;; Latex Environment
2203 (defconst org-element--latex-begin-environment
2204 "^[ \t]*\\\\begin{\\([A-Za-z0-9*]+\\)}"
2205 "Regexp matching the beginning of a LaTeX environment.
2206 The environment is captured by the first group.
2208 See also `org-element--latex-end-environment'.")
2210 (defconst org-element--latex-end-environment
2211 "\\\\end{%s}[ \t]*$"
2212 "Format string matching the ending of a LaTeX environment.
2213 See also `org-element--latex-begin-environment'.")
2215 (defun org-element-latex-environment-parser (limit affiliated
)
2216 "Parse a LaTeX environment.
2218 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2219 the buffer position at the beginning of the first affiliated
2220 keyword and CDR is a plist of affiliated keywords along with
2223 Return a list whose CAR is `latex-environment' and CDR is a plist
2224 containing `:begin', `:end', `:value', `:post-blank' and
2225 `:post-affiliated' keywords.
2227 Assume point is at the beginning of the latex environment."
2229 (let ((case-fold-search t
)
2230 (code-begin (point)))
2231 (looking-at org-element--latex-begin-environment
)
2232 (if (not (re-search-forward (format org-element--latex-end-environment
2233 (regexp-quote (match-string 1)))
2235 ;; Incomplete latex environment: parse it as a paragraph.
2236 (org-element-paragraph-parser limit affiliated
)
2237 (let* ((code-end (progn (forward-line) (point)))
2238 (begin (car affiliated
))
2239 (value (buffer-substring-no-properties code-begin code-end
))
2240 (end (progn (skip-chars-forward " \r\t\n" limit
)
2241 (if (eobp) (point) (line-beginning-position)))))
2242 (list 'latex-environment
2247 :post-blank
(count-lines code-end end
)
2248 :post-affiliated code-begin
)
2249 (cdr affiliated
))))))))
2251 (defun org-element-latex-environment-interpreter (latex-environment _
)
2252 "Interpret LATEX-ENVIRONMENT element as Org syntax."
2253 (org-element-property :value latex-environment
))
2258 (defun org-element-node-property-parser (limit)
2259 "Parse a node-property at point.
2261 LIMIT bounds the search.
2263 Return a list whose CAR is `node-property' and CDR is a plist
2264 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2265 `:post-affiliated' keywords."
2266 (looking-at org-property-re
)
2267 (let ((case-fold-search t
)
2269 (key (match-string-no-properties 2))
2270 (value (match-string-no-properties 3))
2271 (end (save-excursion
2273 (if (re-search-forward org-property-re limit t
)
2274 (line-beginning-position)
2276 (list 'node-property
2282 :post-affiliated begin
))))
2284 (defun org-element-node-property-interpreter (node-property _
)
2285 "Interpret NODE-PROPERTY element as Org syntax."
2286 (format org-property-format
2287 (format ":%s:" (org-element-property :key node-property
))
2288 (or (org-element-property :value node-property
) "")))
2293 (defun org-element-paragraph-parser (limit affiliated
)
2296 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2297 the buffer position at the beginning of the first affiliated
2298 keyword and CDR is a plist of affiliated keywords along with
2301 Return a list whose CAR is `paragraph' and CDR is a plist
2302 containing `:begin', `:end', `:contents-begin' and
2303 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
2305 Assume point is at the beginning of the paragraph."
2307 (let* ((begin (car affiliated
))
2308 (contents-begin (point))
2310 (let ((case-fold-search t
))
2312 ;; A matching `org-element-paragraph-separate' is not
2313 ;; necessarily the end of the paragraph. In particular,
2314 ;; drawers, blocks or LaTeX environments opening lines
2315 ;; must be closed. Moreover keywords with a secondary
2316 ;; value must belong to "dual keywords".
2319 ((not (and (re-search-forward
2320 org-element-paragraph-separate limit
'move
)
2321 (progn (beginning-of-line) t
))))
2322 ((looking-at org-drawer-regexp
)
2324 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t
)))
2325 ((looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
2328 (format "^[ \t]*#\\+END_%s[ \t]*$"
2329 (regexp-quote (match-string 1)))
2331 ((looking-at org-element--latex-begin-environment
)
2334 (format org-element--latex-end-environment
2335 (regexp-quote (match-string 1)))
2337 ((looking-at "[ \t]*#\\+\\(\\S-+\\)\\[.*\\]:")
2338 (member-ignore-case (match-string 1)
2339 org-element-dual-keywords
))
2340 ;; Everything else is unambiguous.
2343 (if (= (point) limit
) limit
2344 (goto-char (line-beginning-position)))))
2345 (contents-end (save-excursion
2346 (skip-chars-backward " \r\t\n" contents-begin
)
2347 (line-beginning-position 2)))
2348 (end (progn (skip-chars-forward " \r\t\n" limit
)
2349 (if (eobp) (point) (line-beginning-position)))))
2354 :contents-begin contents-begin
2355 :contents-end contents-end
2356 :post-blank
(count-lines before-blank end
)
2357 :post-affiliated contents-begin
)
2358 (cdr affiliated
))))))
2360 (defun org-element-paragraph-interpreter (_ contents
)
2361 "Interpret paragraph element as Org syntax.
2362 CONTENTS is the contents of the element."
2368 (defun org-element-planning-parser (limit)
2371 LIMIT bounds the search.
2373 Return a list whose CAR is `planning' and CDR is a plist
2374 containing `:closed', `:deadline', `:scheduled', `:begin',
2375 `:end', `:post-blank' and `:post-affiliated' keywords."
2377 (let* ((case-fold-search nil
)
2379 (post-blank (let ((before-blank (progn (forward-line) (point))))
2380 (skip-chars-forward " \r\t\n" limit
)
2381 (skip-chars-backward " \t")
2382 (unless (bolp) (end-of-line))
2383 (count-lines before-blank
(point))))
2385 closed deadline scheduled
)
2387 (while (re-search-forward org-keyword-time-not-clock-regexp end t
)
2388 (goto-char (match-end 1))
2389 (skip-chars-forward " \t" end
)
2390 (let ((keyword (match-string 1))
2391 (time (org-element-timestamp-parser)))
2392 (cond ((equal keyword org-closed-string
) (setq closed time
))
2393 ((equal keyword org-deadline-string
) (setq deadline time
))
2394 (t (setq scheduled time
)))))
2396 (list :closed closed
2398 :scheduled scheduled
2401 :post-blank post-blank
2402 :post-affiliated begin
)))))
2404 (defun org-element-planning-interpreter (planning _
)
2405 "Interpret PLANNING element as Org syntax."
2409 (list (let ((deadline (org-element-property :deadline planning
)))
2411 (concat org-deadline-string
" "
2412 (org-element-timestamp-interpreter deadline nil
))))
2413 (let ((scheduled (org-element-property :scheduled planning
)))
2415 (concat org-scheduled-string
" "
2416 (org-element-timestamp-interpreter scheduled nil
))))
2417 (let ((closed (org-element-property :closed planning
)))
2419 (concat org-closed-string
" "
2420 (org-element-timestamp-interpreter closed nil
))))))
2426 (defun org-element-src-block-parser (limit affiliated
)
2429 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2430 the buffer position at the beginning of the first affiliated
2431 keyword and CDR is a plist of affiliated keywords along with
2434 Return a list whose CAR is `src-block' and CDR is a plist
2435 containing `:language', `:switches', `:parameters', `:begin',
2436 `:end', `:number-lines', `:retain-labels', `:use-labels',
2437 `:label-fmt', `:preserve-indent', `:value', `:post-blank' and
2438 `:post-affiliated' keywords.
2440 Assume point is at the beginning of the block."
2441 (let ((case-fold-search t
))
2442 (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC[ \t]*$"
2444 ;; Incomplete block: parse it as a paragraph.
2445 (org-element-paragraph-parser limit affiliated
)
2446 (let ((contents-end (match-beginning 0)))
2448 (let* ((begin (car affiliated
))
2449 (post-affiliated (point))
2450 ;; Get language as a string.
2454 "^[ \t]*#\\+BEGIN_SRC\
2455 \\(?: +\\(\\S-+\\)\\)?\
2456 \\(\\(?: +\\(?:-\\(?:l \".+\"\\|[ikr]\\)\\|[-+]n\\(?: *[0-9]+\\)?\\)\\)+\\)?\
2458 (match-string-no-properties 1)))
2460 (switches (match-string-no-properties 2))
2462 (parameters (match-string-no-properties 3))
2463 ;; Switches analysis.
2466 (string-match "\\([-+]\\)n\\(?: *\\([0-9]+\\)\\)?\\>"
2469 (if (equal (match-string 1 switches
) "-")
2472 (if (not (match-end 2)) 0
2473 ;; Subtract 1 to give number of lines before
2475 (1- (string-to-number (match-string 2 switches
)))))))
2476 (preserve-indent (and switches
2477 (string-match "-i\\>" switches
)))
2480 (string-match "-l +\"\\([^\"\n]+\\)\"" switches
)
2481 (match-string 1 switches
)))
2482 ;; Should labels be retained in (or stripped from)
2486 (not (string-match "-r\\>" switches
))
2487 (and number-lines
(string-match "-k\\>" switches
))))
2488 ;; What should code-references use - labels or
2493 (not (string-match "-k\\>" switches
)))))
2495 (value (org-unescape-code-in-string
2496 (buffer-substring-no-properties
2497 (line-beginning-position 2) contents-end
)))
2498 (pos-before-blank (progn (goto-char contents-end
)
2501 ;; Get position after ending blank lines.
2502 (end (progn (skip-chars-forward " \r\t\n" limit
)
2503 (if (eobp) (point) (line-beginning-position)))))
2506 (list :language language
2507 :switches
(and (org-string-nw-p switches
)
2508 (org-trim switches
))
2509 :parameters
(and (org-string-nw-p parameters
)
2510 (org-trim parameters
))
2513 :number-lines number-lines
2514 :preserve-indent preserve-indent
2515 :retain-labels retain-labels
2516 :use-labels use-labels
2517 :label-fmt label-fmt
2519 :post-blank
(count-lines pos-before-blank end
)
2520 :post-affiliated post-affiliated
)
2521 (cdr affiliated
)))))))))
2523 (defun org-element-src-block-interpreter (src-block _
)
2524 "Interpret SRC-BLOCK element as Org syntax."
2525 (let ((lang (org-element-property :language src-block
))
2526 (switches (org-element-property :switches src-block
))
2527 (params (org-element-property :parameters src-block
))
2529 (let ((val (org-element-property :value src-block
)))
2531 ((or org-src-preserve-indentation
2532 (org-element-property :preserve-indent src-block
))
2534 ((zerop org-edit-src-content-indentation
)
2535 (org-remove-indentation val
))
2537 (let ((ind (make-string org-edit-src-content-indentation ?\s
)))
2538 (replace-regexp-in-string
2539 "^" ind
(org-remove-indentation val
))))))))
2540 (concat (format "#+BEGIN_SRC%s\n"
2541 (concat (and lang
(concat " " lang
))
2542 (and switches
(concat " " switches
))
2543 (and params
(concat " " params
))))
2544 (org-element-normalize-string (org-escape-code-in-string value
))
2550 (defun org-element-table-parser (limit affiliated
)
2551 "Parse a table at point.
2553 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2554 the buffer position at the beginning of the first affiliated
2555 keyword and CDR is a plist of affiliated keywords along with
2558 Return a list whose CAR is `table' and CDR is a plist containing
2559 `:begin', `:end', `:tblfm', `:type', `:contents-begin',
2560 `:contents-end', `:value', `:post-blank' and `:post-affiliated'
2563 Assume point is at the beginning of the table."
2565 (let* ((case-fold-search t
)
2566 (table-begin (point))
2567 (type (if (looking-at "[ \t]*|") 'org
'table.el
))
2568 (end-re (format "^[ \t]*\\($\\|[^| \t%s]\\)"
2569 (if (eq type
'org
) "" "+")))
2570 (begin (car affiliated
))
2572 (if (re-search-forward end-re limit
'move
)
2573 (goto-char (match-beginning 0))
2576 (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
2577 (push (match-string-no-properties 1) acc
)
2580 (pos-before-blank (point))
2581 (end (progn (skip-chars-forward " \r\t\n" limit
)
2582 (if (eobp) (point) (line-beginning-position)))))
2589 ;; Only `org' tables have contents. `table.el' tables
2590 ;; use a `:value' property to store raw table as
2592 :contents-begin
(and (eq type
'org
) table-begin
)
2593 :contents-end
(and (eq type
'org
) table-end
)
2594 :value
(and (eq type
'table.el
)
2595 (buffer-substring-no-properties
2596 table-begin table-end
))
2597 :post-blank
(count-lines pos-before-blank end
)
2598 :post-affiliated table-begin
)
2599 (cdr affiliated
))))))
2601 (defun org-element-table-interpreter (table contents
)
2602 "Interpret TABLE element as Org syntax.
2603 CONTENTS is a string, if table's type is `org', or nil."
2604 (if (eq (org-element-property :type table
) 'table.el
)
2605 (org-remove-indentation (org-element-property :value table
))
2606 (concat (with-temp-buffer (insert contents
)
2609 (mapconcat (lambda (fm) (concat "#+TBLFM: " fm
))
2610 (reverse (org-element-property :tblfm table
))
2616 (defun org-element-table-row-parser (_)
2617 "Parse table row at point.
2619 Return a list whose CAR is `table-row' and CDR is a plist
2620 containing `:begin', `:end', `:contents-begin', `:contents-end',
2621 `:type', `:post-blank' and `:post-affiliated' keywords."
2623 (let* ((type (if (looking-at "^[ \t]*|-") 'rule
'standard
))
2625 ;; A table rule has no contents. In that case, ensure
2626 ;; CONTENTS-BEGIN matches CONTENTS-END.
2627 (contents-begin (and (eq type
'standard
) (search-forward "|")))
2628 (contents-end (and (eq type
'standard
)
2631 (skip-chars-backward " \t")
2633 (end (line-beginning-position 2)))
2638 :contents-begin contents-begin
2639 :contents-end contents-end
2641 :post-affiliated begin
)))))
2643 (defun org-element-table-row-interpreter (table-row contents
)
2644 "Interpret TABLE-ROW element as Org syntax.
2645 CONTENTS is the contents of the table row."
2646 (if (eq (org-element-property :type table-row
) 'rule
) "|-"
2647 (concat "|" contents
)))
2652 (defun org-element-verse-block-parser (limit affiliated
)
2653 "Parse a verse block.
2655 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2656 the buffer position at the beginning of the first affiliated
2657 keyword and CDR is a plist of affiliated keywords along with
2660 Return a list whose CAR is `verse-block' and CDR is a plist
2661 containing `:begin', `:end', `:contents-begin', `:contents-end',
2662 `:post-blank' and `:post-affiliated' keywords.
2664 Assume point is at beginning of the block."
2665 (let ((case-fold-search t
))
2666 (if (not (save-excursion
2667 (re-search-forward "^[ \t]*#\\+END_VERSE[ \t]*$" limit t
)))
2668 ;; Incomplete block: parse it as a paragraph.
2669 (org-element-paragraph-parser limit affiliated
)
2670 (let ((contents-end (match-beginning 0)))
2672 (let* ((begin (car affiliated
))
2673 (post-affiliated (point))
2674 (contents-begin (progn (forward-line) (point)))
2675 (pos-before-blank (progn (goto-char contents-end
)
2678 (end (progn (skip-chars-forward " \r\t\n" limit
)
2679 (if (eobp) (point) (line-beginning-position)))))
2684 :contents-begin contents-begin
2685 :contents-end contents-end
2686 :post-blank
(count-lines pos-before-blank end
)
2687 :post-affiliated post-affiliated
)
2688 (cdr affiliated
)))))))))
2690 (defun org-element-verse-block-interpreter (_ contents
)
2691 "Interpret verse-block element as Org syntax.
2692 CONTENTS is verse block contents."
2693 (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents
))
2699 ;; Unlike to elements, raw text can be found between objects. Hence,
2700 ;; `org-element--object-lex' is provided to find the next object in
2703 ;; Some object types (e.g., `italic') are recursive. Restrictions on
2704 ;; object types they can contain will be specified in
2705 ;; `org-element-object-restrictions'.
2707 ;; Creating a new type of object requires to alter
2708 ;; `org-element--object-regexp' and `org-element--object-lex', add the
2709 ;; new type in `org-element-all-objects', and possibly add
2710 ;; restrictions in `org-element-object-restrictions'.
2714 (defun org-element-bold-parser ()
2715 "Parse bold object at point, if any.
2717 When at a bold object, return a list whose car is `bold' and cdr
2718 is a plist with `:begin', `:end', `:contents-begin' and
2719 `:contents-end' and `:post-blank' keywords. Otherwise, return
2722 Assume point is at the first star marker."
2724 (unless (bolp) (backward-char 1))
2725 (when (looking-at org-emph-re
)
2726 (let ((begin (match-beginning 2))
2727 (contents-begin (match-beginning 4))
2728 (contents-end (match-end 4))
2729 (post-blank (progn (goto-char (match-end 2))
2730 (skip-chars-forward " \t")))
2735 :contents-begin contents-begin
2736 :contents-end contents-end
2737 :post-blank post-blank
))))))
2739 (defun org-element-bold-interpreter (_ contents
)
2740 "Interpret bold object as Org syntax.
2741 CONTENTS is the contents of the object."
2742 (format "*%s*" contents
))
2747 (defun org-element-code-parser ()
2748 "Parse code object at point, if any.
2750 When at a code object, return a list whose car is `code' and cdr
2751 is a plist with `:value', `:begin', `:end' and `:post-blank'
2752 keywords. Otherwise, return nil.
2754 Assume point is at the first tilde marker."
2756 (unless (bolp) (backward-char 1))
2757 (when (looking-at org-verbatim-re
)
2758 (let ((begin (match-beginning 2))
2759 (value (match-string-no-properties 4))
2760 (post-blank (progn (goto-char (match-end 2))
2761 (skip-chars-forward " \t")))
2767 :post-blank post-blank
))))))
2769 (defun org-element-code-interpreter (code _
)
2770 "Interpret CODE object as Org syntax."
2771 (format "~%s~" (org-element-property :value code
)))
2776 (defun org-element-entity-parser ()
2777 "Parse entity at point, if any.
2779 When at an entity, return a list whose car is `entity' and cdr
2780 a plist with `:begin', `:end', `:latex', `:latex-math-p',
2781 `:html', `:latin1', `:utf-8', `:ascii', `:use-brackets-p' and
2782 `:post-blank' as keywords. Otherwise, return nil.
2784 Assume point is at the beginning of the entity."
2786 (when (looking-at "\\\\\\(?:\\(?1:_ +\\)\\|\\(?1:there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\(?2:$\\|{}\\|[^[:alpha:]]\\)\\)")
2788 (let* ((value (or (org-entity-get (match-string 1))
2789 (throw 'no-object nil
)))
2790 (begin (match-beginning 0))
2791 (bracketsp (string= (match-string 2) "{}"))
2792 (post-blank (progn (goto-char (match-end 1))
2793 (when bracketsp
(forward-char 2))
2794 (skip-chars-forward " \t")))
2797 (list :name
(car value
)
2798 :latex
(nth 1 value
)
2799 :latex-math-p
(nth 2 value
)
2801 :ascii
(nth 4 value
)
2802 :latin1
(nth 5 value
)
2803 :utf-8
(nth 6 value
)
2806 :use-brackets-p bracketsp
2807 :post-blank post-blank
)))))))
2809 (defun org-element-entity-interpreter (entity _
)
2810 "Interpret ENTITY object as Org syntax."
2812 (org-element-property :name entity
)
2813 (when (org-element-property :use-brackets-p entity
) "{}")))
2818 (defun org-element-export-snippet-parser ()
2819 "Parse export snippet at point.
2821 When at an export snippet, return a list whose car is
2822 `export-snippet' and cdr a plist with `:begin', `:end',
2823 `:back-end', `:value' and `:post-blank' as keywords. Otherwise,
2826 Assume point is at the beginning of the snippet."
2829 (when (and (looking-at "@@\\([-A-Za-z0-9]+\\):")
2831 (save-match-data (goto-char (match-end 0))
2832 (re-search-forward "@@" nil t
)
2833 (match-beginning 0))))
2834 (let* ((begin (match-beginning 0))
2835 (back-end (match-string-no-properties 1))
2836 (value (buffer-substring-no-properties
2837 (match-end 0) contents-end
))
2838 (post-blank (skip-chars-forward " \t"))
2840 (list 'export-snippet
2841 (list :back-end back-end
2845 :post-blank post-blank
)))))))
2847 (defun org-element-export-snippet-interpreter (export-snippet _
)
2848 "Interpret EXPORT-SNIPPET object as Org syntax."
2850 (org-element-property :back-end export-snippet
)
2851 (org-element-property :value export-snippet
)))
2854 ;;;; Footnote Reference
2856 (defun org-element-footnote-reference-parser ()
2857 "Parse footnote reference at point, if any.
2859 When at a footnote reference, return a list whose car is
2860 `footnote-reference' and cdr a plist with `:label', `:type',
2861 `:begin', `:end', `:content-begin', `:contents-end' and
2862 `:post-blank' as keywords. Otherwise, return nil."
2863 (when (looking-at org-footnote-re
)
2864 (let ((closing (with-syntax-table org-element--pair-square-table
2865 (ignore-errors (scan-lists (point) 1 0)))))
2868 (let* ((begin (point))
2869 (label (match-string-no-properties 1))
2870 (inner-begin (match-end 0))
2871 (inner-end (1- closing
))
2872 (type (if (match-end 2) 'inline
'standard
))
2873 (post-blank (progn (goto-char closing
)
2874 (skip-chars-forward " \t")))
2876 (list 'footnote-reference
2881 :contents-begin
(and (eq type
'inline
) inner-begin
)
2882 :contents-end
(and (eq type
'inline
) inner-end
)
2883 :post-blank post-blank
))))))))
2885 (defun org-element-footnote-reference-interpreter (footnote-reference contents
)
2886 "Interpret FOOTNOTE-REFERENCE object as Org syntax.
2887 CONTENTS is its definition, when inline, or nil."
2889 (or (org-element-property :label footnote-reference
) "")
2890 (if contents
(concat ":" contents
) "")))
2893 ;;;; Inline Babel Call
2895 (defun org-element-inline-babel-call-parser ()
2896 "Parse inline babel call at point, if any.
2898 When at an inline babel call, return a list whose car is
2899 `inline-babel-call' and cdr a plist with `:call',
2900 `:inside-header', `:arguments', `:end-header', `:begin', `:end',
2901 `:value' and `:post-blank' as keywords. Otherwise, return nil.
2903 Assume point is at the beginning of the babel call."
2906 (when (let ((case-fold-search nil
))
2907 (looking-at "\\<call_\\([^ \t\n[(]+\\)[([]"))
2908 (goto-char (match-end 1))
2909 (let* ((begin (match-beginning 0))
2910 (call (match-string-no-properties 1))
2912 (let ((p (org-element--parse-paired-brackets ?\
[)))
2913 (and (org-string-nw-p p
)
2914 (replace-regexp-in-string "\n[ \t]*" " " (org-trim p
)))))
2915 (arguments (org-string-nw-p
2916 (or (org-element--parse-paired-brackets ?\
()
2917 ;; Parenthesis are mandatory.
2918 (throw :no-object nil
))))
2920 (let ((p (org-element--parse-paired-brackets ?\
[)))
2921 (and (org-string-nw-p p
)
2922 (replace-regexp-in-string "\n[ \t]*" " " (org-trim p
)))))
2923 (value (buffer-substring-no-properties begin
(point)))
2924 (post-blank (skip-chars-forward " \t"))
2926 (list 'inline-babel-call
2928 :inside-header inside-header
2929 :arguments arguments
2930 :end-header end-header
2934 :post-blank post-blank
)))))))
2936 (defun org-element-inline-babel-call-interpreter (inline-babel-call _
)
2937 "Interpret INLINE-BABEL-CALL object as Org syntax."
2939 (org-element-property :call inline-babel-call
)
2940 (let ((h (org-element-property :inside-header inline-babel-call
)))
2941 (and h
(format "[%s]" h
)))
2942 "(" (org-element-property :arguments inline-babel-call
) ")"
2943 (let ((h (org-element-property :end-header inline-babel-call
)))
2944 (and h
(format "[%s]" h
)))))
2947 ;;;; Inline Src Block
2949 (defun org-element-inline-src-block-parser ()
2950 "Parse inline source block at point, if any.
2952 When at an inline source block, return a list whose car is
2953 `inline-src-block' and cdr a plist with `:begin', `:end',
2954 `:language', `:value', `:parameters' and `:post-blank' as
2955 keywords. Otherwise, return nil.
2957 Assume point is at the beginning of the inline src block."
2960 (when (let ((case-fold-search nil
))
2961 (looking-at "\\<src_\\([^ \t\n[{]+\\)[{[]"))
2962 (goto-char (match-end 1))
2963 (let ((begin (match-beginning 0))
2964 (language (match-string-no-properties 1))
2966 (let ((p (org-element--parse-paired-brackets ?\
[)))
2967 (and (org-string-nw-p p
)
2968 (replace-regexp-in-string "\n[ \t]*" " " (org-trim p
)))))
2969 (value (or (org-element--parse-paired-brackets ?\
{)
2970 (throw :no-object nil
)))
2971 (post-blank (skip-chars-forward " \t")))
2972 (list 'inline-src-block
2973 (list :language language
2975 :parameters parameters
2978 :post-blank post-blank
)))))))
2980 (defun org-element-inline-src-block-interpreter (inline-src-block _
)
2981 "Interpret INLINE-SRC-BLOCK object as Org syntax."
2982 (let ((language (org-element-property :language inline-src-block
))
2983 (arguments (org-element-property :parameters inline-src-block
))
2984 (body (org-element-property :value inline-src-block
)))
2985 (format "src_%s%s{%s}"
2987 (if arguments
(format "[%s]" arguments
) "")
2992 (defun org-element-italic-parser ()
2993 "Parse italic object at point, if any.
2995 When at an italic object, return a list whose car is `italic' and
2996 cdr is a plist with `:begin', `:end', `:contents-begin' and
2997 `:contents-end' and `:post-blank' keywords. Otherwise, return
3000 Assume point is at the first slash marker."
3002 (unless (bolp) (backward-char 1))
3003 (when (looking-at org-emph-re
)
3004 (let ((begin (match-beginning 2))
3005 (contents-begin (match-beginning 4))
3006 (contents-end (match-end 4))
3007 (post-blank (progn (goto-char (match-end 2))
3008 (skip-chars-forward " \t")))
3013 :contents-begin contents-begin
3014 :contents-end contents-end
3015 :post-blank post-blank
))))))
3017 (defun org-element-italic-interpreter (_ contents
)
3018 "Interpret italic object as Org syntax.
3019 CONTENTS is the contents of the object."
3020 (format "/%s/" contents
))
3025 (defun org-element-latex-fragment-parser ()
3026 "Parse LaTeX fragment at point, if any.
3028 When at a LaTeX fragment, return a list whose car is
3029 `latex-fragment' and cdr a plist with `:value', `:begin', `:end',
3030 and `:post-blank' as keywords. Otherwise, return nil.
3032 Assume point is at the beginning of the LaTeX fragment."
3035 (let* ((begin (point))
3037 (if (eq (char-after) ?$
)
3038 (if (eq (char-after (1+ (point))) ?$
)
3039 (search-forward "$$" nil t
2)
3040 (and (not (eq (char-before) ?$
))
3041 (search-forward "$" nil t
2)
3042 (not (memq (char-before (match-beginning 0))
3043 '(?\s ?
\t ?
\n ?
, ?.
)))
3044 (looking-at "\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|$\\)")
3046 (pcase (char-after (1+ (point)))
3047 (?\
( (search-forward "\\)" nil t
))
3048 (?\
[ (search-forward "\\]" nil t
))
3051 (and (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\
3052 \\|\\({[^{}\n]*}\\)\\)*")
3054 (post-blank (if (not after-fragment
) (throw 'no-object nil
)
3055 (goto-char after-fragment
)
3056 (skip-chars-forward " \t")))
3058 (list 'latex-fragment
3059 (list :value
(buffer-substring-no-properties begin after-fragment
)
3062 :post-blank post-blank
))))))
3064 (defun org-element-latex-fragment-interpreter (latex-fragment _
)
3065 "Interpret LATEX-FRAGMENT object as Org syntax."
3066 (org-element-property :value latex-fragment
))
3070 (defun org-element-line-break-parser ()
3071 "Parse line break at point, if any.
3073 When at a line break, return a list whose car is `line-break',
3074 and cdr a plist with `:begin', `:end' and `:post-blank' keywords.
3075 Otherwise, return nil.
3077 Assume point is at the beginning of the line break."
3078 (when (and (looking-at-p "\\\\\\\\[ \t]*$")
3079 (not (eq (char-before) ?
\\)))
3081 (list :begin
(point)
3082 :end
(line-beginning-position 2)
3085 (defun org-element-line-break-interpreter (&rest _
)
3086 "Interpret LINE-BREAK object as Org syntax."
3092 (defun org-element-link-parser ()
3093 "Parse link at point, if any.
3095 When at a link, return a list whose car is `link' and cdr a plist
3096 with `:type', `:path', `:format', `:raw-link', `:application',
3097 `:search-option', `:begin', `:end', `:contents-begin',
3098 `:contents-end' and `:post-blank' as keywords. Otherwise, return
3101 Assume point is at the beginning of the link."
3103 (let ((begin (point))
3104 end contents-begin contents-end link-end post-blank path type format
3105 raw-link search-option application
)
3107 ;; Type 1: Text targeted from a radio target.
3108 ((and org-target-link-regexp
3109 (save-excursion (or (bolp) (backward-char))
3110 (looking-at org-target-link-regexp
)))
3112 (setq format
'plain
)
3113 (setq link-end
(match-end 1))
3114 (setq path
(match-string-no-properties 1))
3115 (setq contents-begin
(match-beginning 1))
3116 (setq contents-end
(match-end 1)))
3117 ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
3118 ((looking-at org-bracket-link-regexp
)
3119 (setq format
'bracket
)
3120 (setq contents-begin
(match-beginning 3))
3121 (setq contents-end
(match-end 3))
3122 (setq link-end
(match-end 0))
3123 ;; RAW-LINK is the original link. Expand any
3124 ;; abbreviation in it.
3126 ;; Also treat any newline character and associated
3127 ;; indentation as a single space character. This is not
3128 ;; compatible with RFC 3986, which requires to ignore
3129 ;; them altogether. However, doing so would require
3130 ;; users to encode spaces on the fly when writing links
3131 ;; (e.g., insert [[shell:ls%20*.org]] instead of
3132 ;; [[shell:ls *.org]], which defeats Org's focus on
3134 (setq raw-link
(org-link-expand-abbrev
3135 (replace-regexp-in-string
3136 "[ \t]*\n[ \t]*" " "
3137 (match-string-no-properties 1))))
3138 ;; Determine TYPE of link and set PATH accordingly. According
3139 ;; to RFC 3986, remove whitespaces from URI in external links.
3140 ;; In internal ones, treat indentation as a single space.
3143 ((or (file-name-absolute-p raw-link
)
3144 (string-match "\\`\\.\\.?/" raw-link
))
3146 (setq path raw-link
))
3147 ;; Explicit type (http, irc, bbdb...).
3148 ((string-match org-link-types-re raw-link
)
3149 (setq type
(match-string 1 raw-link
))
3150 (setq path
(substring raw-link
(match-end 0))))
3151 ;; Code-ref type: PATH is the name of the reference.
3152 ((and (string-match-p "\\`(" raw-link
)
3153 (string-match-p ")\\'" raw-link
))
3154 (setq type
"coderef")
3155 (setq path
(substring raw-link
1 -
1)))
3156 ;; Custom-id type: PATH is the name of the custom id.
3157 ((= (string-to-char raw-link
) ?
#)
3158 (setq type
"custom-id")
3159 (setq path
(substring raw-link
1)))
3160 ;; Fuzzy type: Internal link either matches a target, an
3161 ;; headline name or nothing. PATH is the target or
3165 (setq path raw-link
))))
3166 ;; Type 3: Plain link, e.g., http://orgmode.org
3167 ((looking-at org-plain-link-re
)
3168 (setq format
'plain
)
3169 (setq raw-link
(match-string-no-properties 0))
3170 (setq type
(match-string-no-properties 1))
3171 (setq link-end
(match-end 0))
3172 (setq path
(match-string-no-properties 2)))
3173 ;; Type 4: Angular link, e.g., <http://orgmode.org>. Unlike to
3174 ;; bracket links, follow RFC 3986 and remove any extra
3175 ;; whitespace in URI.
3176 ((looking-at org-angle-link-re
)
3177 (setq format
'angle
)
3178 (setq type
(match-string-no-properties 1))
3179 (setq link-end
(match-end 0))
3181 (buffer-substring-no-properties
3182 (match-beginning 1) (match-end 2)))
3183 (setq path
(replace-regexp-in-string
3184 "[ \t]*\n[ \t]*" "" (match-string-no-properties 2))))
3185 (t (throw 'no-object nil
)))
3186 ;; In any case, deduce end point after trailing white space from
3187 ;; LINK-END variable.
3190 (progn (goto-char link-end
) (skip-chars-forward " \t")))
3192 ;; Special "file" type link processing. Extract opening
3193 ;; application and search option, if any. Also normalize URI.
3194 (when (string-match "\\`file\\(?:\\+\\(.+\\)\\)?\\'" type
)
3195 (setq application
(match-string 1 type
) type
"file")
3196 (when (string-match "::\\(.*\\)\\'" path
)
3197 (setq search-option
(match-string 1 path
))
3198 (setq path
(replace-match "" nil nil path
)))
3199 (setq path
(replace-regexp-in-string "\\`///+" "/" path
)))
3200 ;; Translate link, if `org-link-translation-function' is set.
3201 (let ((trans (and (functionp org-link-translation-function
)
3202 (funcall org-link-translation-function type path
))))
3204 (setq type
(car trans
))
3205 (setq path
(cdr trans
))))
3210 :raw-link
(or raw-link path
)
3211 :application application
3212 :search-option search-option
3215 :contents-begin contents-begin
3216 :contents-end contents-end
3217 :post-blank post-blank
)))))
3219 (defun org-element-link-interpreter (link contents
)
3220 "Interpret LINK object as Org syntax.
3221 CONTENTS is the contents of the object, or nil."
3222 (let ((type (org-element-property :type link
))
3223 (path (org-element-property :path link
)))
3224 (if (string= type
"radio") path
3225 (let ((fmt (pcase (org-element-property :format link
)
3226 ;; Links with contents and internal links have to
3227 ;; use bracket syntax. Ignore `:format' in these
3228 ;; cases. This is also the default syntax when the
3229 ;; property is not defined, e.g., when the object
3230 ;; was crafted by the user.
3232 (format "[[%%s][%s]]"
3233 ;; Since this is going to be used as
3234 ;; a format string, escape percent signs
3236 (replace-regexp-in-string "%" "%%" contents
)))
3239 (guard (member type
'("coderef" "custom-id" "fuzzy"))))
3241 ;; Otherwise, just obey to `:format'.
3244 (f (error "Wrong `:format' value: %s" f
)))))
3247 ("coderef" (format "(%s)" path
))
3248 ("custom-id" (concat "#" path
))
3250 (let ((app (org-element-property :application link
))
3251 (opt (org-element-property :search-option link
)))
3252 (concat type
(and app
(concat "+" app
)) ":"
3254 (and opt
(concat "::" opt
)))))
3256 (_ (concat type
":" path
))))))))
3261 (defun org-element-macro-parser ()
3262 "Parse macro at point, if any.
3264 When at a macro, return a list whose car is `macro' and cdr
3265 a plist with `:key', `:args', `:begin', `:end', `:value' and
3266 `:post-blank' as keywords. Otherwise, return nil.
3268 Assume point is at the macro."
3270 (when (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
3271 (let ((begin (point))
3272 (key (downcase (match-string-no-properties 1)))
3273 (value (match-string-no-properties 0))
3274 (post-blank (progn (goto-char (match-end 0))
3275 (skip-chars-forward " \t")))
3277 (args (let ((args (match-string-no-properties 3)))
3278 (and args
(org-macro-extract-arguments args
)))))
3285 :post-blank post-blank
))))))
3287 (defun org-element-macro-interpreter (macro _
)
3288 "Interpret MACRO object as Org syntax."
3289 (org-element-property :value macro
))
3294 (defun org-element-radio-target-parser ()
3295 "Parse radio target at point, if any.
3297 When at a radio target, return a list whose car is `radio-target'
3298 and cdr a plist with `:begin', `:end', `:contents-begin',
3299 `:contents-end', `:value' and `:post-blank' as keywords.
3300 Otherwise, return nil.
3302 Assume point is at the radio target."
3304 (when (looking-at org-radio-target-regexp
)
3305 (let ((begin (point))
3306 (contents-begin (match-beginning 1))
3307 (contents-end (match-end 1))
3308 (value (match-string-no-properties 1))
3309 (post-blank (progn (goto-char (match-end 0))
3310 (skip-chars-forward " \t")))
3315 :contents-begin contents-begin
3316 :contents-end contents-end
3317 :post-blank post-blank
3320 (defun org-element-radio-target-interpreter (_ contents
)
3321 "Interpret target object as Org syntax.
3322 CONTENTS is the contents of the object."
3323 (concat "<<<" contents
">>>"))
3326 ;;;; Statistics Cookie
3328 (defun org-element-statistics-cookie-parser ()
3329 "Parse statistics cookie at point, if any.
3331 When at a statistics cookie, return a list whose car is
3332 `statistics-cookie', and cdr a plist with `:begin', `:end',
3333 `:value' and `:post-blank' keywords. Otherwise, return nil.
3335 Assume point is at the beginning of the statistics-cookie."
3337 (when (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
3338 (let* ((begin (point))
3339 (value (buffer-substring-no-properties
3340 (match-beginning 0) (match-end 0)))
3341 (post-blank (progn (goto-char (match-end 0))
3342 (skip-chars-forward " \t")))
3344 (list 'statistics-cookie
3348 :post-blank post-blank
))))))
3350 (defun org-element-statistics-cookie-interpreter (statistics-cookie _
)
3351 "Interpret STATISTICS-COOKIE object as Org syntax."
3352 (org-element-property :value statistics-cookie
))
3357 (defun org-element-strike-through-parser ()
3358 "Parse strike-through object at point, if any.
3360 When at a strike-through object, return a list whose car is
3361 `strike-through' and cdr is a plist with `:begin', `:end',
3362 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3363 Otherwise, return nil.
3365 Assume point is at the first plus sign marker."
3367 (unless (bolp) (backward-char 1))
3368 (when (looking-at org-emph-re
)
3369 (let ((begin (match-beginning 2))
3370 (contents-begin (match-beginning 4))
3371 (contents-end (match-end 4))
3372 (post-blank (progn (goto-char (match-end 2))
3373 (skip-chars-forward " \t")))
3375 (list 'strike-through
3378 :contents-begin contents-begin
3379 :contents-end contents-end
3380 :post-blank post-blank
))))))
3382 (defun org-element-strike-through-interpreter (_ contents
)
3383 "Interpret strike-through object as Org syntax.
3384 CONTENTS is the contents of the object."
3385 (format "+%s+" contents
))
3390 (defun org-element-subscript-parser ()
3391 "Parse subscript at point, if any.
3393 When at a subscript object, return a list whose car is
3394 `subscript' and cdr a plist with `:begin', `:end',
3395 `:contents-begin', `:contents-end', `:use-brackets-p' and
3396 `:post-blank' as keywords. Otherwise, return nil.
3398 Assume point is at the underscore."
3400 (unless (bolp) (backward-char))
3401 (when (looking-at org-match-substring-regexp
)
3402 (let ((bracketsp (match-beginning 4))
3403 (begin (match-beginning 2))
3404 (contents-begin (or (match-beginning 4)
3405 (match-beginning 3)))
3406 (contents-end (or (match-end 4) (match-end 3)))
3407 (post-blank (progn (goto-char (match-end 0))
3408 (skip-chars-forward " \t")))
3413 :use-brackets-p bracketsp
3414 :contents-begin contents-begin
3415 :contents-end contents-end
3416 :post-blank post-blank
))))))
3418 (defun org-element-subscript-interpreter (subscript contents
)
3419 "Interpret SUBSCRIPT object as Org syntax.
3420 CONTENTS is the contents of the object."
3422 (if (org-element-property :use-brackets-p subscript
) "_{%s}" "_%s")
3428 (defun org-element-superscript-parser ()
3429 "Parse superscript at point, if any.
3431 When at a superscript object, return a list whose car is
3432 `superscript' and cdr a plist with `:begin', `:end',
3433 `:contents-begin', `:contents-end', `:use-brackets-p' and
3434 `:post-blank' as keywords. Otherwise, return nil.
3436 Assume point is at the caret."
3438 (unless (bolp) (backward-char))
3439 (when (looking-at org-match-substring-regexp
)
3440 (let ((bracketsp (match-beginning 4))
3441 (begin (match-beginning 2))
3442 (contents-begin (or (match-beginning 4)
3443 (match-beginning 3)))
3444 (contents-end (or (match-end 4) (match-end 3)))
3445 (post-blank (progn (goto-char (match-end 0))
3446 (skip-chars-forward " \t")))
3451 :use-brackets-p bracketsp
3452 :contents-begin contents-begin
3453 :contents-end contents-end
3454 :post-blank post-blank
))))))
3456 (defun org-element-superscript-interpreter (superscript contents
)
3457 "Interpret SUPERSCRIPT object as Org syntax.
3458 CONTENTS is the contents of the object."
3460 (if (org-element-property :use-brackets-p superscript
) "^{%s}" "^%s")
3466 (defun org-element-table-cell-parser ()
3467 "Parse table cell at point.
3468 Return a list whose car is `table-cell' and cdr is a plist
3469 containing `:begin', `:end', `:contents-begin', `:contents-end'
3470 and `:post-blank' keywords."
3471 (looking-at "[ \t]*\\(.*?\\)[ \t]*\\(?:|\\|$\\)")
3472 (let* ((begin (match-beginning 0))
3474 (contents-begin (match-beginning 1))
3475 (contents-end (match-end 1)))
3479 :contents-begin contents-begin
3480 :contents-end contents-end
3483 (defun org-element-table-cell-interpreter (_ contents
)
3484 "Interpret table-cell element as Org syntax.
3485 CONTENTS is the contents of the cell, or nil."
3486 (concat " " contents
" |"))
3491 (defun org-element-target-parser ()
3492 "Parse target at point, if any.
3494 When at a target, return a list whose car is `target' and cdr
3495 a plist with `:begin', `:end', `:value' and `:post-blank' as
3496 keywords. Otherwise, return nil.
3498 Assume point is at the target."
3500 (when (looking-at org-target-regexp
)
3501 (let ((begin (point))
3502 (value (match-string-no-properties 1))
3503 (post-blank (progn (goto-char (match-end 0))
3504 (skip-chars-forward " \t")))
3510 :post-blank post-blank
))))))
3512 (defun org-element-target-interpreter (target _
)
3513 "Interpret TARGET object as Org syntax."
3514 (format "<<%s>>" (org-element-property :value target
)))
3519 (defconst org-element--timestamp-regexp
3520 (concat org-ts-regexp-both
3522 "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
3524 "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
3525 "Regexp matching any timestamp type object.")
3527 (defun org-element-timestamp-parser ()
3528 "Parse time stamp at point, if any.
3530 When at a time stamp, return a list whose car is `timestamp', and
3531 cdr a plist with `:type', `:raw-value', `:year-start',
3532 `:month-start', `:day-start', `:hour-start', `:minute-start',
3533 `:year-end', `:month-end', `:day-end', `:hour-end',
3534 `:minute-end', `:repeater-type', `:repeater-value',
3535 `:repeater-unit', `:warning-type', `:warning-value',
3536 `:warning-unit', `:begin', `:end' and `:post-blank' keywords.
3537 Otherwise, return nil.
3539 Assume point is at the beginning of the timestamp."
3540 (when (looking-at-p org-element--timestamp-regexp
)
3542 (let* ((begin (point))
3543 (activep (eq (char-after) ?
<))
3546 (looking-at "\\([<[]\\(%%\\)?.*?\\)[]>]\\(?:--\\([<[].*?[]>]\\)\\)?")
3547 (match-string-no-properties 0)))
3548 (date-start (match-string-no-properties 1))
3549 (date-end (match-string 3))
3550 (diaryp (match-beginning 2))
3551 (post-blank (progn (goto-char (match-end 0))
3552 (skip-chars-forward " \t")))
3557 "[012]?[0-9]:[0-5][0-9]\\(-\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)"
3559 (cons (string-to-number (match-string 2 date-start
))
3560 (string-to-number (match-string 3 date-start
)))))
3561 (type (cond (diaryp 'diary
)
3562 ((and activep
(or date-end time-range
)) 'active-range
)
3564 ((or date-end time-range
) 'inactive-range
)
3568 (string-match "\\([.+]?\\+\\)\\([0-9]+\\)\\([hdwmy]\\)"
3572 (let ((type (match-string 1 raw-value
)))
3573 (cond ((equal "++" type
) 'catch-up
)
3574 ((equal ".+" type
) 'restart
)
3576 :repeater-value
(string-to-number (match-string 2 raw-value
))
3578 (pcase (string-to-char (match-string 3 raw-value
))
3579 (?h
'hour
) (?d
'day
) (?w
'week
) (?m
'month
) (_ 'year
)))))
3582 (string-match "\\(-\\)?-\\([0-9]+\\)\\([hdwmy]\\)" raw-value
)
3584 :warning-type
(if (match-string 1 raw-value
) 'first
'all
)
3585 :warning-value
(string-to-number (match-string 2 raw-value
))
3587 (pcase (string-to-char (match-string 3 raw-value
))
3588 (?h
'hour
) (?d
'day
) (?w
'week
) (?m
'month
) (_ 'year
)))))
3589 year-start month-start day-start hour-start minute-start year-end
3590 month-end day-end hour-end minute-end
)
3591 ;; Parse date-start.
3593 (let ((date (org-parse-time-string date-start t
)))
3594 (setq year-start
(nth 5 date
)
3595 month-start
(nth 4 date
)
3596 day-start
(nth 3 date
)
3597 hour-start
(nth 2 date
)
3598 minute-start
(nth 1 date
))))
3599 ;; Compute date-end. It can be provided directly in time-stamp,
3600 ;; or extracted from time range. Otherwise, it defaults to the
3601 ;; same values as date-start.
3603 (let ((date (and date-end
(org-parse-time-string date-end t
))))
3604 (setq year-end
(or (nth 5 date
) year-start
)
3605 month-end
(or (nth 4 date
) month-start
)
3606 day-end
(or (nth 3 date
) day-start
)
3607 hour-end
(or (nth 2 date
) (car time-range
) hour-start
)
3608 minute-end
(or (nth 1 date
) (cdr time-range
) minute-start
))))
3610 (nconc (list :type type
3611 :raw-value raw-value
3612 :year-start year-start
3613 :month-start month-start
3614 :day-start day-start
3615 :hour-start hour-start
3616 :minute-start minute-start
3618 :month-end month-end
3621 :minute-end minute-end
3624 :post-blank post-blank
)
3628 (defun org-element-timestamp-interpreter (timestamp _
)
3629 "Interpret TIMESTAMP object as Org syntax."
3630 (let* ((repeat-string
3632 (pcase (org-element-property :repeater-type timestamp
)
3633 (`cumulate
"+") (`catch-up
"++") (`restart
".+"))
3634 (let ((val (org-element-property :repeater-value timestamp
)))
3635 (and val
(number-to-string val
)))
3636 (pcase (org-element-property :repeater-unit timestamp
)
3637 (`hour
"h") (`day
"d") (`week
"w") (`month
"m") (`year
"y"))))
3640 (pcase (org-element-property :warning-type timestamp
)
3641 (`first
"--") (`all
"-"))
3642 (let ((val (org-element-property :warning-value timestamp
)))
3643 (and val
(number-to-string val
)))
3644 (pcase (org-element-property :warning-unit timestamp
)
3645 (`hour
"h") (`day
"d") (`week
"w") (`month
"m") (`year
"y"))))
3647 ;; Build an Org timestamp string from TIME. ACTIVEP is
3648 ;; non-nil when time stamp is active. If WITH-TIME-P is
3649 ;; non-nil, add a time part. HOUR-END and MINUTE-END
3650 ;; specify a time range in the timestamp. REPEAT-STRING is
3651 ;; the repeater string, if any.
3652 (lambda (time activep
&optional with-time-p hour-end minute-end
)
3653 (let ((ts (format-time-string
3654 (funcall (if with-time-p
#'cdr
#'car
)
3655 org-time-stamp-formats
)
3657 (when (and hour-end minute-end
)
3658 (string-match "[012]?[0-9]:[0-5][0-9]" ts
)
3661 (format "\\&-%02d:%02d" hour-end minute-end
)
3663 (unless activep
(setq ts
(format "[%s]" (substring ts
1 -
1))))
3664 (dolist (s (list repeat-string warning-string
))
3665 (when (org-string-nw-p s
)
3666 (setq ts
(concat (substring ts
0 -
1)
3669 (substring ts -
1)))))
3672 (type (org-element-property :type timestamp
)))
3674 ((or `active
`inactive
)
3675 (let* ((minute-start (org-element-property :minute-start timestamp
))
3676 (minute-end (org-element-property :minute-end timestamp
))
3677 (hour-start (org-element-property :hour-start timestamp
))
3678 (hour-end (org-element-property :hour-end timestamp
))
3679 (time-range-p (and hour-start hour-end minute-start minute-end
3680 (or (/= hour-start hour-end
)
3681 (/= minute-start minute-end
)))))
3687 (org-element-property :day-start timestamp
)
3688 (org-element-property :month-start timestamp
)
3689 (org-element-property :year-start timestamp
))
3691 (and hour-start minute-start
)
3692 (and time-range-p hour-end
)
3693 (and time-range-p minute-end
))))
3694 ((or `active-range
`inactive-range
)
3695 (let ((minute-start (org-element-property :minute-start timestamp
))
3696 (minute-end (org-element-property :minute-end timestamp
))
3697 (hour-start (org-element-property :hour-start timestamp
))
3698 (hour-end (org-element-property :hour-end timestamp
)))
3701 build-ts-string
(encode-time
3705 (org-element-property :day-start timestamp
)
3706 (org-element-property :month-start timestamp
)
3707 (org-element-property :year-start timestamp
))
3708 (eq type
'active-range
)
3709 (and hour-start minute-start
))
3711 (funcall build-ts-string
3715 (org-element-property :day-end timestamp
)
3716 (org-element-property :month-end timestamp
)
3717 (org-element-property :year-end timestamp
))
3718 (eq type
'active-range
)
3719 (and hour-end minute-end
)))))
3720 (_ (org-element-property :raw-value timestamp
)))))
3725 (defun org-element-underline-parser ()
3726 "Parse underline object at point, if any.
3728 When at an underline object, return a list whose car is
3729 `underline' and cdr is a plist with `:begin', `:end',
3730 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3731 Otherwise, return nil.
3733 Assume point is at the first underscore marker."
3735 (unless (bolp) (backward-char 1))
3736 (when (looking-at org-emph-re
)
3737 (let ((begin (match-beginning 2))
3738 (contents-begin (match-beginning 4))
3739 (contents-end (match-end 4))
3740 (post-blank (progn (goto-char (match-end 2))
3741 (skip-chars-forward " \t")))
3746 :contents-begin contents-begin
3747 :contents-end contents-end
3748 :post-blank post-blank
))))))
3750 (defun org-element-underline-interpreter (_ contents
)
3751 "Interpret underline object as Org syntax.
3752 CONTENTS is the contents of the object."
3753 (format "_%s_" contents
))
3758 (defun org-element-verbatim-parser ()
3759 "Parse verbatim object at point, if any.
3761 When at a verbatim object, return a list whose car is `verbatim'
3762 and cdr is a plist with `:value', `:begin', `:end' and
3763 `:post-blank' keywords. Otherwise, return nil.
3765 Assume point is at the first equal sign marker."
3767 (unless (bolp) (backward-char 1))
3768 (when (looking-at org-verbatim-re
)
3769 (let ((begin (match-beginning 2))
3770 (value (match-string-no-properties 4))
3771 (post-blank (progn (goto-char (match-end 2))
3772 (skip-chars-forward " \t")))
3778 :post-blank post-blank
))))))
3780 (defun org-element-verbatim-interpreter (verbatim _
)
3781 "Interpret VERBATIM object as Org syntax."
3782 (format "=%s=" (org-element-property :value verbatim
)))
3786 ;;; Parsing Element Starting At Point
3788 ;; `org-element--current-element' is the core function of this section.
3789 ;; It returns the Lisp representation of the element starting at
3792 ;; `org-element--current-element' makes use of special modes. They
3793 ;; are activated for fixed element chaining (e.g., `plain-list' >
3794 ;; `item') or fixed conditional element chaining (e.g., `headline' >
3795 ;; `section'). Special modes are: `first-section', `item',
3796 ;; `node-property', `section' and `table-row'.
3798 (defun org-element--current-element (limit &optional granularity mode structure
)
3799 "Parse the element starting at point.
3801 Return value is a list like (TYPE PROPS) where TYPE is the type
3802 of the element and PROPS a plist of properties associated to the
3805 Possible types are defined in `org-element-all-elements'.
3807 LIMIT bounds the search.
3809 Optional argument GRANULARITY determines the depth of the
3810 recursion. Allowed values are `headline', `greater-element',
3811 `element', `object' or nil. When it is broader than `object' (or
3812 nil), secondary values will not be parsed, since they only
3815 Optional argument MODE, when non-nil, can be either
3816 `first-section', `section', `planning', `item', `node-property'
3819 If STRUCTURE isn't provided but MODE is set to `item', it will be
3822 This function assumes point is always at the beginning of the
3823 element it has to parse."
3825 (let ((case-fold-search t
)
3826 ;; Determine if parsing depth allows for secondary strings
3827 ;; parsing. It only applies to elements referenced in
3828 ;; `org-element-secondary-value-alist'.
3829 (raw-secondary-p (and granularity
(not (eq granularity
'object
)))))
3833 (org-element-item-parser limit structure raw-secondary-p
))
3835 ((eq mode
'table-row
) (org-element-table-row-parser limit
))
3837 ((eq mode
'node-property
) (org-element-node-property-parser limit
))
3839 ((org-with-limited-levels (org-at-heading-p))
3840 (org-element-headline-parser limit raw-secondary-p
))
3841 ;; Sections (must be checked after headline).
3842 ((eq mode
'section
) (org-element-section-parser limit
))
3843 ((eq mode
'first-section
)
3844 (org-element-section-parser
3845 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
3848 ((and (eq mode
'planning
)
3849 (eq ?
* (char-after (line-beginning-position 0)))
3850 (looking-at org-planning-line-re
))
3851 (org-element-planning-parser limit
))
3853 ((and (memq mode
'(planning property-drawer
))
3854 (eq ?
* (char-after (line-beginning-position
3855 (if (eq mode
'planning
) 0 -
1))))
3856 (looking-at org-property-drawer-re
))
3857 (org-element-property-drawer-parser limit
))
3858 ;; When not at bol, point is at the beginning of an item or
3859 ;; a footnote definition: next item is always a paragraph.
3860 ((not (bolp)) (org-element-paragraph-parser limit
(list (point))))
3862 ((looking-at org-clock-line-re
) (org-element-clock-parser limit
))
3865 (org-element-inlinetask-parser limit raw-secondary-p
))
3866 ;; From there, elements can have affiliated keywords.
3867 (t (let ((affiliated (org-element--collect-affiliated-keywords limit
)))
3869 ;; Jumping over affiliated keywords put point off-limits.
3870 ;; Parse them as regular keywords.
3871 ((and (cdr affiliated
) (>= (point) limit
))
3872 (goto-char (car affiliated
))
3873 (org-element-keyword-parser limit nil
))
3874 ;; LaTeX Environment.
3875 ((looking-at org-element--latex-begin-environment
)
3876 (org-element-latex-environment-parser limit affiliated
))
3877 ;; Drawer and Property Drawer.
3878 ((looking-at org-drawer-regexp
)
3879 (org-element-drawer-parser limit affiliated
))
3881 ((looking-at "[ \t]*:\\( \\|$\\)")
3882 (org-element-fixed-width-parser limit affiliated
))
3883 ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
3885 ((looking-at "[ \t]*#")
3886 (goto-char (match-end 0))
3888 ((looking-at "\\(?: \\|$\\)")
3890 (org-element-comment-parser limit affiliated
))
3891 ((looking-at "\\+BEGIN_\\(\\S-+\\)")
3893 (funcall (pcase (upcase (match-string 1))
3894 ("CENTER" #'org-element-center-block-parser
)
3895 ("COMMENT" #'org-element-comment-block-parser
)
3896 ("EXAMPLE" #'org-element-example-block-parser
)
3897 ("EXPORT" #'org-element-export-block-parser
)
3898 ("QUOTE" #'org-element-quote-block-parser
)
3899 ("SRC" #'org-element-src-block-parser
)
3900 ("VERSE" #'org-element-verse-block-parser
)
3901 (_ #'org-element-special-block-parser
))
3904 ((looking-at "\\+CALL:")
3906 (org-element-babel-call-parser limit affiliated
))
3907 ((looking-at "\\+BEGIN:? ")
3909 (org-element-dynamic-block-parser limit affiliated
))
3910 ((looking-at "\\+\\S-+:")
3912 (org-element-keyword-parser limit affiliated
))
3915 (org-element-paragraph-parser limit affiliated
))))
3916 ;; Footnote Definition.
3917 ((looking-at org-footnote-definition-re
)
3918 (org-element-footnote-definition-parser limit affiliated
))
3920 ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
3921 (org-element-horizontal-rule-parser limit affiliated
))
3924 (org-element-diary-sexp-parser limit affiliated
))
3926 ((looking-at "[ \t]*\\(|\\|\\+\\(-+\\+\\)+[ \t]*$\\)")
3927 (org-element-table-parser limit affiliated
))
3929 ((looking-at (org-item-re))
3930 (org-element-plain-list-parser
3932 (or structure
(org-element--list-struct limit
))))
3933 ;; Default element: Paragraph.
3934 (t (org-element-paragraph-parser limit affiliated
)))))))))
3937 ;; Most elements can have affiliated keywords. When looking for an
3938 ;; element beginning, we want to move before them, as they belong to
3939 ;; that element, and, in the meantime, collect information they give
3940 ;; into appropriate properties. Hence the following function.
3942 (defun org-element--collect-affiliated-keywords (limit)
3943 "Collect affiliated keywords from point down to LIMIT.
3945 Return a list whose CAR is the position at the first of them and
3946 CDR a plist of keywords and values and move point to the
3947 beginning of the first line after them.
3949 As a special case, if element doesn't start at the beginning of
3950 the line (e.g., a paragraph starting an item), CAR is current
3951 position of point and CDR is nil."
3952 (if (not (bolp)) (list (point))
3953 (let ((case-fold-search t
)
3955 ;; RESTRICT is the list of objects allowed in parsed
3957 (restrict (org-element-restriction 'keyword
))
3959 (while (and (< (point) limit
) (looking-at org-element--affiliated-re
))
3960 (let* ((raw-kwd (upcase (match-string 1)))
3961 ;; Apply translation to RAW-KWD. From there, KWD is
3962 ;; the official keyword.
3963 (kwd (or (cdr (assoc raw-kwd
3964 org-element-keyword-translation-alist
))
3966 ;; Find main value for any keyword.
3970 (buffer-substring-no-properties
3971 (match-end 0) (line-end-position)))))
3972 ;; PARSEDP is non-nil when keyword should have its
3974 (parsedp (member kwd org-element-parsed-keywords
))
3975 ;; If KWD is a dual keyword, find its secondary
3976 ;; value. Maybe parse it.
3977 (dualp (member kwd org-element-dual-keywords
))
3980 (let ((sec (match-string-no-properties 2)))
3981 (if (or (not sec
) (not parsedp
)) sec
3983 (org-element--parse-objects
3984 (match-beginning 2) (match-end 2) nil restrict
))))))
3985 ;; Attribute a property name to KWD.
3986 (kwd-sym (and kwd
(intern (concat ":" (downcase kwd
))))))
3987 ;; Now set final shape for VALUE.
3990 (org-element--parse-objects
3992 (progn (end-of-line) (skip-chars-backward " \t") (point))
3995 (setq value
(and (or value dual-value
) (cons value dual-value
))))
3996 (when (or (member kwd org-element-multiple-keywords
)
3997 ;; Attributes can always appear on multiple lines.
3998 (string-match "^ATTR_" kwd
))
3999 (setq value
(cons value
(plist-get output kwd-sym
))))
4000 ;; Eventually store the new value in OUTPUT.
4001 (setq output
(plist-put output kwd-sym value
))
4002 ;; Move to next keyword.
4004 ;; If affiliated keywords are orphaned: move back to first one.
4005 ;; They will be parsed as a paragraph.
4006 (when (looking-at "[ \t]*$") (goto-char origin
) (setq output nil
))
4008 (cons origin output
))))
4014 ;; The two major functions here are `org-element-parse-buffer', which
4015 ;; parses Org syntax inside the current buffer, taking into account
4016 ;; region, narrowing, or even visibility if specified, and
4017 ;; `org-element-parse-secondary-string', which parses objects within
4020 ;; The (almost) almighty `org-element-map' allows applying a function
4021 ;; on elements or objects matching some type, and accumulating the
4022 ;; resulting values. In an export situation, it also skips unneeded
4023 ;; parts of the parse tree.
4025 (defun org-element-parse-buffer (&optional granularity visible-only
)
4026 "Recursively parse the buffer and return structure.
4027 If narrowing is in effect, only parse the visible part of the
4030 Optional argument GRANULARITY determines the depth of the
4031 recursion. It can be set to the following symbols:
4033 `headline' Only parse headlines.
4034 `greater-element' Don't recurse into greater elements excepted
4035 headlines and sections. Thus, elements
4036 parsed are the top-level ones.
4037 `element' Parse everything but objects and plain text.
4038 `object' Parse the complete buffer (default).
4040 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4043 An element or an objects is represented as a list with the
4044 pattern (TYPE PROPERTIES CONTENTS), where :
4046 TYPE is a symbol describing the element or object. See
4047 `org-element-all-elements' and `org-element-all-objects' for an
4048 exhaustive list of such symbols. One can retrieve it with
4049 `org-element-type' function.
4051 PROPERTIES is the list of attributes attached to the element or
4052 object, as a plist. Although most of them are specific to the
4053 element or object type, all types share `:begin', `:end',
4054 `:post-blank' and `:parent' properties, which respectively
4055 refer to buffer position where the element or object starts,
4056 ends, the number of white spaces or blank lines after it, and
4057 the element or object containing it. Properties values can be
4058 obtained by using `org-element-property' function.
4060 CONTENTS is a list of elements, objects or raw strings
4061 contained in the current element or object, when applicable.
4062 One can access them with `org-element-contents' function.
4064 The Org buffer has `org-data' as type and nil as properties.
4065 `org-element-map' function can be used to find specific elements
4066 or objects within the parse tree.
4068 This function assumes that current major mode is `org-mode'."
4070 (goto-char (point-min))
4071 (org-skip-whitespace)
4072 (org-element--parse-elements
4073 (point-at-bol) (point-max)
4074 ;; Start in `first-section' mode so text before the first
4075 ;; headline belongs to a section.
4076 'first-section nil granularity visible-only
(list 'org-data nil
))))
4078 (defun org-element-parse-secondary-string (string restriction
&optional parent
)
4079 "Recursively parse objects in STRING and return structure.
4081 RESTRICTION is a symbol limiting the object types that will be
4084 Optional argument PARENT, when non-nil, is the element or object
4085 containing the secondary string. It is used to set correctly
4086 `:parent' property within the string.
4088 If STRING is the empty string or nil, return nil."
4091 ((equal string
"") nil
)
4092 (t (let ((local-variables (buffer-local-variables)))
4094 (dolist (v local-variables
)
4096 (if (symbolp v
) (makunbound v
)
4097 (set (make-local-variable (car v
)) (cdr v
)))))
4099 (restore-buffer-modified-p nil
)
4100 (org-element--parse-objects
4101 (point-min) (point-max) nil restriction parent
))))))
4103 (defun org-element-map
4104 (data types fun
&optional info first-match no-recursion with-affiliated
)
4105 "Map a function on selected elements or objects.
4107 DATA is a parse tree, an element, an object, a string, or a list
4108 of such constructs. TYPES is a symbol or list of symbols of
4109 elements or objects types (see `org-element-all-elements' and
4110 `org-element-all-objects' for a complete list of types). FUN is
4111 the function called on the matching element or object. It has to
4112 accept one argument: the element or object itself.
4114 When optional argument INFO is non-nil, it should be a plist
4115 holding export options. In that case, parts of the parse tree
4116 not exportable according to that property list will be skipped.
4118 When optional argument FIRST-MATCH is non-nil, stop at the first
4119 match for which FUN doesn't return nil, and return that value.
4121 Optional argument NO-RECURSION is a symbol or a list of symbols
4122 representing elements or objects types. `org-element-map' won't
4123 enter any recursive element or object whose type belongs to that
4124 list. Though, FUN can still be applied on them.
4126 When optional argument WITH-AFFILIATED is non-nil, FUN will also
4127 apply to matching objects within parsed affiliated keywords (see
4128 `org-element-parsed-keywords').
4130 Nil values returned from FUN do not appear in the results.
4136 Assuming TREE is a variable containing an Org buffer parse tree,
4137 the following example will return a flat list of all `src-block'
4138 and `example-block' elements in it:
4140 (org-element-map tree \\='(example-block src-block) #\\='identity)
4142 The following snippet will find the first headline with a level
4143 of 1 and a \"phone\" tag, and will return its beginning position:
4145 (org-element-map tree \\='headline
4147 (and (= (org-element-property :level hl) 1)
4148 (member \"phone\" (org-element-property :tags hl))
4149 (org-element-property :begin hl)))
4152 The next example will return a flat list of all `plain-list' type
4153 elements in TREE that are not a sub-list themselves:
4155 (org-element-map tree \\='plain-list #\\='identity nil nil \\='plain-list)
4157 Eventually, this example will return a flat list of all `bold'
4158 type objects containing a `latex-snippet' type object, even
4159 looking into captions:
4161 (org-element-map tree \\='bold
4163 (and (org-element-map b \\='latex-snippet #\\='identity nil t) b))
4165 ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
4166 (let* ((types (if (listp types
) types
(list types
)))
4167 (no-recursion (if (listp no-recursion
) no-recursion
4168 (list no-recursion
)))
4169 ;; Recursion depth is determined by --CATEGORY.
4172 (let ((category 'greater-elements
)
4173 (all-objects (cons 'plain-text org-element-all-objects
)))
4174 (dolist (type types category
)
4175 (cond ((memq type all-objects
)
4176 ;; If one object is found, the function has
4177 ;; to recurse into every object.
4178 (throw :--found
'objects
))
4179 ((not (memq type org-element-greater-elements
))
4180 ;; If one regular element is found, the
4181 ;; function has to recurse, at least, into
4182 ;; every element it encounters.
4183 (and (not (eq category
'elements
))
4184 (setq category
'elements
))))))))
4186 (letrec ((--walk-tree
4188 ;; Recursively walk DATA. INFO, if non-nil, is a plist
4189 ;; holding contextual information.
4190 (let ((--type (org-element-type --data
)))
4193 ;; Ignored element in an export context.
4194 ((and info
(memq --data
(plist-get info
:ignore-list
))))
4195 ;; List of elements or objects.
4196 ((not --type
) (mapc --walk-tree --data
))
4197 ;; Unconditionally enter parse trees.
4198 ((eq --type
'org-data
)
4199 (mapc --walk-tree
(org-element-contents --data
)))
4201 ;; Check if TYPE is matching among TYPES. If so,
4202 ;; apply FUN to --DATA and accumulate return value
4203 ;; into --ACC (or exit if FIRST-MATCH is non-nil).
4204 (when (memq --type types
)
4205 (let ((result (funcall fun --data
)))
4206 (cond ((not result
))
4207 (first-match (throw :--map-first-match result
))
4208 (t (push result --acc
)))))
4209 ;; If --DATA has a secondary string that can contain
4210 ;; objects with their type among TYPES, look inside.
4211 (when (and (eq --category
'objects
) (not (stringp --data
)))
4212 (dolist (p (cdr (assq --type
4213 org-element-secondary-value-alist
)))
4214 (funcall --walk-tree
(org-element-property p --data
))))
4215 ;; If --DATA has any parsed affiliated keywords and
4216 ;; WITH-AFFILIATED is non-nil, look for objects in
4218 (when (and with-affiliated
4219 (eq --category
'objects
)
4220 (eq (org-element-class --data
) 'element
))
4221 (dolist (kwd-pair org-element--parsed-properties-alist
)
4222 (let ((kwd (car kwd-pair
))
4223 (value (org-element-property (cdr kwd-pair
) --data
)))
4224 ;; Pay attention to the type of parsed
4225 ;; keyword. In particular, preserve order for
4226 ;; multiple keywords.
4229 ((member kwd org-element-dual-keywords
)
4230 (if (member kwd org-element-multiple-keywords
)
4231 (dolist (line (reverse value
))
4232 (funcall --walk-tree
(cdr line
))
4233 (funcall --walk-tree
(car line
)))
4234 (funcall --walk-tree
(cdr value
))
4235 (funcall --walk-tree
(car value
))))
4236 ((member kwd org-element-multiple-keywords
)
4237 (mapc --walk-tree
(reverse value
)))
4238 (t (funcall --walk-tree value
))))))
4239 ;; Determine if a recursion into --DATA is possible.
4241 ;; --TYPE is explicitly removed from recursion.
4242 ((memq --type no-recursion
))
4243 ;; --DATA has no contents.
4244 ((not (org-element-contents --data
)))
4245 ;; Looking for greater elements but --DATA is
4246 ;; simply an element or an object.
4247 ((and (eq --category
'greater-elements
)
4248 (not (memq --type org-element-greater-elements
))))
4249 ;; Looking for elements but --DATA is an object.
4250 ((and (eq --category
'elements
)
4251 (eq (org-element-class --data
) 'object
)))
4252 ;; In any other case, map contents.
4253 (t (mapc --walk-tree
(org-element-contents --data
))))))))))
4254 (catch :--map-first-match
4255 (funcall --walk-tree data
)
4256 ;; Return value in a proper order.
4257 (nreverse --acc
)))))
4258 (put 'org-element-map
'lisp-indent-function
2)
4260 ;; The following functions are internal parts of the parser.
4262 ;; The first one, `org-element--parse-elements' acts at the element's
4265 ;; The second one, `org-element--parse-objects' applies on all objects
4266 ;; of a paragraph or a secondary string. It calls
4267 ;; `org-element--object-lex' to find the next object in the current
4270 (defsubst org-element--next-mode
(type parentp
)
4271 "Return next special mode according to TYPE, or nil.
4272 TYPE is a symbol representing the type of an element or object
4273 containing next element if PARENTP is non-nil, or before it
4274 otherwise. Modes can be either `first-section', `item',
4275 `node-property', `planning', `property-drawer', `section',
4276 `table-row' or nil."
4279 (`headline
'section
)
4280 (`inlinetask
'planning
)
4282 (`property-drawer
'node-property
)
4283 (`section
'planning
)
4284 (`table
'table-row
))
4287 (`node-property
'node-property
)
4288 (`planning
'property-drawer
)
4289 (`table-row
'table-row
))))
4291 (defun org-element--parse-elements
4292 (beg end mode structure granularity visible-only acc
)
4293 "Parse elements between BEG and END positions.
4295 MODE prioritizes some elements over the others. It can be set to
4296 `first-section', `section', `planning', `item', `node-property'
4299 When value is `item', STRUCTURE will be used as the current list
4302 GRANULARITY determines the depth of the recursion. See
4303 `org-element-parse-buffer' for more information.
4305 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4308 Elements are accumulated into ACC."
4311 ;; Visible only: skip invisible parts at the beginning of the
4313 (when (and visible-only
(org-invisible-p2))
4314 (goto-char (min (1+ (org-find-visible)) end
)))
4315 ;; When parsing only headlines, skip any text before first one.
4316 (when (and (eq granularity
'headline
) (not (org-at-heading-p)))
4317 (org-with-limited-levels (outline-next-heading)))
4319 (while (< (point) end
)
4320 ;; Find current element's type and parse it accordingly to
4322 (let* ((element (org-element--current-element
4323 end granularity mode structure
))
4324 (type (org-element-type element
))
4325 (cbeg (org-element-property :contents-begin element
)))
4326 (goto-char (org-element-property :end element
))
4327 ;; Visible only: skip invisible parts between siblings.
4328 (when (and visible-only
(org-invisible-p2))
4329 (goto-char (min (1+ (org-find-visible)) end
)))
4330 ;; Fill ELEMENT contents by side-effect.
4332 ;; If element has no contents, don't modify it.
4334 ;; Greater element: parse it between `contents-begin' and
4335 ;; `contents-end'. Make sure GRANULARITY allows the
4336 ;; recursion, or ELEMENT is a headline, in which case going
4337 ;; inside is mandatory, in order to get sub-level headings.
4338 ((and (memq type org-element-greater-elements
)
4339 (or (memq granularity
'(element object nil
))
4340 (and (eq granularity
'greater-element
)
4342 (eq type
'headline
)))
4343 (org-element--parse-elements
4344 cbeg
(org-element-property :contents-end element
)
4345 ;; Possibly switch to a special mode.
4346 (org-element--next-mode type t
)
4347 (and (memq type
'(item plain-list
))
4348 (org-element-property :structure element
))
4349 granularity visible-only element
))
4350 ;; ELEMENT has contents. Parse objects inside, if
4351 ;; GRANULARITY allows it.
4352 ((memq granularity
'(object nil
))
4353 (org-element--parse-objects
4354 cbeg
(org-element-property :contents-end element
) element
4355 (org-element-restriction type
))))
4356 (push (org-element-put-property element
:parent acc
) elements
)
4358 (setq mode
(org-element--next-mode type nil
))))
4360 (apply #'org-element-set-contents acc
(nreverse elements
)))))
4362 (defun org-element--object-lex (restriction)
4363 "Return next object in current buffer or nil.
4364 RESTRICTION is a list of object types, as symbols, that should be
4365 looked after. This function assumes that the buffer is narrowed
4366 to an appropriate container (e.g., a paragraph)."
4367 (if (memq 'table-cell restriction
) (org-element-table-cell-parser)
4368 (let* ((start (point))
4371 (cond ((not org-target-link-regexp
) nil
)
4372 ((not (memq 'link restriction
)) nil
)
4374 (unless (bolp) (forward-char -
1))
4375 (not (re-search-forward org-target-link-regexp nil t
)))
4377 ;; Since we moved backward, we do not want to
4378 ;; match again an hypothetical 1-character long
4379 ;; radio link before us. Realizing that this can
4380 ;; only happen if such a radio link starts at
4381 ;; beginning of line, we prevent this here.
4382 ((and (= start
(1+ (line-beginning-position)))
4383 (= start
(match-end 1)))
4384 (and (re-search-forward org-target-link-regexp nil t
)
4385 (match-beginning 1)))
4386 (t (match-beginning 1)))))
4389 (while (and (not found
)
4390 (re-search-forward org-element--object-regexp limit
'move
))
4391 (goto-char (match-beginning 0))
4392 (let ((result (match-string 0)))
4395 ((string-prefix-p "call_" result t
)
4396 (and (memq 'inline-babel-call restriction
)
4397 (org-element-inline-babel-call-parser)))
4398 ((string-prefix-p "src_" result t
)
4399 (and (memq 'inline-src-block restriction
)
4400 (org-element-inline-src-block-parser)))
4403 (?^
(and (memq 'superscript restriction
)
4404 (org-element-superscript-parser)))
4405 (?_
(or (and (memq 'subscript restriction
)
4406 (org-element-subscript-parser))
4407 (and (memq 'underline restriction
)
4408 (org-element-underline-parser))))
4409 (?
* (and (memq 'bold restriction
)
4410 (org-element-bold-parser)))
4411 (?
/ (and (memq 'italic restriction
)
4412 (org-element-italic-parser)))
4413 (?~
(and (memq 'code restriction
)
4414 (org-element-code-parser)))
4415 (?
= (and (memq 'verbatim restriction
)
4416 (org-element-verbatim-parser)))
4417 (?
+ (and (memq 'strike-through restriction
)
4418 (org-element-strike-through-parser)))
4419 (?
@ (and (memq 'export-snippet restriction
)
4420 (org-element-export-snippet-parser)))
4421 (?
{ (and (memq 'macro restriction
)
4422 (org-element-macro-parser)))
4423 (?$
(and (memq 'latex-fragment restriction
)
4424 (org-element-latex-fragment-parser)))
4426 (if (eq (aref result
1) ?
<)
4427 (or (and (memq 'radio-target restriction
)
4428 (org-element-radio-target-parser))
4429 (and (memq 'target restriction
)
4430 (org-element-target-parser)))
4431 (or (and (memq 'timestamp restriction
)
4432 (org-element-timestamp-parser))
4433 (and (memq 'link restriction
)
4434 (org-element-link-parser)))))
4436 (if (eq (aref result
1) ?
\\)
4437 (and (memq 'line-break restriction
)
4438 (org-element-line-break-parser))
4439 (or (and (memq 'entity restriction
)
4440 (org-element-entity-parser))
4441 (and (memq 'latex-fragment restriction
)
4442 (org-element-latex-fragment-parser)))))
4444 (if (eq (aref result
1) ?\
[)
4445 (and (memq 'link restriction
)
4446 (org-element-link-parser))
4447 (or (and (memq 'footnote-reference restriction
)
4448 (org-element-footnote-reference-parser))
4449 (and (memq 'timestamp restriction
)
4450 (org-element-timestamp-parser))
4451 (and (memq 'statistics-cookie restriction
)
4452 (org-element-statistics-cookie-parser)))))
4453 ;; This is probably a plain link.
4454 (_ (and (memq 'link restriction
)
4455 (org-element-link-parser)))))))
4456 (or (eobp) (forward-char))))
4458 (limit (org-element-link-parser)) ;radio link
4461 (defun org-element--parse-objects (beg end acc restriction
&optional parent
)
4462 "Parse objects between BEG and END and return recursive structure.
4464 Objects are accumulated in ACC. RESTRICTION is a list of object
4465 successors which are allowed in the current object.
4467 ACC becomes the parent for all parsed objects. However, if ACC
4468 is nil (i.e., a secondary string is being parsed) and optional
4469 argument PARENT is non-nil, use it as the parent for all objects.
4470 Eventually, if both ACC and PARENT are nil, the common parent is
4471 the list of objects itself."
4474 (narrow-to-region beg end
)
4475 (goto-char (point-min))
4476 (let (next-object contents
)
4477 (while (and (not (eobp))
4478 (setq next-object
(org-element--object-lex restriction
)))
4479 ;; Text before any object.
4480 (let ((obj-beg (org-element-property :begin next-object
)))
4481 (unless (= (point) obj-beg
)
4482 (let ((text (buffer-substring-no-properties (point) obj-beg
)))
4483 (push (if acc
(org-element-put-property text
:parent acc
) text
)
4486 (let ((obj-end (org-element-property :end next-object
))
4487 (cont-beg (org-element-property :contents-begin next-object
)))
4488 (when acc
(org-element-put-property next-object
:parent acc
))
4490 ;; Fill contents of NEXT-OBJECT if possible.
4491 (org-element--parse-objects
4493 (org-element-property :contents-end next-object
)
4495 (org-element-restriction next-object
))
4498 (goto-char obj-end
)))
4499 ;; Text after last object.
4501 (let ((text (buffer-substring-no-properties (point) end
)))
4502 (push (if acc
(org-element-put-property text
:parent acc
) text
)
4504 ;; Result. Set appropriate parent.
4505 (if acc
(apply #'org-element-set-contents acc
(nreverse contents
))
4506 (let* ((contents (nreverse contents
))
4507 (parent (or parent contents
)))
4508 (dolist (datum contents contents
)
4509 (org-element-put-property datum
:parent parent
))))))))
4513 ;;; Towards A Bijective Process
4515 ;; The parse tree obtained with `org-element-parse-buffer' is really
4516 ;; a snapshot of the corresponding Org buffer. Therefore, it can be
4517 ;; interpreted and expanded into a string with canonical Org syntax.
4518 ;; Hence `org-element-interpret-data'.
4520 ;; The function relies internally on
4521 ;; `org-element--interpret-affiliated-keywords'.
4524 (defun org-element-interpret-data (data)
4525 "Interpret DATA as Org syntax.
4526 DATA is a parse tree, an element, an object or a secondary string
4527 to interpret. Return Org syntax as a string."
4529 (lambda (data parent
)
4530 (let* ((type (org-element-type data
))
4531 ;; Find interpreter for current object or
4532 ;; element. If it doesn't exist (e.g. this is
4533 ;; a pseudo object or element), return contents,
4537 (format "org-element-%s-interpreter" type
))))
4538 (if (fboundp fun
) fun
(lambda (_ contents
) contents
))))
4541 ;; Secondary string.
4543 (mapconcat (lambda (obj) (funcall fun obj parent
))
4546 ;; Full Org document.
4547 ((eq type
'org-data
)
4548 (mapconcat (lambda (obj) (funcall fun obj parent
))
4549 (org-element-contents data
)
4551 ;; Plain text: return it.
4552 ((stringp data
) data
)
4553 ;; Element or object without contents.
4554 ((not (org-element-contents data
))
4555 (funcall interpret data nil
))
4556 ;; Element or object with contents.
4561 ;; Recursively interpret contents.
4563 (lambda (datum) (funcall fun datum data
))
4564 (org-element-contents
4565 (if (not (memq type
'(paragraph verse-block
)))
4567 ;; Fix indentation of elements containing
4568 ;; objects. We ignore `table-row'
4569 ;; elements as they are one line long
4571 (org-element-normalize-contents
4573 ;; When normalizing first paragraph of
4574 ;; an item or a footnote-definition,
4575 ;; ignore first line's indentation.
4576 (and (eq type
'paragraph
)
4577 (memq (org-element-type parent
)
4578 '(footnote-definition item
))
4580 (car (org-element-contents parent
)))))))
4582 (if (memq type
'(org-data plain-text nil
)) results
4583 ;; Build white spaces. If no `:post-blank' property
4584 ;; is specified, assume its value is 0.
4585 (let ((blank (or (org-element-property :post-blank data
) 0)))
4586 (if (eq (org-element-class data parent
) 'object
)
4587 (concat results
(make-string blank ?\s
))
4588 (concat (org-element--interpret-affiliated-keywords data
)
4589 (org-element-normalize-string results
)
4590 (make-string blank ?
\n)))))))))
4591 (funcall fun data nil
)))
4593 (defun org-element--interpret-affiliated-keywords (element)
4594 "Return ELEMENT's affiliated keywords as Org syntax.
4595 If there is no affiliated keyword, return the empty string."
4596 (let ((keyword-to-org
4600 (when (member key org-element-dual-keywords
)
4601 (setq dual
(cdr value
) value
(car value
)))
4604 (format "[%s]" (org-element-interpret-data dual
)))
4606 (if (member key org-element-parsed-keywords
)
4607 (org-element-interpret-data value
)
4612 (let ((value (org-element-property prop element
))
4613 (keyword (upcase (substring (symbol-name prop
) 1))))
4615 (if (or (member keyword org-element-multiple-keywords
)
4616 ;; All attribute keywords can have multiple lines.
4617 (string-match "^ATTR_" keyword
))
4618 (mapconcat (lambda (line) (funcall keyword-to-org keyword line
))
4621 (funcall keyword-to-org keyword value
)))))
4622 ;; List all ELEMENT's properties matching an attribute line or an
4623 ;; affiliated keyword, but ignore translated keywords since they
4624 ;; cannot belong to the property list.
4625 (cl-loop for prop in
(nth 1 element
) by
'cddr
4626 when
(let ((keyword (upcase (substring (symbol-name prop
) 1))))
4627 (or (string-match "^ATTR_" keyword
)
4629 (member keyword org-element-affiliated-keywords
)
4631 org-element-keyword-translation-alist
)))))
4635 ;; Because interpretation of the parse tree must return the same
4636 ;; number of blank lines between elements and the same number of white
4637 ;; space after objects, some special care must be given to white
4640 ;; The first function, `org-element-normalize-string', ensures any
4641 ;; string different from the empty string will end with a single
4642 ;; newline character.
4644 ;; The second function, `org-element-normalize-contents', removes
4645 ;; global indentation from the contents of the current element.
4647 (defun org-element-normalize-string (s)
4648 "Ensure string S ends with a single newline character.
4650 If S isn't a string return it unchanged. If S is the empty
4651 string, return it. Otherwise, return a new string with a single
4652 newline character at its end."
4654 ((not (stringp s
)) s
)
4656 (t (and (string-match "\\(\n[ \t]*\\)*\\'" s
)
4657 (replace-match "\n" nil nil s
)))))
4659 (defun org-element-normalize-contents (element &optional ignore-first
)
4660 "Normalize plain text in ELEMENT's contents.
4662 ELEMENT must only contain plain text and objects.
4664 If optional argument IGNORE-FIRST is non-nil, ignore first line's
4665 indentation to compute maximal common indentation.
4667 Return the normalized element that is element with global
4668 indentation removed from its contents."
4669 (letrec ((find-min-ind
4670 ;; Return minimal common indentation within BLOB. This is
4671 ;; done by walking recursively BLOB and updating MIN-IND
4672 ;; along the way. FIRST-FLAG is non-nil when the next
4673 ;; object is expected to be a string that doesn't start
4674 ;; with a newline character. It happens for strings at
4675 ;; the beginnings of the contents or right after a line
4677 (lambda (blob first-flag min-ind
)
4678 (dolist (datum (org-element-contents blob
) min-ind
)
4680 (setq first-flag nil
)
4682 ;; Objects cannot start with spaces: in this
4683 ;; case, indentation is 0.
4684 ((not (stringp datum
)) (throw :zero
0))
4686 "\\`\\([ \t]+\\)\\([^ \t\n]\\|\n\\|\\'\\)" datum
))
4688 ((equal (match-string 2 datum
) "\n")
4690 (match-beginning 1) (match-end 1) 'org-ind
'empty datum
))
4692 (let ((i (string-width (match-string 1 datum
))))
4694 (match-beginning 1) (match-end 1) 'org-ind i datum
)
4695 (setq min-ind
(min i min-ind
))))))
4699 (while (string-match
4700 "\n\\([ \t]*\\)\\([^ \t\n]\\|\n\\|\\'\\)" datum s
)
4701 (setq s
(match-end 1))
4703 ((equal (match-string 1 datum
) "")
4704 (unless (member (match-string 2 datum
) '("" "\n"))
4706 ((equal (match-string 2 datum
) "\n")
4707 (put-text-property (match-beginning 1) (match-end 1)
4708 'org-ind
'empty datum
))
4710 (let ((i (string-width (match-string 1 datum
))))
4711 (put-text-property (match-beginning 1) (match-end 1)
4713 (setq min-ind
(min i min-ind
))))))))
4714 ((eq (org-element-type datum
) 'line-break
)
4715 (setq first-flag t
))
4716 ((memq (org-element-type datum
) org-element-recursive-objects
)
4718 (funcall find-min-ind datum first-flag min-ind
)))))))
4721 (funcall find-min-ind
4722 element
(not ignore-first
) most-positive-fixnum
))))
4723 (if (or (zerop min-ind
) (= min-ind most-positive-fixnum
)) element
4724 ;; Build ELEMENT back, replacing each string with the same
4725 ;; string minus common indentation.
4728 ;; Return DATUM with all its strings indentation
4729 ;; shortened from MIN-IND white spaces.
4738 (let ((s (point-min)))
4739 (while (setq s
(text-property-not-all
4740 s
(point-max) 'org-ind nil
))
4742 (let ((i (get-text-property s
'org-ind
)))
4743 (delete-region s
(progn
4744 (skip-chars-forward " \t")
4746 (when (integerp i
) (indent-to (- i min-ind
))))))
4748 ((memq (org-element-type object
)
4749 org-element-recursive-objects
)
4750 (funcall build object
))
4752 (org-element-contents datum
)))
4754 (funcall build element
)))))
4760 ;; Implement a caching mechanism for `org-element-at-point' and
4761 ;; `org-element-context', which see.
4763 ;; A single public function is provided: `org-element-cache-reset'.
4765 ;; Cache is enabled by default, but can be disabled globally with
4766 ;; `org-element-use-cache'. `org-element-cache-sync-idle-time',
4767 ;; org-element-cache-sync-duration' and `org-element-cache-sync-break'
4768 ;; can be tweaked to control caching behaviour.
4770 ;; Internally, parsed elements are stored in an AVL tree,
4771 ;; `org-element--cache'. This tree is updated lazily: whenever
4772 ;; a change happens to the buffer, a synchronization request is
4773 ;; registered in `org-element--cache-sync-requests' (see
4774 ;; `org-element--cache-submit-request'). During idle time, requests
4775 ;; are processed by `org-element--cache-sync'. Synchronization also
4776 ;; happens when an element is required from the cache. In this case,
4777 ;; the process stops as soon as the needed element is up-to-date.
4779 ;; A synchronization request can only apply on a synchronized part of
4780 ;; the cache. Therefore, the cache is updated at least to the
4781 ;; location where the new request applies. Thus, requests are ordered
4782 ;; from left to right and all elements starting before the first
4783 ;; request are correct. This property is used by functions like
4784 ;; `org-element--cache-find' to retrieve elements in the part of the
4785 ;; cache that can be trusted.
4787 ;; A request applies to every element, starting from its original
4788 ;; location (or key, see below). When a request is processed, it
4789 ;; moves forward and may collide the next one. In this case, both
4790 ;; requests are merged into a new one that starts from that element.
4791 ;; As a consequence, the whole synchronization complexity does not
4792 ;; depend on the number of pending requests, but on the number of
4793 ;; elements the very first request will be applied on.
4795 ;; Elements cannot be accessed through their beginning position, which
4796 ;; may or may not be up-to-date. Instead, each element in the tree is
4797 ;; associated to a key, obtained with `org-element--cache-key'. This
4798 ;; mechanism is robust enough to preserve total order among elements
4799 ;; even when the tree is only partially synchronized.
4802 (defvar org-element-use-cache nil
4803 "Non-nil when Org parser should cache its results.
4805 WARNING: for the time being, using cache sometimes triggers
4806 freezes. Therefore, it is disabled by default. Activate it if
4807 you want to help debugging the issue.")
4809 (defvar org-element-cache-sync-idle-time
0.6
4810 "Length, in seconds, of idle time before syncing cache.")
4812 (defvar org-element-cache-sync-duration
(seconds-to-time 0.04)
4813 "Maximum duration, as a time value, for a cache synchronization.
4814 If the synchronization is not over after this delay, the process
4815 pauses and resumes after `org-element-cache-sync-break'
4818 (defvar org-element-cache-sync-break
(seconds-to-time 0.3)
4819 "Duration, as a time value, of the pause between synchronizations.
4820 See `org-element-cache-sync-duration' for more information.")
4825 (defvar org-element--cache nil
4826 "AVL tree used to cache elements.
4827 Each node of the tree contains an element. Comparison is done
4828 with `org-element--cache-compare'. This cache is used in
4829 `org-element-at-point'.")
4831 (defvar org-element--cache-sync-requests nil
4832 "List of pending synchronization requests.
4834 A request is a vector with the following pattern:
4836 \[NEXT BEG END OFFSET PARENT PHASE]
4838 Processing a synchronization request consists of three phases:
4840 0. Delete modified elements,
4841 1. Fill missing area in cache,
4842 2. Shift positions and re-parent elements after the changes.
4844 During phase 0, NEXT is the key of the first element to be
4845 removed, BEG and END is buffer position delimiting the
4846 modifications. Elements starting between them (inclusive) are
4847 removed. So are elements whose parent is removed. PARENT, when
4848 non-nil, is the parent of the first element to be removed.
4850 During phase 1, NEXT is the key of the next known element in
4851 cache and BEG its beginning position. Parse buffer between that
4852 element and the one before it in order to determine the parent of
4853 the next element. Set PARENT to the element containing NEXT.
4855 During phase 2, NEXT is the key of the next element to shift in
4856 the parse tree. All elements starting from this one have their
4857 properties relatives to buffer positions shifted by integer
4858 OFFSET and, if they belong to element PARENT, are adopted by it.
4860 PHASE specifies the phase number, as an integer.")
4862 (defvar org-element--cache-sync-timer nil
4863 "Timer used for cache synchronization.")
4865 (defvar org-element--cache-sync-keys nil
4866 "Hash table used to store keys during synchronization.
4867 See `org-element--cache-key' for more information.")
4869 (defsubst org-element--cache-key
(element)
4870 "Return a unique key for ELEMENT in cache tree.
4872 Keys are used to keep a total order among elements in the cache.
4873 Comparison is done with `org-element--cache-key-less-p'.
4875 When no synchronization is taking place, a key is simply the
4876 beginning position of the element, or that position plus one in
4877 the case of an first item (respectively row) in
4878 a list (respectively a table).
4880 During a synchronization, the key is the one the element had when
4881 the cache was synchronized for the last time. Elements added to
4882 cache during the synchronization get a new key generated with
4883 `org-element--cache-generate-key'.
4885 Such keys are stored in `org-element--cache-sync-keys'. The hash
4886 table is cleared once the synchronization is complete."
4887 (or (gethash element org-element--cache-sync-keys
)
4888 (let* ((begin (org-element-property :begin element
))
4889 ;; Increase beginning position of items (respectively
4890 ;; table rows) by one, so the first item can get
4891 ;; a different key from its parent list (respectively
4893 (key (if (memq (org-element-type element
) '(item table-row
))
4896 (if org-element--cache-sync-requests
4897 (puthash element key org-element--cache-sync-keys
)
4900 (defun org-element--cache-generate-key (lower upper
)
4901 "Generate a key between LOWER and UPPER.
4903 LOWER and UPPER are integers or lists, possibly empty.
4905 If LOWER and UPPER are equals, return LOWER. Otherwise, return
4906 a unique key, as an integer or a list of integers, according to
4907 the following rules:
4909 - LOWER and UPPER are compared level-wise until values differ.
4911 - If, at a given level, LOWER and UPPER differ from more than
4912 2, the new key shares all the levels above with LOWER and
4913 gets a new level. Its value is the mean between LOWER and
4916 (1 2) + (1 4) --> (1 3)
4918 - If LOWER has no value to compare with, it is assumed that its
4919 value is `most-negative-fixnum'. E.g.,
4927 where m is `most-negative-fixnum'. Likewise, if UPPER is
4928 short of levels, the current value is `most-positive-fixnum'.
4930 - If they differ from only one, the new key inherits from
4931 current LOWER level and fork it at the next level. E.g.,
4939 where M is `most-positive-fixnum'.
4941 - If the key is only one level long, it is returned as an
4946 When they are not equals, the function assumes that LOWER is
4947 lesser than UPPER, per `org-element--cache-key-less-p'."
4948 (if (equal lower upper
) lower
4949 (let ((lower (if (integerp lower
) (list lower
) lower
))
4950 (upper (if (integerp upper
) (list upper
) upper
))
4954 (let ((min (or (car lower
) most-negative-fixnum
))
4955 (max (cond (skip-upper most-positive-fixnum
)
4957 (t most-positive-fixnum
))))
4958 (if (< (1+ min
) max
)
4959 (let ((mean (+ (ash min -
1) (ash max -
1) (logand min max
1))))
4960 (throw 'exit
(if key
(nreverse (cons mean key
)) mean
)))
4961 (when (and (< min max
) (not skip-upper
))
4962 ;; When at a given level, LOWER and UPPER differ from
4963 ;; 1, ignore UPPER altogether. Instead create a key
4964 ;; between LOWER and the greatest key with the same
4965 ;; prefix as LOWER so far.
4966 (setq skip-upper t
))
4968 (setq lower
(cdr lower
) upper
(cdr upper
)))))))))
4970 (defsubst org-element--cache-key-less-p
(a b
)
4971 "Non-nil if key A is less than key B.
4972 A and B are either integers or lists of integers, as returned by
4973 `org-element--cache-key'."
4974 (if (integerp a
) (if (integerp b
) (< a b
) (<= a
(car b
)))
4975 (if (integerp b
) (< (car a
) b
)
4978 (cond ((car-less-than-car a b
) (throw 'exit t
))
4979 ((car-less-than-car b a
) (throw 'exit nil
))
4980 (t (setq a
(cdr a
) b
(cdr b
)))))
4981 ;; If A is empty, either keys are equal (B is also empty) and
4982 ;; we return nil, or A is lesser than B (B is longer) and we
4983 ;; return a non-nil value.
4985 ;; If A is not empty, B is necessarily empty and A is greater
4986 ;; than B (A is longer). Therefore, return nil.
4987 (and (null a
) b
)))))
4989 (defun org-element--cache-compare (a b
)
4990 "Non-nil when element A is located before element B."
4991 (org-element--cache-key-less-p (org-element--cache-key a
)
4992 (org-element--cache-key b
)))
4994 (defsubst org-element--cache-root
()
4995 "Return root value in cache.
4996 This function assumes `org-element--cache' is a valid AVL tree."
4997 (avl-tree--node-left (avl-tree--dummyroot org-element--cache
)))
5002 (defsubst org-element--cache-active-p
()
5003 "Non-nil when cache is active in current buffer."
5004 (and org-element-use-cache
5006 (derived-mode-p 'org-mode
)))
5008 (defun org-element--cache-find (pos &optional side
)
5009 "Find element in cache starting at POS or before.
5011 POS refers to a buffer position.
5013 When optional argument SIDE is non-nil, the function checks for
5014 elements starting at or past POS instead. If SIDE is `both', the
5015 function returns a cons cell where car is the first element
5016 starting at or before POS and cdr the first element starting
5019 The function can only find elements in the synchronized part of
5021 (let ((limit (and org-element--cache-sync-requests
5022 (aref (car org-element--cache-sync-requests
) 0)))
5023 (node (org-element--cache-root))
5026 (let* ((element (avl-tree--node-data node
))
5027 (begin (org-element-property :begin element
)))
5030 (not (org-element--cache-key-less-p
5031 (org-element--cache-key element
) limit
)))
5032 (setq node
(avl-tree--node-left node
)))
5035 node
(avl-tree--node-left node
)))
5038 node
(avl-tree--node-right node
)))
5039 ;; We found an element in cache starting at POS. If `side'
5040 ;; is `both' we also want the next one in order to generate
5041 ;; a key in-between.
5043 ;; If the element is the first row or item in a table or
5044 ;; a plain list, we always return the table or the plain
5047 ;; In any other case, we return the element found.
5049 (setq lower element
)
5050 (setq node
(avl-tree--node-right node
)))
5051 ((and (memq (org-element-type element
) '(item table-row
))
5052 (let ((parent (org-element-property :parent element
)))
5053 (and (= (org-element-property :begin element
)
5054 (org-element-property :contents-begin parent
))
5063 (`both
(cons lower upper
))
5067 (defun org-element--cache-put (element)
5068 "Store ELEMENT in current buffer's cache, if allowed."
5069 (when (org-element--cache-active-p)
5070 (when org-element--cache-sync-requests
5071 ;; During synchronization, first build an appropriate key for
5072 ;; the new element so `avl-tree-enter' can insert it at the
5073 ;; right spot in the cache.
5074 (let ((keys (org-element--cache-find
5075 (org-element-property :begin element
) 'both
)))
5077 (org-element--cache-generate-key
5078 (and (car keys
) (org-element--cache-key (car keys
)))
5079 (cond ((cdr keys
) (org-element--cache-key (cdr keys
)))
5080 (org-element--cache-sync-requests
5081 (aref (car org-element--cache-sync-requests
) 0))))
5082 org-element--cache-sync-keys
)))
5083 (avl-tree-enter org-element--cache element
)))
5085 (defsubst org-element--cache-remove
(element)
5086 "Remove ELEMENT from cache.
5087 Assume ELEMENT belongs to cache and that a cache is active."
5088 (avl-tree-delete org-element--cache element
))
5091 ;;;; Synchronization
5093 (defsubst org-element--cache-set-timer
(buffer)
5094 "Set idle timer for cache synchronization in BUFFER."
5095 (when org-element--cache-sync-timer
5096 (cancel-timer org-element--cache-sync-timer
))
5097 (setq org-element--cache-sync-timer
5098 (run-with-idle-timer
5099 (let ((idle (current-idle-time)))
5100 (if idle
(time-add idle org-element-cache-sync-break
)
5101 org-element-cache-sync-idle-time
))
5103 #'org-element--cache-sync
5106 (defsubst org-element--cache-interrupt-p
(time-limit)
5107 "Non-nil when synchronization process should be interrupted.
5108 TIME-LIMIT is a time value or nil."
5110 (or (input-pending-p)
5111 (time-less-p time-limit
(current-time)))))
5113 (defsubst org-element--cache-shift-positions
(element offset
&optional props
)
5114 "Shift ELEMENT properties relative to buffer positions by OFFSET.
5116 Properties containing buffer positions are `:begin', `:end',
5117 `:contents-begin', `:contents-end' and `:structure'. When
5118 optional argument PROPS is a list of keywords, only shift
5119 properties provided in that list.
5121 Properties are modified by side-effect."
5122 (let ((properties (nth 1 element
)))
5123 ;; Shift `:structure' property for the first plain list only: it
5124 ;; is the only one that really matters and it prevents from
5125 ;; shifting it more than once.
5126 (when (and (or (not props
) (memq :structure props
))
5127 (eq (org-element-type element
) 'plain-list
)
5128 (not (eq (org-element-type (plist-get properties
:parent
))
5130 (dolist (item (plist-get properties
:structure
))
5131 (cl-incf (car item
) offset
)
5132 (cl-incf (nth 6 item
) offset
)))
5133 (dolist (key '(:begin
:contents-begin
:contents-end
:end
:post-affiliated
))
5134 (let ((value (and (or (not props
) (memq key props
))
5135 (plist-get properties key
))))
5136 (and value
(plist-put properties key
(+ offset value
)))))))
5138 (defun org-element--cache-sync (buffer &optional threshold future-change
)
5139 "Synchronize cache with recent modification in BUFFER.
5141 When optional argument THRESHOLD is non-nil, do the
5142 synchronization for all elements starting before or at threshold,
5143 then exit. Otherwise, synchronize cache for as long as
5144 `org-element-cache-sync-duration' or until Emacs leaves idle
5147 FUTURE-CHANGE, when non-nil, is a buffer position where changes
5148 not registered yet in the cache are going to happen. It is used
5149 in `org-element--cache-submit-request', where cache is partially
5150 updated before current modification are actually submitted."
5151 (when (buffer-live-p buffer
)
5152 (with-current-buffer buffer
5153 (let ((inhibit-quit t
) request next
)
5154 (when org-element--cache-sync-timer
5155 (cancel-timer org-element--cache-sync-timer
))
5157 (while org-element--cache-sync-requests
5158 (setq request
(car org-element--cache-sync-requests
)
5159 next
(nth 1 org-element--cache-sync-requests
))
5160 (org-element--cache-process-request
5162 (and next
(aref next
0))
5164 (and (not threshold
)
5165 (time-add (current-time)
5166 org-element-cache-sync-duration
))
5168 ;; Request processed. Merge current and next offsets and
5169 ;; transfer ending position.
5171 (cl-incf (aref next
3) (aref request
3))
5172 (aset next
2 (aref request
2)))
5173 (setq org-element--cache-sync-requests
5174 (cdr org-element--cache-sync-requests
))))
5175 ;; If more requests are awaiting, set idle timer accordingly.
5176 ;; Otherwise, reset keys.
5177 (if org-element--cache-sync-requests
5178 (org-element--cache-set-timer buffer
)
5179 (clrhash org-element--cache-sync-keys
))))))
5181 (defun org-element--cache-process-request
5182 (request next threshold time-limit future-change
)
5183 "Process synchronization REQUEST for all entries before NEXT.
5185 REQUEST is a vector, built by `org-element--cache-submit-request'.
5187 NEXT is a cache key, as returned by `org-element--cache-key'.
5189 When non-nil, THRESHOLD is a buffer position. Synchronization
5190 stops as soon as a shifted element begins after it.
5192 When non-nil, TIME-LIMIT is a time value. Synchronization stops
5193 after this time or when Emacs exits idle state.
5195 When non-nil, FUTURE-CHANGE is a buffer position where changes
5196 not registered yet in the cache are going to happen. See
5197 `org-element--cache-submit-request' for more information.
5199 Throw `interrupt' if the process stops before completing the
5202 (when (= (aref request
5) 0)
5205 ;; Delete all elements starting after BEG, but not after buffer
5206 ;; position END or past element with key NEXT. Also delete
5207 ;; elements contained within a previously removed element
5208 ;; (stored in `last-container').
5210 ;; At each iteration, we start again at tree root since
5211 ;; a deletion modifies structure of the balanced tree.
5214 (when (org-element--cache-interrupt-p time-limit
)
5215 (throw 'interrupt nil
))
5216 ;; Find first element in cache with key BEG or after it.
5217 (let ((beg (aref request
0))
5218 (end (aref request
2))
5219 (node (org-element--cache-root))
5220 data data-key last-container
)
5222 (let* ((element (avl-tree--node-data node
))
5223 (key (org-element--cache-key element
)))
5225 ((org-element--cache-key-less-p key beg
)
5226 (setq node
(avl-tree--node-right node
)))
5227 ((org-element--cache-key-less-p beg key
)
5230 node
(avl-tree--node-left node
)))
5231 (t (setq data element
5235 (let ((pos (org-element-property :begin data
)))
5236 (if (if (or (not next
)
5237 (org-element--cache-key-less-p data-key next
))
5241 (while (and up
(not (eq up last-container
)))
5242 (setq up
(org-element-property :parent up
)))
5244 (progn (when (and (not last-container
)
5245 (> (org-element-property :end data
)
5247 (setq last-container data
))
5248 (org-element--cache-remove data
))
5249 (aset request
0 data-key
)
5250 (aset request
1 pos
)
5252 (throw 'end-phase nil
)))
5253 ;; No element starting after modifications left in
5254 ;; cache: further processing is futile.
5255 (throw 'quit t
))))))
5256 (when (= (aref request
5) 1)
5259 ;; Phase 0 left a hole in the cache. Some elements after it
5260 ;; could have parents within. For example, in the following
5270 ;; if we remove a blank line between "item" and "Paragraph1",
5271 ;; everything down to "Paragraph2" is removed from cache. But
5272 ;; the paragraph now belongs to the list, and its `:parent'
5273 ;; property no longer is accurate.
5275 ;; Therefore we need to parse again elements in the hole, or at
5276 ;; least in its last section, so that we can re-parent
5277 ;; subsequent elements, during phase 2.
5279 ;; Note that we only need to get the parent from the first
5280 ;; element in cache after the hole.
5282 ;; When next key is lesser or equal to the current one, delegate
5283 ;; phase 1 processing to next request in order to preserve key
5284 ;; order among requests.
5285 (let ((key (aref request
0)))
5286 (when (and next
(not (org-element--cache-key-less-p key next
)))
5287 (let ((next-request (nth 1 org-element--cache-sync-requests
)))
5288 (aset next-request
0 key
)
5289 (aset next-request
1 (aref request
1))
5290 (aset next-request
5 1))
5292 ;; Next element will start at its beginning position plus
5293 ;; offset, since it hasn't been shifted yet. Therefore, LIMIT
5294 ;; contains the real beginning position of the first element to
5295 ;; shift and re-parent.
5296 (let ((limit (+ (aref request
1) (aref request
3))))
5297 (cond ((and threshold
(> limit threshold
)) (throw 'interrupt nil
))
5298 ((and future-change
(>= limit future-change
))
5299 ;; Changes are going to happen around this element and
5300 ;; they will trigger another phase 1 request. Skip the
5304 (let ((parent (org-element--parse-to limit t time-limit
)))
5305 (aset request
4 parent
)
5306 (aset request
5 2))))))
5309 ;; Shift all elements starting from key START, but before NEXT, by
5310 ;; OFFSET, and re-parent them when appropriate.
5312 ;; Elements are modified by side-effect so the tree structure
5315 ;; Once THRESHOLD, if any, is reached, or once there is an input
5316 ;; pending, exit. Before leaving, the current synchronization
5317 ;; request is updated.
5318 (let ((start (aref request
0))
5319 (offset (aref request
3))
5320 (parent (aref request
4))
5321 (node (org-element--cache-root))
5325 ;; No re-parenting nor shifting planned: request is over.
5326 (when (and (not parent
) (zerop offset
)) (throw 'quit t
))
5328 (let* ((data (avl-tree--node-data node
))
5329 (key (org-element--cache-key data
)))
5330 (if (and leftp
(avl-tree--node-left node
)
5331 (not (org-element--cache-key-less-p key start
)))
5332 (progn (push node stack
)
5333 (setq node
(avl-tree--node-left node
)))
5334 (unless (org-element--cache-key-less-p key start
)
5335 ;; We reached NEXT. Request is complete.
5336 (when (equal key next
) (throw 'quit t
))
5337 ;; Handle interruption request. Update current request.
5338 (when (or exit-flag
(org-element--cache-interrupt-p time-limit
))
5339 (aset request
0 key
)
5340 (aset request
4 parent
)
5341 (throw 'interrupt nil
))
5343 (unless (zerop offset
)
5344 (org-element--cache-shift-positions data offset
))
5345 (let ((begin (org-element-property :begin data
)))
5346 ;; Update PARENT and re-parent DATA, only when
5347 ;; necessary. Propagate new structures for lists.
5349 (<= (org-element-property :end parent
) begin
))
5350 (setq parent
(org-element-property :parent parent
)))
5351 (cond ((and (not parent
) (zerop offset
)) (throw 'quit nil
))
5353 (let ((p (org-element-property :parent data
)))
5355 (< (org-element-property :begin p
)
5356 (org-element-property :begin parent
)))))
5357 (org-element-put-property data
:parent parent
)
5358 (let ((s (org-element-property :structure parent
)))
5359 (when (and s
(org-element-property :structure data
))
5360 (org-element-put-property data
:structure s
)))))
5361 ;; Cache is up-to-date past THRESHOLD. Request
5363 (when (and threshold
(> begin threshold
)) (setq exit-flag t
))))
5364 (setq node
(if (setq leftp
(avl-tree--node-right node
))
5365 (avl-tree--node-right node
)
5367 ;; We reached end of tree: synchronization complete.
5370 (defun org-element--parse-to (pos &optional syncp time-limit
)
5371 "Parse elements in current section, down to POS.
5373 Start parsing from the closest between the last known element in
5374 cache or headline above. Return the smallest element containing
5377 When optional argument SYNCP is non-nil, return the parent of the
5378 element containing POS instead. In that case, it is also
5379 possible to provide TIME-LIMIT, which is a time value specifying
5380 when the parsing should stop. The function throws `interrupt' if
5381 the process stopped before finding the expected result."
5383 (org-with-wide-buffer
5385 (let* ((cached (and (org-element--cache-active-p)
5386 (org-element--cache-find pos nil
)))
5387 (begin (org-element-property :begin cached
))
5390 ;; Nothing in cache before point: start parsing from first
5391 ;; element following headline above, or first element in
5394 (when (org-with-limited-levels (outline-previous-heading))
5395 (setq mode
'planning
)
5397 (skip-chars-forward " \r\t\n")
5398 (beginning-of-line))
5399 ;; Cache returned exact match: return it.
5401 (throw 'exit
(if syncp
(org-element-property :parent cached
) cached
)))
5402 ;; There's a headline between cached value and POS: cached
5403 ;; value is invalid. Start parsing from first element
5404 ;; following the headline.
5405 ((re-search-backward
5406 (org-with-limited-levels org-outline-regexp-bol
) begin t
)
5408 (skip-chars-forward " \r\t\n")
5410 (setq mode
'planning
))
5411 ;; Check if CACHED or any of its ancestors contain point.
5413 ;; If there is such an element, we inspect it in order to know
5414 ;; if we return it or if we need to parse its contents.
5415 ;; Otherwise, we just start parsing from current location,
5416 ;; which is right after the top-most element containing
5419 ;; As a special case, if POS is at the end of the buffer, we
5420 ;; want to return the innermost element ending there.
5422 ;; Also, if we find an ancestor and discover that we need to
5423 ;; parse its contents, make sure we don't start from
5424 ;; `:contents-begin', as we would otherwise go past CACHED
5425 ;; again. Instead, in that situation, we will resume parsing
5426 ;; from NEXT, which is located after CACHED or its higher
5427 ;; ancestor not containing point.
5430 (pos (if (= (point-max) pos
) (1- pos
) pos
)))
5431 (goto-char (or (org-element-property :contents-begin cached
) begin
))
5432 (while (let ((end (org-element-property :end up
)))
5435 (setq up
(org-element-property :parent up
)))))
5437 ((eobp) (setq element up
))
5438 (t (setq element up next
(point)))))))
5439 ;; Parse successively each element until we reach POS.
5440 (let ((end (or (org-element-property :end element
)
5442 (org-with-limited-levels (outline-next-heading))
5447 (cond ((= (point) pos
) (throw 'exit parent
))
5448 ((org-element--cache-interrupt-p time-limit
)
5449 (throw 'interrupt nil
))))
5451 (setq element
(org-element--current-element
5453 (org-element-property :structure parent
)))
5454 (org-element-put-property element
:parent parent
)
5455 (org-element--cache-put element
))
5456 (let ((elem-end (org-element-property :end element
))
5457 (type (org-element-type element
)))
5459 ;; Skip any element ending before point. Also skip
5460 ;; element ending at point (unless it is also the end of
5461 ;; buffer) since we're sure that another element begins
5463 ((and (<= elem-end pos
) (/= (point-max) elem-end
))
5464 (goto-char elem-end
)
5465 (setq mode
(org-element--next-mode type nil
)))
5466 ;; A non-greater element contains point: return it.
5467 ((not (memq type org-element-greater-elements
))
5468 (throw 'exit element
))
5469 ;; Otherwise, we have to decide if ELEMENT really
5470 ;; contains POS. In that case we start parsing from
5471 ;; contents' beginning.
5473 ;; If POS is at contents' beginning but it is also at
5474 ;; the beginning of the first item in a list or a table.
5475 ;; In that case, we need to create an anchor for that
5476 ;; list or table, so return it.
5478 ;; Also, if POS is at the end of the buffer, no element
5479 ;; can start after it, but more than one may end there.
5480 ;; Arbitrarily, we choose to return the innermost of
5482 ((let ((cbeg (org-element-property :contents-begin element
))
5483 (cend (org-element-property :contents-end element
)))
5488 (not (memq type
'(plain-list table
)))))
5490 (and (= cend pos
) (= (point-max) pos
)))))
5491 (goto-char (or next cbeg
))
5493 mode
(org-element--next-mode type t
)
5496 ;; Otherwise, return ELEMENT as it is the smallest
5497 ;; element containing POS.
5498 (t (throw 'exit element
))))
5499 (setq element nil
)))))))
5502 ;;;; Staging Buffer Changes
5504 (defconst org-element--cache-sensitive-re
5506 org-outline-regexp-bol
"\\|"
5507 "\\\\end{[A-Za-z0-9*]+}[ \t]*$" "\\|"
5509 "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ \t]*$\\)\\)" "\\|"
5510 "\\\\begin{[A-Za-z0-9*]+}" "\\|"
5511 ":\\(?:\\w\\|[-_]\\)+:[ \t]*$"
5513 "Regexp matching a sensitive line, structure wise.
5514 A sensitive line is a headline, inlinetask, block, drawer, or
5515 latex-environment boundary. When such a line is modified,
5516 structure changes in the document may propagate in the whole
5517 section, possibly making cache invalid.")
5519 (defvar org-element--cache-change-warning nil
5520 "Non-nil when a sensitive line is about to be changed.
5521 It is a symbol among nil, t and `headline'.")
5523 (defun org-element--cache-before-change (beg end
)
5524 "Request extension of area going to be modified if needed.
5525 BEG and END are the beginning and end of the range of changed
5526 text. See `before-change-functions' for more information."
5527 (when (org-element--cache-active-p)
5528 (org-with-wide-buffer
5531 (let ((bottom (save-excursion (goto-char end
) (line-end-position))))
5532 (setq org-element--cache-change-warning
5534 (if (and (org-with-limited-levels (org-at-heading-p))
5535 (= (line-end-position) bottom
))
5537 (let ((case-fold-search t
))
5539 org-element--cache-sensitive-re bottom t
)))))))))
5541 (defun org-element--cache-after-change (beg end pre
)
5542 "Update buffer modifications for current buffer.
5543 BEG and END are the beginning and end of the range of changed
5544 text, and the length in bytes of the pre-change text replaced by
5545 that range. See `after-change-functions' for more information."
5546 (when (org-element--cache-active-p)
5547 (org-with-wide-buffer
5552 (bottom (save-excursion (goto-char end
) (line-end-position))))
5553 ;; Determine if modified area needs to be extended, according
5554 ;; to both previous and current state. We make a special
5555 ;; case for headline editing: if a headline is modified but
5556 ;; not removed, do not extend.
5557 (when (pcase org-element--cache-change-warning
5560 (not (and (org-with-limited-levels (org-at-heading-p))
5561 (= (line-end-position) bottom
))))
5563 (let ((case-fold-search t
))
5565 org-element--cache-sensitive-re bottom t
))))
5566 ;; Effectively extend modified area.
5567 (org-with-limited-levels
5568 (setq top
(progn (goto-char top
)
5569 (when (outline-previous-heading) (forward-line))
5571 (setq bottom
(progn (goto-char bottom
)
5572 (if (outline-next-heading) (1- (point))
5574 ;; Store synchronization request.
5575 (let ((offset (- end beg pre
)))
5576 (org-element--cache-submit-request top
(- bottom offset
) offset
)))))
5577 ;; Activate a timer to process the request during idle time.
5578 (org-element--cache-set-timer (current-buffer))))
5580 (defun org-element--cache-for-removal (beg end offset
)
5581 "Return first element to remove from cache.
5583 BEG and END are buffer positions delimiting buffer modifications.
5584 OFFSET is the size of the changes.
5586 Returned element is usually the first element in cache containing
5587 any position between BEG and END. As an exception, greater
5588 elements around the changes that are robust to contents
5589 modifications are preserved and updated according to the
5591 (let* ((elements (org-element--cache-find (1- beg
) 'both
))
5592 (before (car elements
))
5593 (after (cdr elements
)))
5594 (if (not before
) after
5598 (if (let ((type (org-element-type up
)))
5599 (and (or (memq type
'(center-block dynamic-block quote-block
5601 ;; Drawers named "PROPERTIES" are probably
5602 ;; a properties drawer being edited. Force
5603 ;; parsing to check if editing is over.
5604 (and (eq type
'drawer
)
5606 (org-element-property :drawer-name up
)
5608 (let ((cbeg (org-element-property :contents-begin up
)))
5611 (> (org-element-property :contents-end up
) end
)))))
5612 ;; UP is a robust greater element containing changes.
5613 ;; We only need to extend its ending boundaries.
5614 (org-element--cache-shift-positions
5615 up offset
'(:contents-end
:end
))
5617 (when robust-flag
(setq robust-flag nil
)))
5618 (setq up
(org-element-property :parent up
)))
5619 ;; We're at top level element containing ELEMENT: if it's
5620 ;; altered by buffer modifications, it is first element in
5621 ;; cache to be removed. Otherwise, that first element is the
5624 ;; As a special case, do not remove BEFORE if it is a robust
5625 ;; container for current changes.
5626 (if (or (< (org-element-property :end before
) beg
) robust-flag
) after
5629 (defun org-element--cache-submit-request (beg end offset
)
5630 "Submit a new cache synchronization request for current buffer.
5631 BEG and END are buffer positions delimiting the minimal area
5632 where cache data should be removed. OFFSET is the size of the
5633 change, as an integer."
5634 (let ((next (car org-element--cache-sync-requests
))
5635 delete-to delete-from
)
5637 (zerop (aref next
5))
5638 (> (setq delete-to
(+ (aref next
2) (aref next
3))) end
)
5639 (<= (setq delete-from
(aref next
1)) end
))
5640 ;; Current changes can be merged with first sync request: we
5641 ;; can save a partial cache synchronization.
5643 (cl-incf (aref next
3) offset
)
5644 ;; If last change happened within area to be removed, extend
5645 ;; boundaries of robust parents, if any. Otherwise, find
5646 ;; first element to remove and update request accordingly.
5647 (if (> beg delete-from
)
5648 (let ((up (aref next
4)))
5650 (org-element--cache-shift-positions
5651 up offset
'(:contents-end
:end
))
5652 (setq up
(org-element-property :parent up
))))
5653 (let ((first (org-element--cache-for-removal beg delete-to offset
)))
5655 (aset next
0 (org-element--cache-key first
))
5656 (aset next
1 (org-element-property :begin first
))
5657 (aset next
4 (org-element-property :parent first
))))))
5658 ;; Ensure cache is correct up to END. Also make sure that NEXT,
5659 ;; if any, is no longer a 0-phase request, thus ensuring that
5660 ;; phases are properly ordered. We need to provide OFFSET as
5661 ;; optional parameter since current modifications are not known
5662 ;; yet to the otherwise correct part of the cache (i.e, before
5663 ;; the first request).
5664 (when next
(org-element--cache-sync (current-buffer) end beg
))
5665 (let ((first (org-element--cache-for-removal beg end offset
)))
5667 (push (let ((beg (org-element-property :begin first
))
5668 (key (org-element--cache-key first
)))
5670 ;; When changes happen before the first known
5671 ;; element, re-parent and shift the rest of the
5673 ((> beg end
) (vector key beg nil offset nil
1))
5674 ;; Otherwise, we find the first non robust
5675 ;; element containing END. All elements between
5676 ;; FIRST and this one are to be removed.
5677 ((let ((first-end (org-element-property :end first
)))
5678 (and (> first-end end
)
5679 (vector key beg first-end offset first
0))))
5681 (let* ((element (org-element--cache-find end
))
5682 (end (org-element-property :end element
))
5684 (while (and (setq up
(org-element-property :parent up
))
5685 (>= (org-element-property :begin up
) beg
))
5686 (setq end
(org-element-property :end up
)
5688 (vector key beg end offset element
0)))))
5689 org-element--cache-sync-requests
)
5690 ;; No element to remove. No need to re-parent either.
5691 ;; Simply shift additional elements, if any, by OFFSET.
5692 (when org-element--cache-sync-requests
5693 (cl-incf (aref (car org-element--cache-sync-requests
) 3)
5697 ;;;; Public Functions
5700 (defun org-element-cache-reset (&optional all
)
5701 "Reset cache in current buffer.
5702 When optional argument ALL is non-nil, reset cache in all Org
5705 (dolist (buffer (if all
(buffer-list) (list (current-buffer))))
5706 (with-current-buffer buffer
5707 (when (and org-element-use-cache
(derived-mode-p 'org-mode
))
5708 (setq-local org-element--cache
5709 (avl-tree-create #'org-element--cache-compare
))
5710 (setq-local org-element--cache-sync-keys
5711 (make-hash-table :weakness
'key
:test
#'eq
))
5712 (setq-local org-element--cache-change-warning nil
)
5713 (setq-local org-element--cache-sync-requests nil
)
5714 (setq-local org-element--cache-sync-timer nil
)
5715 (add-hook 'before-change-functions
5716 #'org-element--cache-before-change nil t
)
5717 (add-hook 'after-change-functions
5718 #'org-element--cache-after-change nil t
)))))
5721 (defun org-element-cache-refresh (pos)
5722 "Refresh cache at position POS."
5723 (when (org-element--cache-active-p)
5724 (org-element--cache-sync (current-buffer) pos
)
5725 (org-element--cache-submit-request pos pos
0)
5726 (org-element--cache-set-timer (current-buffer))))
5732 ;; The first move is to implement a way to obtain the smallest element
5733 ;; containing point. This is the job of `org-element-at-point'. It
5734 ;; basically jumps back to the beginning of section containing point
5735 ;; and proceed, one element after the other, with
5736 ;; `org-element--current-element' until the container is found. Note:
5737 ;; When using `org-element-at-point', secondary values are never
5738 ;; parsed since the function focuses on elements, not on objects.
5740 ;; At a deeper level, `org-element-context' lists all elements and
5741 ;; objects containing point.
5743 ;; `org-element-nested-p' and `org-element-swap-A-B' may be used
5744 ;; internally by navigation and manipulation tools.
5748 (defun org-element-at-point ()
5749 "Determine closest element around point.
5751 Return value is a list like (TYPE PROPS) where TYPE is the type
5752 of the element and PROPS a plist of properties associated to the
5755 Possible types are defined in `org-element-all-elements'.
5756 Properties depend on element or object type, but always include
5757 `:begin', `:end', `:parent' and `:post-blank' properties.
5759 As a special case, if point is at the very beginning of the first
5760 item in a list or sub-list, returned element will be that list
5761 instead of the item. Likewise, if point is at the beginning of
5762 the first row of a table, returned element will be the table
5763 instead of the first row.
5765 When point is at the end of the buffer, return the innermost
5766 element ending there."
5767 (org-with-wide-buffer
5768 (let ((origin (point)))
5770 (skip-chars-backward " \r\t\n")
5772 ;; Within blank lines at the beginning of buffer, return nil.
5774 ;; Within blank lines right after a headline, return that
5776 ((org-with-limited-levels (org-at-heading-p))
5778 (org-element-headline-parser (point-max) t
))
5779 ;; Otherwise parse until we find element containing ORIGIN.
5781 (when (org-element--cache-active-p)
5782 (if (not org-element--cache
) (org-element-cache-reset)
5783 (org-element--cache-sync (current-buffer) origin
)))
5784 (org-element--parse-to origin
))))))
5787 (defun org-element-context (&optional element
)
5788 "Return smallest element or object around point.
5790 Return value is a list like (TYPE PROPS) where TYPE is the type
5791 of the element or object and PROPS a plist of properties
5794 Possible types are defined in `org-element-all-elements' and
5795 `org-element-all-objects'. Properties depend on element or
5796 object type, but always include `:begin', `:end', `:parent' and
5799 As a special case, if point is right after an object and not at
5800 the beginning of any other object, return that object.
5802 Optional argument ELEMENT, when non-nil, is the closest element
5803 containing point, as returned by `org-element-at-point'.
5804 Providing it allows for quicker computation."
5805 (catch 'objects-forbidden
5806 (org-with-wide-buffer
5807 (let* ((pos (point))
5808 (element (or element
(org-element-at-point)))
5809 (type (org-element-type element
))
5810 (post (org-element-property :post-affiliated element
)))
5811 ;; If point is inside an element containing objects or
5812 ;; a secondary string, narrow buffer to the container and
5813 ;; proceed with parsing. Otherwise, return ELEMENT.
5815 ;; At a parsed affiliated keyword, check if we're inside main
5817 ((and post
(< pos post
))
5819 (let ((case-fold-search t
)) (looking-at org-element--affiliated-re
))
5821 ((not (member-ignore-case (match-string 1)
5822 org-element-parsed-keywords
))
5823 (throw 'objects-forbidden element
))
5824 ((< (match-end 0) pos
)
5825 (narrow-to-region (match-end 0) (line-end-position)))
5826 ((and (match-beginning 2)
5827 (>= pos
(match-beginning 2))
5828 (< pos
(match-end 2)))
5829 (narrow-to-region (match-beginning 2) (match-end 2)))
5830 (t (throw 'objects-forbidden element
)))
5831 ;; Also change type to retrieve correct restrictions.
5832 (setq type
'keyword
))
5833 ;; At an item, objects can only be located within tag, if any.
5835 (let ((tag (org-element-property :tag element
)))
5836 (if (or (not tag
) (/= (line-beginning-position) post
))
5837 (throw 'objects-forbidden element
)
5839 (search-forward tag
(line-end-position))
5840 (goto-char (match-beginning 0))
5841 (if (and (>= pos
(point)) (< pos
(match-end 0)))
5842 (narrow-to-region (point) (match-end 0))
5843 (throw 'objects-forbidden element
)))))
5844 ;; At an headline or inlinetask, objects are in title.
5845 ((memq type
'(headline inlinetask
))
5846 (let ((case-fold-search nil
))
5847 (goto-char (org-element-property :begin element
))
5848 (looking-at org-complex-heading-regexp
)
5849 (let ((end (match-end 4)))
5850 (if (not end
) (throw 'objects-forbidden element
)
5851 (goto-char (match-beginning 4))
5852 (when (looking-at org-comment-string
)
5853 (goto-char (match-end 0)))
5854 (if (>= (point) end
) (throw 'objects-forbidden element
)
5855 (narrow-to-region (point) end
))))))
5856 ;; At a paragraph, a table-row or a verse block, objects are
5857 ;; located within their contents.
5858 ((memq type
'(paragraph table-row verse-block
))
5859 (let ((cbeg (org-element-property :contents-begin element
))
5860 (cend (org-element-property :contents-end element
)))
5861 ;; CBEG is nil for table rules.
5862 (if (and cbeg cend
(>= pos cbeg
)
5863 (or (< pos cend
) (and (= pos cend
) (eobp))))
5864 (narrow-to-region cbeg cend
)
5865 (throw 'objects-forbidden element
))))
5866 ;; At a planning line, if point is at a timestamp, return it,
5867 ;; otherwise, return element.
5868 ((eq type
'planning
)
5869 (dolist (p '(:closed
:deadline
:scheduled
))
5870 (let ((timestamp (org-element-property p element
)))
5871 (when (and timestamp
5872 (<= (org-element-property :begin timestamp
) pos
)
5873 (> (org-element-property :end timestamp
) pos
))
5874 (throw 'objects-forbidden timestamp
))))
5875 ;; All other locations cannot contain objects: bail out.
5876 (throw 'objects-forbidden element
))
5877 (t (throw 'objects-forbidden element
)))
5878 (goto-char (point-min))
5879 (let ((restriction (org-element-restriction type
))
5884 (let ((next (org-element--object-lex restriction
)))
5885 (when next
(org-element-put-property next
:parent parent
))
5886 ;; Process NEXT, if any, in order to know if we need to
5887 ;; skip it, return it or move into it.
5888 (if (or (not next
) (> (org-element-property :begin next
) pos
))
5889 (throw 'exit
(or last parent
))
5890 (let ((end (org-element-property :end next
))
5891 (cbeg (org-element-property :contents-begin next
))
5892 (cend (org-element-property :contents-end next
)))
5894 ;; Skip objects ending before point. Also skip
5895 ;; objects ending at point unless it is also the
5896 ;; end of buffer, since we want to return the
5897 ;; innermost object.
5898 ((and (<= end pos
) (/= (point-max) end
))
5900 ;; For convenience, when object ends at POS,
5901 ;; without any space, store it in LAST, as we
5902 ;; will return it if no object starts here.
5903 (when (and (= end pos
)
5904 (not (memq (char-before) '(?\s ?
\t))))
5906 ;; If POS is within a container object, move into
5911 ;; At contents' end, if there is no
5912 ;; space before point, also move into
5913 ;; object, for consistency with
5914 ;; convenience feature above.
5916 (or (= (point-max) pos
)
5917 (not (memq (char-before pos
)
5920 (narrow-to-region (point) cend
)
5922 (setq restriction
(org-element-restriction next
)))
5923 ;; Otherwise, return NEXT.
5924 (t (throw 'exit next
)))))))))))))
5926 (defun org-element-lineage (blob &optional types with-self
)
5927 "List all ancestors of a given element or object.
5929 BLOB is an object or element.
5931 When optional argument TYPES is a list of symbols, return the
5932 first element or object in the lineage whose type belongs to that
5935 When optional argument WITH-SELF is non-nil, lineage includes
5936 BLOB itself as the first element, and TYPES, if provided, also
5939 When BLOB is obtained through `org-element-context' or
5940 `org-element-at-point', only ancestors from its section can be
5941 found. There is no such limitation when BLOB belongs to a full
5943 (let ((up (if with-self blob
(org-element-property :parent blob
)))
5945 (while (and up
(not (memq (org-element-type up
) types
)))
5946 (unless types
(push up ancestors
))
5947 (setq up
(org-element-property :parent up
)))
5948 (if types up
(nreverse ancestors
))))
5950 (defun org-element-nested-p (elem-A elem-B
)
5951 "Non-nil when elements ELEM-A and ELEM-B are nested."
5952 (let ((beg-A (org-element-property :begin elem-A
))
5953 (beg-B (org-element-property :begin elem-B
))
5954 (end-A (org-element-property :end elem-A
))
5955 (end-B (org-element-property :end elem-B
)))
5956 (or (and (>= beg-A beg-B
) (<= end-A end-B
))
5957 (and (>= beg-B beg-A
) (<= end-B end-A
)))))
5959 (defun org-element-swap-A-B (elem-A elem-B
)
5960 "Swap elements ELEM-A and ELEM-B.
5961 Assume ELEM-B is after ELEM-A in the buffer. Leave point at the
5963 (goto-char (org-element-property :begin elem-A
))
5964 ;; There are two special cases when an element doesn't start at bol:
5965 ;; the first paragraph in an item or in a footnote definition.
5966 (let ((specialp (not (bolp))))
5967 ;; Only a paragraph without any affiliated keyword can be moved at
5968 ;; ELEM-A position in such a situation. Note that the case of
5969 ;; a footnote definition is impossible: it cannot contain two
5970 ;; paragraphs in a row because it cannot contain a blank line.
5972 (or (not (eq (org-element-type elem-B
) 'paragraph
))
5973 (/= (org-element-property :begin elem-B
)
5974 (org-element-property :contents-begin elem-B
))))
5975 (error "Cannot swap elements"))
5976 ;; In a special situation, ELEM-A will have no indentation. We'll
5977 ;; give it ELEM-B's (which will in, in turn, have no indentation).
5978 (let* ((ind-B (when specialp
5979 (goto-char (org-element-property :begin elem-B
))
5980 (org-get-indentation)))
5981 (beg-A (org-element-property :begin elem-A
))
5982 (end-A (save-excursion
5983 (goto-char (org-element-property :end elem-A
))
5984 (skip-chars-backward " \r\t\n")
5986 (beg-B (org-element-property :begin elem-B
))
5987 (end-B (save-excursion
5988 (goto-char (org-element-property :end elem-B
))
5989 (skip-chars-backward " \r\t\n")
5991 ;; Store inner overlays responsible for visibility status.
5992 ;; We also need to store their boundaries as they will be
5993 ;; removed from buffer.
5998 (and (>= (overlay-start o
) beg-A
)
5999 (<= (overlay-end o
) end-A
)
6000 (list o
(overlay-start o
) (overlay-end o
))))
6001 (overlays-in beg-A end-A
)))
6004 (and (>= (overlay-start o
) beg-B
)
6005 (<= (overlay-end o
) end-B
)
6006 (list o
(overlay-start o
) (overlay-end o
))))
6007 (overlays-in beg-B end-B
)))))
6009 (body-A (buffer-substring beg-A end-A
))
6010 (body-B (delete-and-extract-region beg-B end-B
)))
6013 (setq body-B
(replace-regexp-in-string "\\`[ \t]*" "" body-B
))
6014 (indent-to-column ind-B
))
6016 ;; Restore ex ELEM-A overlays.
6017 (let ((offset (- beg-B beg-A
)))
6018 (dolist (o (car overlays
))
6019 (move-overlay (car o
) (+ (nth 1 o
) offset
) (+ (nth 2 o
) offset
)))
6021 (delete-region beg-A end-A
)
6023 ;; Restore ex ELEM-B overlays.
6024 (dolist (o (cdr overlays
))
6025 (move-overlay (car o
) (- (nth 1 o
) offset
) (- (nth 2 o
) offset
))))
6026 (goto-char (org-element-property :end elem-B
)))))
6029 (provide 'org-element
)
6032 ;; generated-autoload-file: "org-loaddefs.el"
6035 ;;; org-element.el ends here