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