1 ;;; org-element.el --- Parser And Applications for Org syntax
3 ;; Copyright (C) 2012 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; This file is not part of GNU Emacs.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
25 ;; Org syntax can be divided into three categories: "Greater
26 ;; elements", "Elements" and "Objects".
28 ;; Elements are related to the structure of the document. Indeed, all
29 ;; elements are a cover for the document: each position within belongs
30 ;; to at least one element.
32 ;; An element always starts and ends at the beginning of a line. With
33 ;; a few exceptions (namely `babel-call', `clock', `headline', `item',
34 ;; `keyword', `planning', `property-drawer' and `section' types), it
35 ;; can also accept a fixed set of keywords as attributes. Those are
36 ;; called "affiliated keywords" to distinguish them from other
37 ;; keywords, which are full-fledged elements. Almost all affiliated
38 ;; keywords are referenced in `org-element-affiliated-keywords'; the
39 ;; others are export attributes and start with "ATTR_" prefix.
41 ;; Element containing other elements (and only elements) are called
42 ;; greater elements. Concerned types are: `center-block', `drawer',
43 ;; `dynamic-block', `footnote-definition', `headline', `inlinetask',
44 ;; `item', `plain-list', `quote-block', `section' and `special-block'.
46 ;; Other element types are: `babel-call', `clock', `comment',
47 ;; `comment-block', `example-block', `export-block', `fixed-width',
48 ;; `horizontal-rule', `keyword', `latex-environment', `paragraph',
49 ;; `planning', `property-drawer', `quote-section', `src-block',
50 ;; `table', `table-row' and `verse-block'. Among them, `paragraph'
51 ;; and `verse-block' types can contain Org objects and plain text.
53 ;; Objects are related to document's contents. Some of them are
54 ;; recursive. Associated types are of the following: `bold', `code',
55 ;; `entity', `export-snippet', `footnote-reference',
56 ;; `inline-babel-call', `inline-src-block', `italic',
57 ;; `latex-fragment', `line-break', `link', `macro', `radio-target',
58 ;; `statistics-cookie', `strike-through', `subscript', `superscript',
59 ;; `table-cell', `target', `timestamp', `underline' and `verbatim'.
61 ;; Some elements also have special properties whose value can hold
62 ;; objects themselves (i.e. an item tag or an headline name). Such
63 ;; values are called "secondary strings". Any object belongs to
64 ;; either an element or a secondary string.
66 ;; Notwithstanding affiliated keywords, each greater element, element
67 ;; and object has a fixed set of properties attached to it. Among
68 ;; them, four are shared by all types: `:begin' and `:end', which
69 ;; refer to the beginning and ending buffer positions of the
70 ;; considered element or object, `:post-blank', which holds the number
71 ;; of blank lines, or white spaces, at its end and `:parent' which
72 ;; refers to the element or object containing it. Greater elements
73 ;; and elements containing objects will also have `:contents-begin'
74 ;; and `:contents-end' properties to delimit contents.
76 ;; Lisp-wise, an element or an object can be represented as a list.
77 ;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
78 ;; TYPE is a symbol describing the Org element or object.
79 ;; PROPERTIES is the property list attached to it. See docstring of
80 ;; appropriate parsing function to get an exhaustive
82 ;; CONTENTS is a list of elements, objects or raw strings contained
83 ;; in the current element or object, when applicable.
85 ;; An Org buffer is a nested list of such elements and objects, whose
86 ;; type is `org-data' and properties is nil.
88 ;; The first part of this file defines Org syntax, while the second
89 ;; one provide accessors and setters functions.
91 ;; The next part implements a parser and an interpreter for each
92 ;; element and object type in Org syntax.
94 ;; The following part creates a fully recursive buffer parser. It
95 ;; also provides a tool to map a function to elements or objects
96 ;; matching some criteria in the parse tree. Functions of interest
97 ;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
98 ;; extent, `org-element-parse-secondary-string'.
100 ;; The penultimate part is the cradle of an interpreter for the
101 ;; obtained parse tree: `org-element-interpret-data'.
103 ;; The library ends by furnishing `org-element-at-point' function, and
104 ;; a way to give information about document structure around point
105 ;; with `org-element-context'.
116 ;;; Definitions And Rules
118 ;; Define elements, greater elements and specify recursive objects,
119 ;; along with the affiliated keywords recognized. Also set up
120 ;; restrictions on recursive objects combinations.
122 ;; These variables really act as a control center for the parsing
125 (defconst org-element-paragraph-separate
127 ;; Headlines, inlinetasks.
128 org-outline-regexp
"\\|"
129 ;; Footnote definitions.
130 "\\[\\(?:[0-9]+\\|fn:[-_[:word:]]+\\)\\]" "\\|"
134 ;; Tables (any type).
135 "\\(?:|\\|\\+-[-+]\\)" "\\|"
136 ;; Blocks (any type), Babel calls, drawers (any type),
137 ;; fixed-width areas and keywords. Note: this is only an
138 ;; indication and need some thorough check.
141 "-\\{5,\\}[ \t]*$" "\\|"
142 ;; LaTeX environments.
143 "\\\\begin{\\([A-Za-z0-9]+\\*?\\)}" "\\|"
144 ;; Planning and Clock lines.
145 (regexp-opt (list org-scheduled-string
151 (let ((term (case org-plain-list-ordered-item-terminator
152 (?\
) ")") (?.
"\\.") (otherwise "[.)]")))
153 (alpha (and org-alphabetical-lists
"\\|[A-Za-z]")))
154 (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha
"\\)" term
"\\)"
155 "\\(?:[ \t]\\|$\\)"))
157 "Regexp to separate paragraphs in an Org buffer.
158 In the case of lines starting with \"#\" and \":\", this regexp
159 is not sufficient to know if point is at a paragraph ending. See
160 `org-element-paragraph-parser' for more information.")
162 (defconst org-element-all-elements
163 '(center-block clock comment comment-block drawer dynamic-block example-block
164 export-block fixed-width footnote-definition headline
165 horizontal-rule inlinetask item keyword latex-environment
166 babel-call paragraph plain-list planning property-drawer
167 quote-block quote-section section special-block src-block table
168 table-row verse-block
)
169 "Complete list of element types.")
171 (defconst org-element-greater-elements
172 '(center-block drawer dynamic-block footnote-definition headline inlinetask
173 item plain-list quote-block section special-block table
)
174 "List of recursive element types aka Greater Elements.")
176 (defconst org-element-all-successors
177 '(export-snippet footnote-reference inline-babel-call inline-src-block
178 latex-or-entity line-break link macro radio-target
179 statistics-cookie sub
/superscript table-cell target
180 text-markup timestamp
)
181 "Complete list of successors.")
183 (defconst org-element-object-successor-alist
184 '((subscript . sub
/superscript
) (superscript . sub
/superscript
)
185 (bold . text-markup
) (code . text-markup
) (italic . text-markup
)
186 (strike-through . text-markup
) (underline . text-markup
)
187 (verbatim . text-markup
) (entity . latex-or-entity
)
188 (latex-fragment . latex-or-entity
))
189 "Alist of translations between object type and successor name.
191 Sharing the same successor comes handy when, for example, the
192 regexp matching one object can also match the other object.")
194 (defconst org-element-all-objects
195 '(bold code entity export-snippet footnote-reference inline-babel-call
196 inline-src-block italic line-break latex-fragment link macro
197 radio-target statistics-cookie strike-through subscript superscript
198 table-cell target timestamp underline verbatim
)
199 "Complete list of object types.")
201 (defconst org-element-recursive-objects
202 '(bold italic link subscript radio-target strike-through superscript
203 table-cell underline
)
204 "List of recursive object types.")
206 (defconst org-element-block-name-alist
207 '(("CENTER" . org-element-center-block-parser
)
208 ("COMMENT" . org-element-comment-block-parser
)
209 ("EXAMPLE" . org-element-example-block-parser
)
210 ("QUOTE" . org-element-quote-block-parser
)
211 ("SRC" . org-element-src-block-parser
)
212 ("VERSE" . org-element-verse-block-parser
))
213 "Alist between block names and the associated parsing function.
214 Names must be uppercase. Any block whose name has no association
215 is parsed with `org-element-special-block-parser'.")
217 (defconst org-element-link-type-is-file
218 '("file" "file+emacs" "file+sys" "docview")
219 "List of link types equivalent to \"file\".
220 Only these types can accept search options and an explicit
221 application to open them.")
223 (defconst org-element-affiliated-keywords
224 '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
225 "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
226 "List of affiliated keywords as strings.
227 By default, all keywords setting attributes (i.e. \"ATTR_LATEX\")
228 are affiliated keywords and need not to be in this list.")
230 (defconst org-element--affiliated-re
231 (format "[ \t]*#\\+%s:"
232 ;; Regular affiliated keywords.
233 (format "\\(%s\\|ATTR_[-_A-Za-z0-9]+\\)\\(?:\\[\\(.*\\)\\]\\)?"
234 (regexp-opt org-element-affiliated-keywords
)))
235 "Regexp matching any affiliated keyword.
237 Keyword name is put in match group 1. Moreover, if keyword
238 belongs to `org-element-dual-keywords', put the dual value in
241 Don't modify it, set `org-element-affiliated-keywords' instead.")
243 (defconst org-element-keyword-translation-alist
244 '(("DATA" .
"NAME") ("LABEL" .
"NAME") ("RESNAME" .
"NAME")
245 ("SOURCE" .
"NAME") ("SRCNAME" .
"NAME") ("TBLNAME" .
"NAME")
246 ("RESULT" .
"RESULTS") ("HEADERS" .
"HEADER"))
247 "Alist of usual translations for keywords.
248 The key is the old name and the value the new one. The property
249 holding their value will be named after the translated name.")
251 (defconst org-element-multiple-keywords
'("HEADER")
252 "List of affiliated keywords that can occur more that once in an element.
254 Their value will be consed into a list of strings, which will be
255 returned as the value of the property.
257 This list is checked after translations have been applied. See
258 `org-element-keyword-translation-alist'.
260 By default, all keywords setting attributes (i.e. \"ATTR_LATEX\")
261 allow multiple occurrences and need not to be in this list.")
263 (defconst org-element-parsed-keywords
'("AUTHOR" "CAPTION" "DATE" "TITLE")
264 "List of keywords whose value can be parsed.
266 Their value will be stored as a secondary string: a list of
269 This list is checked after translations have been applied. See
270 `org-element-keyword-translation-alist'.")
272 (defconst org-element-dual-keywords
'("CAPTION" "RESULTS")
273 "List of keywords which can have a secondary value.
275 In Org syntax, they can be written with optional square brackets
276 before the colons. For example, results keyword can be
277 associated to a hash value with the following:
279 #+RESULTS[hash-string]: some-source
281 This list is checked after translations have been applied. See
282 `org-element-keyword-translation-alist'.")
284 (defconst org-element-object-restrictions
285 '((bold export-snippet inline-babel-call inline-src-block latex-or-entity link
286 radio-target sub
/superscript target text-markup timestamp
)
287 (footnote-reference export-snippet footnote-reference inline-babel-call
288 inline-src-block latex-or-entity line-break link macro
289 radio-target sub
/superscript target text-markup
291 (headline inline-babel-call inline-src-block latex-or-entity link macro
292 radio-target statistics-cookie sub
/superscript target text-markup
294 (inlinetask inline-babel-call inline-src-block latex-or-entity link macro
295 radio-target sub
/superscript target text-markup timestamp
)
296 (italic export-snippet inline-babel-call inline-src-block latex-or-entity
297 link radio-target sub
/superscript target text-markup timestamp
)
298 (item export-snippet footnote-reference inline-babel-call latex-or-entity
299 link macro radio-target sub
/superscript target text-markup
)
300 (keyword latex-or-entity macro sub
/superscript text-markup
)
301 (link export-snippet inline-babel-call inline-src-block latex-or-entity link
302 sub
/superscript text-markup
)
303 (paragraph export-snippet footnote-reference inline-babel-call
304 inline-src-block latex-or-entity line-break link macro
305 radio-target statistics-cookie sub
/superscript target text-markup
307 (radio-target export-snippet latex-or-entity sub
/superscript
)
308 (strike-through export-snippet inline-babel-call inline-src-block
309 latex-or-entity link radio-target sub
/superscript target
310 text-markup timestamp
)
311 (subscript export-snippet inline-babel-call inline-src-block latex-or-entity
312 sub
/superscript target text-markup
)
313 (superscript export-snippet inline-babel-call inline-src-block
314 latex-or-entity sub
/superscript target text-markup
)
315 (table-cell export-snippet latex-or-entity link macro radio-target
316 sub
/superscript target text-markup timestamp
)
317 (table-row table-cell
)
318 (underline export-snippet inline-babel-call inline-src-block latex-or-entity
319 link radio-target sub
/superscript target text-markup timestamp
)
320 (verse-block footnote-reference inline-babel-call inline-src-block
321 latex-or-entity line-break link macro radio-target
322 sub
/superscript target text-markup timestamp
))
323 "Alist of objects restrictions.
325 CAR is an element or object type containing objects and CDR is
326 a list of successors that will be called within an element or
329 For example, in a `radio-target' object, one can only find
330 entities, export snippets, latex-fragments, subscript and
333 This alist also applies to secondary string. For example, an
334 `headline' type element doesn't directly contain objects, but
335 still has an entry since one of its properties (`:title') does.")
337 (defconst org-element-secondary-value-alist
338 '((headline .
:title
)
339 (inlinetask .
:title
)
341 (footnote-reference .
:inline-definition
))
342 "Alist between element types and location of secondary value.")
346 ;;; Accessors and Setters
348 ;; Provide four accessors: `org-element-type', `org-element-property'
349 ;; `org-element-contents' and `org-element-restriction'.
351 ;; Setter functions allow to modify elements by side effect. There is
352 ;; `org-element-put-property', `org-element-set-contents',
353 ;; `org-element-set-element' and `org-element-adopt-element'. Note
354 ;; that `org-element-set-element' and `org-element-adopt-elements' are
355 ;; higher level functions since also update `:parent' property.
357 (defsubst org-element-type
(element)
358 "Return type of ELEMENT.
360 The function returns the type of the element or object provided.
361 It can also return the following special value:
362 `plain-text' for a string
363 `org-data' for a complete document
364 nil in any other case."
366 ((not (consp element
)) (and (stringp element
) 'plain-text
))
367 ((symbolp (car element
)) (car element
))))
369 (defsubst org-element-property
(property element
)
370 "Extract the value from the PROPERTY of an ELEMENT."
371 (plist-get (nth 1 element
) property
))
373 (defsubst org-element-contents
(element)
374 "Extract contents from an ELEMENT."
375 (and (consp element
) (nthcdr 2 element
)))
377 (defsubst org-element-restriction
(element)
378 "Return restriction associated to ELEMENT.
379 ELEMENT can be an element, an object or a symbol representing an
380 element or object type."
381 (cdr (assq (if (symbolp element
) element
(org-element-type element
))
382 org-element-object-restrictions
)))
384 (defsubst org-element-put-property
(element property value
)
385 "In ELEMENT set PROPERTY to VALUE.
386 Return modified element."
387 (when (consp element
)
388 (setcar (cdr element
) (plist-put (nth 1 element
) property value
)))
391 (defsubst org-element-set-contents
(element &rest contents
)
392 "Set ELEMENT contents to CONTENTS.
393 Return modified element."
394 (cond ((not element
) (list contents
))
395 ((cdr element
) (setcdr (cdr element
) contents
))
396 (t (nconc element contents
))))
398 (defsubst org-element-set-element
(old new
)
399 "Replace element or object OLD with element or object NEW.
400 The function takes care of setting `:parent' property for NEW."
401 ;; Since OLD is going to be changed into NEW by side-effect, first
402 ;; make sure that every element or object within NEW has OLD as
404 (mapc (lambda (blob) (org-element-put-property blob
:parent old
))
405 (org-element-contents new
))
406 ;; Transfer contents.
407 (apply 'org-element-set-contents old
(org-element-contents new
))
408 ;; Ensure NEW has same parent as OLD, then overwrite OLD properties
410 (org-element-put-property new
:parent
(org-element-property :parent old
))
411 (setcar (cdr old
) (nth 1 new
))
413 (setcar old
(car new
)))
415 (defsubst org-element-adopt-elements
(parent &rest children
)
416 "Append elements to the contents of another element.
418 PARENT is an element or object. CHILDREN can be elements,
419 objects, or a strings.
421 The function takes care of setting `:parent' property for CHILD.
422 Return parent element."
423 (if (not parent
) children
424 ;; Link every child to PARENT.
425 (mapc (lambda (child)
426 (unless (stringp child
)
427 (org-element-put-property child
:parent parent
)))
429 ;; Add CHILDREN at the end of PARENT contents.
430 (apply 'org-element-set-contents
432 (nconc (org-element-contents parent
) children
))
433 ;; Return modified PARENT element.
440 ;; For each greater element type, we define a parser and an
443 ;; A parser returns the element or object as the list described above.
444 ;; Most of them accepts no argument. Though, exceptions exist. Hence
445 ;; every element containing a secondary string (see
446 ;; `org-element-secondary-value-alist') will accept an optional
447 ;; argument to toggle parsing of that secondary string. Moreover,
448 ;; `item' parser requires current list's structure as its first
451 ;; An interpreter accepts two arguments: the list representation of
452 ;; the element or object, and its contents. The latter may be nil,
453 ;; depending on the element or object considered. It returns the
454 ;; appropriate Org syntax, as a string.
456 ;; Parsing functions must follow the naming convention:
457 ;; org-element-TYPE-parser, where TYPE is greater element's type, as
458 ;; defined in `org-element-greater-elements'.
460 ;; Similarly, interpreting functions must follow the naming
461 ;; convention: org-element-TYPE-interpreter.
463 ;; With the exception of `headline' and `item' types, greater elements
464 ;; cannot contain other greater elements of their own type.
466 ;; Beside implementing a parser and an interpreter, adding a new
467 ;; greater element requires to tweak `org-element--current-element'.
468 ;; Moreover, the newly defined type must be added to both
469 ;; `org-element-all-elements' and `org-element-greater-elements'.
474 (defun org-element-center-block-parser (limit)
475 "Parse a center block.
477 LIMIT bounds the search.
479 Return a list whose CAR is `center-block' and CDR is a plist
480 containing `:begin', `:end', `:hiddenp', `:contents-begin',
481 `:contents-end' and `:post-blank' keywords.
483 Assume point is at the beginning of the block."
484 (let ((case-fold-search t
))
485 (if (not (save-excursion
486 (re-search-forward "^[ \t]*#\\+END_CENTER" limit t
)))
487 ;; Incomplete block: parse it as a paragraph.
488 (org-element-paragraph-parser limit
)
489 (let ((block-end-line (match-beginning 0)))
490 (let* ((keywords (org-element--collect-affiliated-keywords))
491 (begin (car keywords
))
492 ;; Empty blocks have no contents.
493 (contents-begin (progn (forward-line)
494 (and (< (point) block-end-line
)
496 (contents-end (and contents-begin block-end-line
))
497 (hidden (org-invisible-p2))
498 (pos-before-blank (progn (goto-char block-end-line
)
501 (end (save-excursion (skip-chars-forward " \r\t\n" limit
)
502 (if (eobp) (point) (point-at-bol)))))
508 :contents-begin contents-begin
509 :contents-end contents-end
510 :post-blank
(count-lines pos-before-blank end
))
511 (cadr keywords
))))))))
513 (defun org-element-center-block-interpreter (center-block contents
)
514 "Interpret CENTER-BLOCK element as Org syntax.
515 CONTENTS is the contents of the element."
516 (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents
))
521 (defun org-element-drawer-parser (limit)
524 LIMIT bounds the search.
526 Return a list whose CAR is `drawer' and CDR is a plist containing
527 `:drawer-name', `:begin', `:end', `:hiddenp', `:contents-begin',
528 `:contents-end' and `:post-blank' keywords.
530 Assume point is at beginning of drawer."
531 (let ((case-fold-search t
))
532 (if (not (save-excursion (re-search-forward "^[ \t]*:END:" limit t
)))
533 ;; Incomplete drawer: parse it as a paragraph.
534 (org-element-paragraph-parser limit
)
535 (let ((drawer-end-line (match-beginning 0)))
537 (let* ((case-fold-search t
)
538 (name (progn (looking-at org-drawer-regexp
)
539 (org-match-string-no-properties 1)))
540 (keywords (org-element--collect-affiliated-keywords))
541 (begin (car keywords
))
542 ;; Empty drawers have no contents.
543 (contents-begin (progn (forward-line)
544 (and (< (point) drawer-end-line
)
546 (contents-end (and contents-begin drawer-end-line
))
547 (hidden (org-invisible-p2))
548 (pos-before-blank (progn (goto-char drawer-end-line
)
551 (end (progn (skip-chars-forward " \r\t\n" limit
)
552 (if (eobp) (point) (point-at-bol)))))
559 :contents-begin contents-begin
560 :contents-end contents-end
561 :post-blank
(count-lines pos-before-blank end
))
562 (cadr keywords
)))))))))
564 (defun org-element-drawer-interpreter (drawer contents
)
565 "Interpret DRAWER element as Org syntax.
566 CONTENTS is the contents of the element."
567 (format ":%s:\n%s:END:"
568 (org-element-property :drawer-name drawer
)
574 (defun org-element-dynamic-block-parser (limit)
575 "Parse a dynamic block.
577 LIMIT bounds the search.
579 Return a list whose CAR is `dynamic-block' and CDR is a plist
580 containing `:block-name', `:begin', `:end', `:hiddenp',
581 `:contents-begin', `:contents-end', `:arguments' and
582 `:post-blank' keywords.
584 Assume point is at beginning of dynamic block."
585 (let ((case-fold-search t
))
586 (if (not (save-excursion (re-search-forward org-dblock-end-re limit t
)))
587 ;; Incomplete block: parse it as a paragraph.
588 (org-element-paragraph-parser limit
)
589 (let ((block-end-line (match-beginning 0)))
591 (let* ((name (progn (looking-at org-dblock-start-re
)
592 (org-match-string-no-properties 1)))
593 (arguments (org-match-string-no-properties 3))
594 (keywords (org-element--collect-affiliated-keywords))
595 (begin (car keywords
))
596 ;; Empty blocks have no contents.
597 (contents-begin (progn (forward-line)
598 (and (< (point) block-end-line
)
600 (contents-end (and contents-begin block-end-line
))
601 (hidden (org-invisible-p2))
602 (pos-before-blank (progn (goto-char block-end-line
)
605 (end (progn (skip-chars-forward " \r\t\n" limit
)
606 (if (eobp) (point) (point-at-bol)))))
614 :contents-begin contents-begin
615 :contents-end contents-end
616 :post-blank
(count-lines pos-before-blank end
))
617 (cadr keywords
)))))))))
619 (defun org-element-dynamic-block-interpreter (dynamic-block contents
)
620 "Interpret DYNAMIC-BLOCK element as Org syntax.
621 CONTENTS is the contents of the element."
622 (format "#+BEGIN: %s%s\n%s#+END:"
623 (org-element-property :block-name dynamic-block
)
624 (let ((args (org-element-property :arguments dynamic-block
)))
625 (and args
(concat " " args
)))
629 ;;;; Footnote Definition
631 (defun org-element-footnote-definition-parser (limit)
632 "Parse a footnote definition.
634 LIMIT bounds the search.
636 Return a list whose CAR is `footnote-definition' and CDR is
637 a plist containing `:label', `:begin' `:end', `:contents-begin',
638 `:contents-end' and `:post-blank' keywords.
640 Assume point is at the beginning of the footnote definition."
642 (let* ((label (progn (looking-at org-footnote-definition-re
)
643 (org-match-string-no-properties 1)))
644 (keywords (org-element--collect-affiliated-keywords))
645 (begin (car keywords
))
646 (ending (save-excursion
650 (concat org-outline-regexp-bol
"\\|"
651 org-footnote-definition-re
"\\|"
652 "^[ \t]*$") limit
'move
))
655 (contents-begin (progn (search-forward "]")
656 (skip-chars-forward " \r\t\n" ending
)
657 (and (/= (point) ending
) (point))))
658 (contents-end (and contents-begin ending
))
659 (end (progn (goto-char ending
)
660 (skip-chars-forward " \r\t\n" limit
)
661 (if (eobp) (point) (point-at-bol)))))
662 (list 'footnote-definition
667 :contents-begin contents-begin
668 :contents-end contents-end
669 :post-blank
(count-lines ending end
))
672 (defun org-element-footnote-definition-interpreter (footnote-definition contents
)
673 "Interpret FOOTNOTE-DEFINITION element as Org syntax.
674 CONTENTS is the contents of the footnote-definition."
675 (concat (format "[%s]" (org-element-property :label footnote-definition
))
682 (defun org-element-headline-parser (limit &optional raw-secondary-p
)
685 Return a list whose CAR is `headline' and CDR is a plist
686 containing `:raw-value', `:title', `:begin', `:end',
687 `:pre-blank', `:hiddenp', `:contents-begin' and `:contents-end',
688 `:level', `:priority', `:tags', `:todo-keyword',`:todo-type',
689 `:scheduled', `:deadline', `:timestamp', `:clock', `:category',
690 `:quotedp', `:archivedp', `:commentedp' and `:footnote-section-p'
693 The plist also contains any property set in the property drawer,
694 with its name in lowercase, the underscores replaced with hyphens
695 and colons at the beginning (i.e. `:custom-id').
697 When RAW-SECONDARY-P is non-nil, headline's title will not be
698 parsed as a secondary string, but as a plain string instead.
700 Assume point is at beginning of the headline."
702 (let* ((components (org-heading-components))
703 (level (nth 1 components
))
704 (todo (nth 2 components
))
706 (and todo
(if (member todo org-done-keywords
) 'done
'todo
)))
707 (tags (let ((raw-tags (nth 5 components
)))
708 (and raw-tags
(org-split-string raw-tags
":"))))
709 (raw-value (or (nth 4 components
) ""))
711 (let ((case-fold-search nil
))
712 (string-match (format "^%s +" org-quote-string
) raw-value
)))
714 (let ((case-fold-search nil
))
715 (string-match (format "^%s +" org-comment-string
) raw-value
)))
716 (archivedp (member org-archive-tag tags
))
717 (footnote-section-p (and org-footnote-section
718 (string= org-footnote-section raw-value
)))
719 ;; Normalize property names: ":SOME_PROP:" becomes
721 (standard-props (let (plist)
724 (let ((p-name (downcase (car p
))))
725 (while (string-match "_" p-name
)
727 (replace-match "-" nil nil p-name
)))
728 (setq p-name
(intern (concat ":" p-name
)))
730 (plist-put plist p-name
(cdr p
)))))
731 (org-entry-properties nil
'standard
))
733 (time-props (org-entry-properties nil
'special
"CLOCK"))
734 (scheduled (cdr (assoc "SCHEDULED" time-props
)))
735 (deadline (cdr (assoc "DEADLINE" time-props
)))
736 (clock (cdr (assoc "CLOCK" time-props
)))
737 (timestamp (cdr (assoc "TIMESTAMP" time-props
)))
739 (end (save-excursion (goto-char (org-end-of-subtree t t
))))
740 (pos-after-head (progn (forward-line) (point)))
741 (contents-begin (save-excursion
742 (skip-chars-forward " \r\t\n" end
)
743 (and (/= (point) end
) (line-beginning-position))))
744 (hidden (org-invisible-p2))
745 (contents-end (and contents-begin
746 (progn (goto-char end
)
747 (skip-chars-backward " \r\t\n")
750 ;; Clean RAW-VALUE from any quote or comment string.
751 (when (or quotedp commentedp
)
753 (replace-regexp-in-string
754 (concat "\\(" org-quote-string
"\\|" org-comment-string
"\\) +")
757 ;; Clean TAGS from archive tag, if any.
758 (when archivedp
(setq tags
(delete org-archive-tag tags
)))
762 (list :raw-value raw-value
766 (if (not contents-begin
) 0
767 (count-lines pos-after-head contents-begin
))
769 :contents-begin contents-begin
770 :contents-end contents-end
772 :priority
(nth 3 components
)
780 :post-blank
(count-lines
781 (if (not contents-end
) pos-after-head
782 (goto-char contents-end
)
786 :footnote-section-p footnote-section-p
788 :commentedp commentedp
791 (org-element-put-property
793 (if raw-secondary-p raw-value
794 (org-element-parse-secondary-string
795 raw-value
(org-element-restriction 'headline
) headline
)))))))
797 (defun org-element-headline-interpreter (headline contents
)
798 "Interpret HEADLINE element as Org syntax.
799 CONTENTS is the contents of the element."
800 (let* ((level (org-element-property :level headline
))
801 (todo (org-element-property :todo-keyword headline
))
802 (priority (org-element-property :priority headline
))
803 (title (org-element-interpret-data
804 (org-element-property :title headline
)))
805 (tags (let ((tag-list (if (org-element-property :archivedp headline
)
806 (cons org-archive-tag
807 (org-element-property :tags headline
))
808 (org-element-property :tags headline
))))
810 (format ":%s:" (mapconcat 'identity tag-list
":")))))
811 (commentedp (org-element-property :commentedp headline
))
812 (quotedp (org-element-property :quotedp headline
))
813 (pre-blank (or (org-element-property :pre-blank headline
) 0))
814 (heading (concat (make-string level ?
*)
815 (and todo
(concat " " todo
))
816 (and quotedp
(concat " " org-quote-string
))
817 (and commentedp
(concat " " org-comment-string
))
819 (format " [#%s]" (char-to-string priority
)))
820 (cond ((and org-footnote-section
821 (org-element-property
822 :footnote-section-p headline
))
823 (concat " " org-footnote-section
))
824 (title (concat " " title
))))))
829 ((zerop org-tags-column
) (format " %s" tags
))
830 ((< org-tags-column
0)
833 (max (- (+ org-tags-column
(length heading
) (length tags
))) 1)
838 (make-string (max (- org-tags-column
(length heading
)) 1) ?
)
840 (make-string (1+ pre-blank
) 10)
846 (defun org-element-inlinetask-parser (limit &optional raw-secondary-p
)
847 "Parse an inline task.
849 Return a list whose CAR is `inlinetask' and CDR is a plist
850 containing `:title', `:begin', `:end', `:hiddenp',
851 `:contents-begin' and `:contents-end', `:level', `:priority',
852 `:raw-value', `:tags', `:todo-keyword', `:todo-type',
853 `:scheduled', `:deadline', `:timestamp', `:clock' and
854 `:post-blank' keywords.
856 The plist also contains any property set in the property drawer,
857 with its name in lowercase, the underscores replaced with hyphens
858 and colons at the beginning (i.e. `:custom-id').
860 When optional argument RAW-SECONDARY-P is non-nil, inline-task's
861 title will not be parsed as a secondary string, but as a plain
864 Assume point is at beginning of the inline task."
866 (let* ((keywords (org-element--collect-affiliated-keywords))
867 (begin (car keywords
))
868 (components (org-heading-components))
869 (todo (nth 2 components
))
871 (if (member todo org-done-keywords
) 'done
'todo
)))
872 (tags (let ((raw-tags (nth 5 components
)))
873 (and raw-tags
(org-split-string raw-tags
":"))))
874 (raw-value (or (nth 4 components
) ""))
875 ;; Normalize property names: ":SOME_PROP:" becomes
877 (standard-props (let (plist)
880 (let ((p-name (downcase (car p
))))
881 (while (string-match "_" p-name
)
883 (replace-match "-" nil nil p-name
)))
884 (setq p-name
(intern (concat ":" p-name
)))
886 (plist-put plist p-name
(cdr p
)))))
887 (org-entry-properties nil
'standard
))
889 (time-props (org-entry-properties nil
'special
"CLOCK"))
890 (scheduled (cdr (assoc "SCHEDULED" time-props
)))
891 (deadline (cdr (assoc "DEADLINE" time-props
)))
892 (clock (cdr (assoc "CLOCK" time-props
)))
893 (timestamp (cdr (assoc "TIMESTAMP" time-props
)))
894 (task-end (save-excursion
896 (and (re-search-forward "^\\*+ END" limit t
)
897 (match-beginning 0))))
898 (contents-begin (progn (forward-line)
899 (and task-end
(< (point) task-end
) (point))))
900 (hidden (and contents-begin
(org-invisible-p2)))
901 (contents-end (and contents-begin task-end
))
902 (before-blank (if (not task-end
) (point)
906 (end (progn (skip-chars-forward " \r\t\n" limit
)
907 (if (eobp) (point) (point-at-bol))))
911 (list :raw-value raw-value
915 :contents-begin contents-begin
916 :contents-end contents-end
917 :level
(nth 1 components
)
918 :priority
(nth 3 components
)
926 :post-blank
(count-lines before-blank end
))
929 (org-element-put-property
931 (if raw-secondary-p raw-value
932 (org-element-parse-secondary-string
934 (org-element-restriction 'inlinetask
)
937 (defun org-element-inlinetask-interpreter (inlinetask contents
)
938 "Interpret INLINETASK element as Org syntax.
939 CONTENTS is the contents of inlinetask."
940 (let* ((level (org-element-property :level inlinetask
))
941 (todo (org-element-property :todo-keyword inlinetask
))
942 (priority (org-element-property :priority inlinetask
))
943 (title (org-element-interpret-data
944 (org-element-property :title inlinetask
)))
945 (tags (let ((tag-list (org-element-property :tags inlinetask
)))
947 (format ":%s:" (mapconcat 'identity tag-list
":")))))
948 (task (concat (make-string level ?
*)
949 (and todo
(concat " " todo
))
951 (format " [#%s]" (char-to-string priority
)))
952 (and title
(concat " " title
)))))
957 ((zerop org-tags-column
) (format " %s" tags
))
958 ((< org-tags-column
0)
961 (max (- (+ org-tags-column
(length task
) (length tags
))) 1)
966 (make-string (max (- org-tags-column
(length task
)) 1) ?
)
968 ;; Prefer degenerate inlinetasks when there are no
973 (make-string level ?
*) " END")))))
978 (defun org-element-item-parser (limit struct
&optional raw-secondary-p
)
981 STRUCT is the structure of the plain list.
983 Return a list whose CAR is `item' and CDR is a plist containing
984 `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
985 `:checkbox', `:counter', `:tag', `:structure', `:hiddenp' and
986 `:post-blank' keywords.
988 When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
989 any, will not be parsed as a secondary string, but as a plain
992 Assume point is at the beginning of the item."
995 (looking-at org-list-full-item-re
)
996 (let* ((begin (point))
997 (bullet (org-match-string-no-properties 1))
998 (checkbox (let ((box (org-match-string-no-properties 3)))
999 (cond ((equal "[ ]" box
) 'off
)
1000 ((equal "[X]" box
) 'on
)
1001 ((equal "[-]" box
) 'trans
))))
1002 (counter (let ((c (org-match-string-no-properties 2)))
1006 ((string-match "[A-Za-z]" c
)
1007 (- (string-to-char (upcase (match-string 0 c
)))
1009 ((string-match "[0-9]+" c
)
1010 (string-to-number (match-string 0 c
)))))))
1011 (end (save-excursion (goto-char (org-list-get-item-end begin struct
))
1012 (unless (bolp) (forward-line))
1016 ;; Ignore tags in un-ordered lists: they are just
1017 ;; a part of item's body.
1018 (if (and (match-beginning 4)
1019 (save-match-data (string-match "[.)]" bullet
)))
1022 (skip-chars-forward " \r\t\n" limit
)
1023 ;; If first line isn't empty, contents really start
1024 ;; at the text after item's meta-data.
1025 (if (= (point-at-bol) begin
) (point) (point-at-bol))))
1026 (hidden (progn (forward-line)
1027 (and (not (= (point) end
)) (org-invisible-p2))))
1028 (contents-end (progn (goto-char end
)
1029 (skip-chars-backward " \r\t\n")
1034 (list :bullet bullet
1037 ;; CONTENTS-BEGIN and CONTENTS-END may be
1038 ;; mixed up in the case of an empty item
1039 ;; separated from the next by a blank line.
1040 ;; Thus ensure the former is always the
1042 :contents-begin
(min contents-begin contents-end
)
1043 :contents-end
(max contents-begin contents-end
)
1048 :post-blank
(count-lines contents-end end
)))))
1049 (org-element-put-property
1051 (let ((raw-tag (org-list-get-tag begin struct
)))
1053 (if raw-secondary-p raw-tag
1054 (org-element-parse-secondary-string
1055 raw-tag
(org-element-restriction 'item
) item
))))))))
1057 (defun org-element-item-interpreter (item contents
)
1058 "Interpret ITEM element as Org syntax.
1059 CONTENTS is the contents of the element."
1060 (let* ((bullet (org-list-bullet-string (org-element-property :bullet item
)))
1061 (checkbox (org-element-property :checkbox item
))
1062 (counter (org-element-property :counter item
))
1063 (tag (let ((tag (org-element-property :tag item
)))
1064 (and tag
(org-element-interpret-data tag
))))
1065 ;; Compute indentation.
1066 (ind (make-string (length bullet
) 32))
1067 (item-starts-with-par-p
1068 (eq (org-element-type (car (org-element-contents item
)))
1073 (and counter
(format "[@%d] " counter
))
1078 (and tag
(format "%s :: " tag
))
1079 (let ((contents (replace-regexp-in-string
1080 "\\(^\\)[ \t]*\\S-" ind contents nil nil
1)))
1081 (if item-starts-with-par-p
(org-trim contents
)
1082 (concat "\n" contents
))))))
1087 (defun org-element-plain-list-parser (limit &optional structure
)
1088 "Parse a plain list.
1090 Optional argument STRUCTURE, when non-nil, is the structure of
1091 the plain list being parsed.
1093 Return a list whose CAR is `plain-list' and CDR is a plist
1094 containing `:type', `:begin', `:end', `:contents-begin' and
1095 `:contents-end', `:structure' and `:post-blank' keywords.
1097 Assume point is at the beginning of the list."
1099 (let* ((struct (or structure
(org-list-struct)))
1100 (prevs (org-list-prevs-alist struct
))
1101 (parents (org-list-parents-alist struct
))
1102 (type (org-list-get-list-type (point) struct prevs
))
1103 (contents-begin (point))
1104 (keywords (org-element--collect-affiliated-keywords))
1105 (begin (car keywords
))
1107 (progn (goto-char (org-list-get-list-end (point) struct prevs
))
1108 (unless (bolp) (forward-line))
1110 (end (progn (skip-chars-forward " \r\t\n" limit
)
1111 (if (eobp) (point) (point-at-bol)))))
1118 :contents-begin contents-begin
1119 :contents-end contents-end
1121 :post-blank
(count-lines contents-end end
))
1122 (cadr keywords
))))))
1124 (defun org-element-plain-list-interpreter (plain-list contents
)
1125 "Interpret PLAIN-LIST element as Org syntax.
1126 CONTENTS is the contents of the element."
1129 (goto-char (point-min))
1136 (defun org-element-quote-block-parser (limit)
1137 "Parse a quote block.
1139 LIMIT bounds the search.
1141 Return a list whose CAR is `quote-block' and CDR is a plist
1142 containing `:begin', `:end', `:hiddenp', `:contents-begin',
1143 `:contents-end' and `:post-blank' keywords.
1145 Assume point is at the beginning of the block."
1146 (let ((case-fold-search t
))
1147 (if (not (save-excursion
1148 (re-search-forward "^[ \t]*#\\+END_QUOTE" limit t
)))
1149 ;; Incomplete block: parse it as a paragraph.
1150 (org-element-paragraph-parser limit
)
1151 (let ((block-end-line (match-beginning 0)))
1153 (let* ((keywords (org-element--collect-affiliated-keywords))
1154 (begin (car keywords
))
1155 ;; Empty blocks have no contents.
1156 (contents-begin (progn (forward-line)
1157 (and (< (point) block-end-line
)
1159 (contents-end (and contents-begin block-end-line
))
1160 (hidden (org-invisible-p2))
1161 (pos-before-blank (progn (goto-char block-end-line
)
1164 (end (progn (skip-chars-forward " \r\t\n" limit
)
1165 (if (eobp) (point) (point-at-bol)))))
1171 :contents-begin contents-begin
1172 :contents-end contents-end
1173 :post-blank
(count-lines pos-before-blank end
))
1174 (cadr keywords
)))))))))
1176 (defun org-element-quote-block-interpreter (quote-block contents
)
1177 "Interpret QUOTE-BLOCK element as Org syntax.
1178 CONTENTS is the contents of the element."
1179 (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents
))
1184 (defun org-element-section-parser (limit)
1187 LIMIT bounds the search.
1189 Return a list whose CAR is `section' and CDR is a plist
1190 containing `:begin', `:end', `:contents-begin', `contents-end'
1191 and `:post-blank' keywords."
1193 ;; Beginning of section is the beginning of the first non-blank
1194 ;; line after previous headline.
1195 (let ((begin (point))
1196 (end (progn (org-with-limited-levels (outline-next-heading))
1198 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1204 :contents-begin begin
1205 :contents-end pos-before-blank
1206 :post-blank
(count-lines pos-before-blank end
))))))
1208 (defun org-element-section-interpreter (section contents
)
1209 "Interpret SECTION element as Org syntax.
1210 CONTENTS is the contents of the element."
1216 (defun org-element-special-block-parser (limit)
1217 "Parse a special block.
1219 LIMIT bounds the search.
1221 Return a list whose CAR is `special-block' and CDR is a plist
1222 containing `:type', `:begin', `:end', `:hiddenp',
1223 `:contents-begin', `:contents-end' and `:post-blank' keywords.
1225 Assume point is at the beginning of the block."
1226 (let* ((case-fold-search t
)
1227 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(S-+\\)")
1228 (upcase (match-string-no-properties 1)))))
1229 (if (not (save-excursion
1230 (re-search-forward (concat "^[ \t]*#\\+END_" type
) limit t
)))
1231 ;; Incomplete block: parse it as a paragraph.
1232 (org-element-paragraph-parser limit
)
1233 (let ((block-end-line (match-beginning 0)))
1235 (let* ((keywords (org-element--collect-affiliated-keywords))
1236 (begin (car keywords
))
1237 ;; Empty blocks have no contents.
1238 (contents-begin (progn (forward-line)
1239 (and (< (point) block-end-line
)
1241 (contents-end (and contents-begin block-end-line
))
1242 (hidden (org-invisible-p2))
1243 (pos-before-blank (progn (goto-char block-end-line
)
1246 (end (progn (org-skip-whitespace)
1247 (if (eobp) (point) (point-at-bol)))))
1248 (list 'special-block
1254 :contents-begin contents-begin
1255 :contents-end contents-end
1256 :post-blank
(count-lines pos-before-blank end
))
1257 (cadr keywords
)))))))))
1259 (defun org-element-special-block-interpreter (special-block contents
)
1260 "Interpret SPECIAL-BLOCK element as Org syntax.
1261 CONTENTS is the contents of the element."
1262 (let ((block-type (org-element-property :type special-block
)))
1263 (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type
)))
1269 ;; For each element, a parser and an interpreter are also defined.
1270 ;; Both follow the same naming convention used for greater elements.
1272 ;; Also, as for greater elements, adding a new element type is done
1273 ;; through the following steps: implement a parser and an interpreter,
1274 ;; tweak `org-element--current-element' so that it recognizes the new
1275 ;; type and add that new type to `org-element-all-elements'.
1277 ;; As a special case, when the newly defined type is a block type,
1278 ;; `org-element-block-name-alist' has to be modified accordingly.
1283 (defun org-element-babel-call-parser (limit)
1284 "Parse a babel call.
1286 LIMIT bounds the search.
1288 Return a list whose CAR is `babel-call' and CDR is a plist
1289 containing `:begin', `:end', `:info' and `:post-blank' as
1292 (let ((case-fold-search t
)
1293 (info (progn (looking-at org-babel-block-lob-one-liner-regexp
)
1294 (org-babel-lob-get-info)))
1295 (begin (point-at-bol))
1296 (pos-before-blank (progn (forward-line) (point)))
1297 (end (progn (skip-chars-forward " \r\t\n" limit
)
1298 (if (eobp) (point) (point-at-bol)))))
1303 :post-blank
(count-lines pos-before-blank end
))))))
1305 (defun org-element-babel-call-interpreter (babel-call contents
)
1306 "Interpret BABEL-CALL element as Org syntax.
1308 (let* ((babel-info (org-element-property :info babel-call
))
1309 (main (car babel-info
))
1310 (post-options (nth 1 babel-info
)))
1312 (if (not (string-match "\\[\\(\\[.*?\\]\\)\\]" main
)) main
1313 ;; Remove redundant square brackets.
1314 (replace-match (match-string 1 main
) nil nil main
))
1315 (and post-options
(format "[%s]" post-options
)))))
1320 (defun org-element-clock-parser (limit)
1323 LIMIT bounds the search.
1325 Return a list whose CAR is `clock' and CDR is a plist containing
1326 `:status', `:value', `:time', `:begin', `:end' and `:post-blank'
1329 (let* ((case-fold-search nil
)
1331 (value (progn (search-forward org-clock-string
(line-end-position) t
)
1332 (org-skip-whitespace)
1333 (looking-at "\\[.*\\]")
1334 (org-match-string-no-properties 0)))
1335 (time (and (progn (goto-char (match-end 0))
1336 (looking-at " +=> +\\(\\S-+\\)[ \t]*$"))
1337 (org-match-string-no-properties 1)))
1338 (status (if time
'closed
'running
))
1339 (post-blank (let ((before-blank (progn (forward-line) (point))))
1340 (skip-chars-forward " \r\t\n" limit
)
1341 (unless (eobp) (beginning-of-line))
1342 (count-lines before-blank
(point))))
1345 (list :status status
1350 :post-blank post-blank
)))))
1352 (defun org-element-clock-interpreter (clock contents
)
1353 "Interpret CLOCK element as Org syntax.
1355 (concat org-clock-string
" "
1356 (org-element-property :value clock
)
1357 (let ((time (org-element-property :time clock
)))
1362 (org-split-string time
":")))))))
1367 (defun org-element-comment-parser (limit)
1370 LIMIT bounds the search.
1372 Return a list whose CAR is `comment' and CDR is a plist
1373 containing `:begin', `:end', `:value' and `:post-blank'
1376 Assume point is at comment beginning."
1378 (let* ((keywords (org-element--collect-affiliated-keywords))
1379 (begin (car keywords
))
1380 (value (prog2 (looking-at "[ \t]*# ?")
1381 (buffer-substring-no-properties
1382 (match-end 0) (line-end-position))
1385 ;; Get comments ending.
1387 (while (and (< (point) limit
) (looking-at "[ \t]*#\\( \\|$\\)"))
1388 ;; Accumulate lines without leading hash and first
1393 (buffer-substring-no-properties
1394 (match-end 0) (line-end-position))))
1397 (end (progn (goto-char com-end
)
1398 (skip-chars-forward " \r\t\n" limit
)
1399 (if (eobp) (point) (point-at-bol)))))
1405 :post-blank
(count-lines com-end end
))
1406 (cadr keywords
))))))
1408 (defun org-element-comment-interpreter (comment contents
)
1409 "Interpret COMMENT element as Org syntax.
1411 (replace-regexp-in-string "^" "# " (org-element-property :value comment
)))
1416 (defun org-element-comment-block-parser (limit)
1417 "Parse an export block.
1419 LIMIT bounds the search.
1421 Return a list whose CAR is `comment-block' and CDR is a plist
1422 containing `:begin', `:end', `:hiddenp', `:value' and
1423 `:post-blank' keywords.
1425 Assume point is at comment block beginning."
1426 (let ((case-fold-search t
))
1427 (if (not (save-excursion
1428 (re-search-forward "^[ \t]*#\\+END_COMMENT" limit t
)))
1429 ;; Incomplete block: parse it as a paragraph.
1430 (org-element-paragraph-parser limit
)
1431 (let ((contents-end (match-beginning 0)))
1433 (let* ((keywords (org-element--collect-affiliated-keywords))
1434 (begin (car keywords
))
1435 (contents-begin (progn (forward-line) (point)))
1436 (hidden (org-invisible-p2))
1437 (pos-before-blank (progn (goto-char contents-end
)
1440 (end (progn (skip-chars-forward " \r\t\n" limit
)
1441 (if (eobp) (point) (point-at-bol))))
1442 (value (buffer-substring-no-properties
1443 contents-begin contents-end
)))
1444 (list 'comment-block
1450 :post-blank
(count-lines pos-before-blank end
))
1451 (cadr keywords
)))))))))
1453 (defun org-element-comment-block-interpreter (comment-block contents
)
1454 "Interpret COMMENT-BLOCK element as Org syntax.
1456 (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
1457 (org-remove-indentation (org-element-property :value comment-block
))))
1462 (defun org-element-example-block-parser (limit)
1463 "Parse an example block.
1465 LIMIT bounds the search.
1467 Return a list whose CAR is `example-block' and CDR is a plist
1468 containing `:begin', `:end', `:number-lines', `:preserve-indent',
1469 `:retain-labels', `:use-labels', `:label-fmt', `:hiddenp',
1470 `:switches', `:value' and `:post-blank' keywords."
1471 (let ((case-fold-search t
))
1472 (if (not (save-excursion
1473 (re-search-forward "^[ \t]*#\\+END_EXAMPLE" limit t
)))
1474 ;; Incomplete block: parse it as a paragraph.
1475 (org-element-paragraph-parser limit
)
1476 (let ((contents-end (match-beginning 0)))
1479 (progn (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
1480 (org-match-string-no-properties 1)))
1481 ;; Switches analysis
1482 (number-lines (cond ((not switches
) nil
)
1483 ((string-match "-n\\>" switches
) 'new
)
1484 ((string-match "+n\\>" switches
) 'continued
)))
1485 (preserve-indent (and switches
(string-match "-i\\>" switches
)))
1486 ;; Should labels be retained in (or stripped from) example
1490 (not (string-match "-r\\>" switches
))
1491 (and number-lines
(string-match "-k\\>" switches
))))
1492 ;; What should code-references use - labels or
1496 (and retain-labels
(not (string-match "-k\\>" switches
)))))
1497 (label-fmt (and switches
1498 (string-match "-l +\"\\([^\"\n]+\\)\"" switches
)
1499 (match-string 1 switches
)))
1500 ;; Standard block parsing.
1501 (keywords (org-element--collect-affiliated-keywords))
1502 (begin (car keywords
))
1503 (contents-begin (progn (forward-line) (point)))
1504 (hidden (org-invisible-p2))
1505 (value (buffer-substring-no-properties contents-begin contents-end
))
1506 (pos-before-blank (progn (goto-char contents-end
)
1509 (end (progn (skip-chars-forward " \r\t\n" limit
)
1510 (if (eobp) (point) (point-at-bol)))))
1511 (list 'example-block
1517 :number-lines number-lines
1518 :preserve-indent preserve-indent
1519 :retain-labels retain-labels
1520 :use-labels use-labels
1521 :label-fmt label-fmt
1523 :post-blank
(count-lines pos-before-blank end
))
1524 (cadr keywords
)))))))))
1526 (defun org-element-example-block-interpreter (example-block contents
)
1527 "Interpret EXAMPLE-BLOCK element as Org syntax.
1529 (let ((switches (org-element-property :switches example-block
)))
1530 (concat "#+BEGIN_EXAMPLE" (and switches
(concat " " switches
)) "\n"
1531 (org-remove-indentation
1532 (org-element-property :value example-block
))
1538 (defun org-element-export-block-parser (limit)
1539 "Parse an export block.
1541 LIMIT bounds the search.
1543 Return a list whose CAR is `export-block' and CDR is a plist
1544 containing `:begin', `:end', `:type', `:hiddenp', `:value' and
1545 `:post-blank' keywords.
1547 Assume point is at export-block beginning."
1548 (let* ((case-fold-search t
)
1549 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1550 (upcase (org-match-string-no-properties 1)))))
1551 (if (not (save-excursion
1552 (re-search-forward (concat "^[ \t]*#\\+END_" type
) limit t
)))
1553 ;; Incomplete block: parse it as a paragraph.
1554 (org-element-paragraph-parser limit
)
1555 (let ((contents-end (match-beginning 0)))
1557 (let* ((keywords (org-element--collect-affiliated-keywords))
1558 (begin (car keywords
))
1559 (contents-begin (progn (forward-line) (point)))
1560 (hidden (org-invisible-p2))
1561 (pos-before-blank (progn (goto-char contents-end
)
1564 (end (progn (skip-chars-forward " \r\t\n" limit
)
1565 (if (eobp) (point) (point-at-bol))))
1566 (value (buffer-substring-no-properties contents-begin
1575 :post-blank
(count-lines pos-before-blank end
))
1576 (cadr keywords
)))))))))
1578 (defun org-element-export-block-interpreter (export-block contents
)
1579 "Interpret EXPORT-BLOCK element as Org syntax.
1581 (let ((type (org-element-property :type export-block
)))
1582 (concat (format "#+BEGIN_%s\n" type
)
1583 (org-element-property :value export-block
)
1584 (format "#+END_%s" type
))))
1589 (defun org-element-fixed-width-parser (limit)
1590 "Parse a fixed-width section.
1592 LIMIT bounds the search.
1594 Return a list whose CAR is `fixed-width' and CDR is a plist
1595 containing `:begin', `:end', `:value' and `:post-blank' keywords.
1597 Assume point is at the beginning of the fixed-width area."
1599 (let* ((keywords (org-element--collect-affiliated-keywords))
1600 (begin (car keywords
))
1604 (while (and (< (point) limit
)
1605 (looking-at "[ \t]*:\\( \\|$\\)"))
1606 ;; Accumulate text without starting colons.
1609 (buffer-substring-no-properties
1610 (match-end 0) (point-at-eol))
1614 (end (progn (skip-chars-forward " \r\t\n" limit
)
1615 (if (eobp) (point) (point-at-bol)))))
1621 :post-blank
(count-lines end-area end
))
1622 (cadr keywords
))))))
1624 (defun org-element-fixed-width-interpreter (fixed-width contents
)
1625 "Interpret FIXED-WIDTH element as Org syntax.
1627 (replace-regexp-in-string
1628 "^" ": " (substring (org-element-property :value fixed-width
) 0 -
1)))
1631 ;;;; Horizontal Rule
1633 (defun org-element-horizontal-rule-parser (limit)
1634 "Parse an horizontal rule.
1636 LIMIT bounds the search.
1638 Return a list whose CAR is `horizontal-rule' and CDR is a plist
1639 containing `:begin', `:end' and `:post-blank' keywords."
1641 (let* ((keywords (org-element--collect-affiliated-keywords))
1642 (begin (car keywords
))
1643 (post-hr (progn (forward-line) (point)))
1644 (end (progn (skip-chars-forward " \r\t\n" limit
)
1645 (if (eobp) (point) (point-at-bol)))))
1646 (list 'horizontal-rule
1650 :post-blank
(count-lines post-hr end
))
1651 (cadr keywords
))))))
1653 (defun org-element-horizontal-rule-interpreter (horizontal-rule contents
)
1654 "Interpret HORIZONTAL-RULE element as Org syntax.
1661 (defun org-element-keyword-parser (limit)
1662 "Parse a keyword at point.
1664 LIMIT bounds the search.
1666 Return a list whose CAR is `keyword' and CDR is a plist
1667 containing `:key', `:value', `:begin', `:end' and `:post-blank'
1670 (let* ((case-fold-search t
)
1672 (key (progn (looking-at "[ \t]*#\\+\\(\\S-+\\):")
1673 (upcase (org-match-string-no-properties 1))))
1674 (value (org-trim (buffer-substring-no-properties
1675 (match-end 0) (point-at-eol))))
1676 (pos-before-blank (progn (forward-line) (point)))
1677 (end (progn (skip-chars-forward " \r\t\n" limit
)
1678 (if (eobp) (point) (point-at-bol)))))
1684 :post-blank
(count-lines pos-before-blank end
))))))
1686 (defun org-element-keyword-interpreter (keyword contents
)
1687 "Interpret KEYWORD element as Org syntax.
1690 (org-element-property :key keyword
)
1691 (org-element-property :value keyword
)))
1694 ;;;; Latex Environment
1696 (defun org-element-latex-environment-parser (limit)
1697 "Parse a LaTeX environment.
1699 LIMIT bounds the search.
1701 Return a list whose CAR is `latex-environment' and CDR is a plist
1702 containing `:begin', `:end', `:value' and `:post-blank'
1705 Assume point is at the beginning of the latex environment."
1707 (let* ((case-fold-search t
)
1708 (code-begin (point))
1709 (keywords (org-element--collect-affiliated-keywords))
1710 (begin (car keywords
))
1711 (env (progn (looking-at "^[ \t]*\\\\begin{\\([A-Za-z0-9]+\\*?\\)}")
1712 (regexp-quote (match-string 1))))
1714 (progn (re-search-forward (format "^[ \t]*\\\\end{%s}" env
) limit t
)
1717 (value (buffer-substring-no-properties code-begin code-end
))
1718 (end (progn (skip-chars-forward " \r\t\n" limit
)
1719 (if (eobp) (point) (point-at-bol)))))
1720 (list 'latex-environment
1725 :post-blank
(count-lines code-end end
))
1726 (cadr keywords
))))))
1728 (defun org-element-latex-environment-interpreter (latex-environment contents
)
1729 "Interpret LATEX-ENVIRONMENT element as Org syntax.
1731 (org-element-property :value latex-environment
))
1736 (defun org-element-paragraph-parser (limit)
1739 LIMIT bounds the search.
1741 Return a list whose CAR is `paragraph' and CDR is a plist
1742 containing `:begin', `:end', `:contents-begin' and
1743 `:contents-end' and `:post-blank' keywords.
1745 Assume point is at the beginning of the paragraph."
1747 (let* (;; INNER-PAR-P is non-nil when paragraph is at the
1748 ;; beginning of an item or a footnote reference. In that
1749 ;; case, we mustn't look for affiliated keywords since they
1750 ;; belong to the container.
1751 (inner-par-p (not (bolp)))
1752 (contents-begin (point))
1753 (keywords (unless inner-par-p
1754 (org-element--collect-affiliated-keywords)))
1755 (begin (if inner-par-p contents-begin
(car keywords
)))
1757 (let ((case-fold-search t
))
1759 (re-search-forward org-element-paragraph-separate limit
'm
)
1760 (while (and (/= (point) limit
)
1762 ;; Skip non-existent or incomplete drawer.
1765 (and (looking-at "[ \t]*:\\S-")
1766 (or (not (looking-at org-drawer-regexp
))
1767 (not (save-excursion
1769 "^[ \t]*:END:" limit t
)))))))
1770 ;; Stop at comments.
1773 (not (looking-at "[ \t]*#\\S-"))) nil
)
1774 ;; Skip incomplete dynamic blocks.
1777 (looking-at "[ \t]*#\\+BEGIN: "))
1778 (not (save-excursion
1780 "^[ \t]*\\+END:" limit t
))))
1781 ;; Skip incomplete blocks.
1784 (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)"))
1785 (not (save-excursion
1787 (concat "^[ \t]*#\\+END_"
1790 ;; Skip incomplete latex environments.
1793 (looking-at "^[ \t]*\\\\begin{\\([A-Za-z0-9]+\\*?\\)}"))
1794 (not (save-excursion
1796 (format "^[ \t]*\\\\end{%s}"
1799 ;; Skip ill-formed keywords.
1800 ((not (save-excursion
1802 (looking-at "[ \t]*#\\+\\S-+:"))))))
1803 (re-search-forward org-element-paragraph-separate limit
'm
))
1804 (if (eobp) (point) (goto-char (line-beginning-position)))))
1805 (contents-end (progn (skip-chars-backward " \r\t\n" contents-begin
)
1808 (end (progn (skip-chars-forward " \r\t\n" limit
)
1809 (if (eobp) (point) (point-at-bol)))))
1814 :contents-begin contents-begin
1815 :contents-end contents-end
1816 :post-blank
(count-lines before-blank end
))
1817 (cadr keywords
))))))
1819 (defun org-element-paragraph-interpreter (paragraph contents
)
1820 "Interpret PARAGRAPH element as Org syntax.
1821 CONTENTS is the contents of the element."
1827 (defun org-element-planning-parser (limit)
1830 LIMIT bounds the search.
1832 Return a list whose CAR is `planning' and CDR is a plist
1833 containing `:closed', `:deadline', `:scheduled', `:begin', `:end'
1834 and `:post-blank' keywords."
1836 (let* ((case-fold-search nil
)
1838 (post-blank (let ((before-blank (progn (forward-line) (point))))
1839 (skip-chars-forward " \r\t\n" limit
)
1840 (unless (eobp) (beginning-of-line))
1841 (count-lines before-blank
(point))))
1843 closed deadline scheduled
)
1845 (while (re-search-forward org-keyword-time-not-clock-regexp
1846 (line-end-position) t
)
1847 (goto-char (match-end 1))
1848 (org-skip-whitespace)
1849 (let ((time (buffer-substring-no-properties
1850 (1+ (point)) (1- (match-end 0))))
1851 (keyword (match-string 1)))
1852 (cond ((equal keyword org-closed-string
) (setq closed time
))
1853 ((equal keyword org-deadline-string
) (setq deadline time
))
1854 (t (setq scheduled time
)))))
1856 (list :closed closed
1858 :scheduled scheduled
1861 :post-blank post-blank
)))))
1863 (defun org-element-planning-interpreter (planning contents
)
1864 "Interpret PLANNING element as Org syntax.
1869 (list (let ((closed (org-element-property :closed planning
)))
1870 (when closed
(concat org-closed-string
" [" closed
"]")))
1871 (let ((deadline (org-element-property :deadline planning
)))
1872 (when deadline
(concat org-deadline-string
" <" deadline
">")))
1873 (let ((scheduled (org-element-property :scheduled planning
)))
1875 (concat org-scheduled-string
" <" scheduled
">")))))
1879 ;;;; Property Drawer
1881 (defun org-element-property-drawer-parser (limit)
1882 "Parse a property drawer.
1884 LIMIT bounds the search.
1886 Return a list whose CAR is `property-drawer' and CDR is a plist
1887 containing `:begin', `:end', `:hiddenp', `:contents-begin',
1888 `:contents-end', `:properties' and `:post-blank' keywords.
1890 Assume point is at the beginning of the property drawer."
1892 (let ((case-fold-search t
)
1894 (prop-begin (progn (forward-line) (point)))
1895 (hidden (org-invisible-p2))
1898 (while (not (looking-at "^[ \t]*:END:"))
1899 (when (looking-at "[ \t]*:\\([A-Za-z][-_A-Za-z0-9]*\\):")
1900 (push (cons (org-match-string-no-properties 1)
1902 (buffer-substring-no-properties
1903 (match-end 0) (point-at-eol))))
1907 (prop-end (progn (re-search-forward "^[ \t]*:END:" limit t
)
1909 (pos-before-blank (progn (forward-line) (point)))
1910 (end (progn (skip-chars-forward " \r\t\n" limit
)
1911 (if (eobp) (point) (point-at-bol)))))
1912 (list 'property-drawer
1916 :properties properties
1917 :post-blank
(count-lines pos-before-blank end
))))))
1919 (defun org-element-property-drawer-interpreter (property-drawer contents
)
1920 "Interpret PROPERTY-DRAWER element as Org syntax.
1922 (let ((props (org-element-property :properties property-drawer
)))
1925 (mapconcat (lambda (p)
1926 (format org-property-format
(format ":%s:" (car p
)) (cdr p
)))
1927 (nreverse props
) "\n")
1933 (defun org-element-quote-section-parser (limit)
1934 "Parse a quote section.
1936 LIMIT bounds the search.
1938 Return a list whose CAR is `quote-section' and CDR is a plist
1939 containing `:begin', `:end', `:value' and `:post-blank' keywords.
1941 Assume point is at beginning of the section."
1943 (let* ((begin (point))
1944 (end (progn (org-with-limited-levels (outline-next-heading))
1946 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1949 (value (buffer-substring-no-properties begin pos-before-blank
)))
1950 (list 'quote-section
1954 :post-blank
(count-lines pos-before-blank end
))))))
1956 (defun org-element-quote-section-interpreter (quote-section contents
)
1957 "Interpret QUOTE-SECTION element as Org syntax.
1959 (org-element-property :value quote-section
))
1964 (defun org-element-src-block-parser (limit)
1967 LIMIT bounds the search.
1969 Return a list whose CAR is `src-block' and CDR is a plist
1970 containing `:language', `:switches', `:parameters', `:begin',
1971 `:end', `:hiddenp', `:number-lines', `:retain-labels',
1972 `:use-labels', `:label-fmt', `:preserve-indent', `:value' and
1973 `:post-blank' keywords.
1975 Assume point is at the beginning of the block."
1976 (let ((case-fold-search t
))
1977 (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC" limit t
)))
1978 ;; Incomplete block: parse it as a paragraph.
1979 (org-element-paragraph-parser limit
)
1980 (let ((contents-end (match-beginning 0)))
1982 (let* ((keywords (org-element--collect-affiliated-keywords))
1983 ;; Get beginning position.
1984 (begin (car keywords
))
1985 ;; Get language as a string.
1989 (concat "^[ \t]*#\\+BEGIN_SRC"
1990 "\\(?: +\\(\\S-+\\)\\)?"
1991 "\\(\\(?: +\\(?:-l \".*?\"\\|[-+][A-Za-z]\\)\\)+\\)?"
1993 (org-match-string-no-properties 1)))
1995 (switches (org-match-string-no-properties 2))
1997 (parameters (org-match-string-no-properties 3))
1998 ;; Switches analysis
1999 (number-lines (cond ((not switches
) nil
)
2000 ((string-match "-n\\>" switches
) 'new
)
2001 ((string-match "+n\\>" switches
) 'continued
)))
2002 (preserve-indent (and switches
(string-match "-i\\>" switches
)))
2003 (label-fmt (and switches
2004 (string-match "-l +\"\\([^\"\n]+\\)\"" switches
)
2005 (match-string 1 switches
)))
2006 ;; Should labels be retained in (or stripped from)
2010 (not (string-match "-r\\>" switches
))
2011 (and number-lines
(string-match "-k\\>" switches
))))
2012 ;; What should code-references use - labels or
2016 (and retain-labels
(not (string-match "-k\\>" switches
)))))
2017 ;; Get visibility status.
2018 (hidden (progn (forward-line) (org-invisible-p2)))
2020 (value (buffer-substring-no-properties (point) contents-end
))
2021 (pos-before-blank (progn (goto-char contents-end
)
2024 ;; Get position after ending blank lines.
2025 (end (progn (skip-chars-forward " \r\t\n" limit
)
2026 (if (eobp) (point) (point-at-bol)))))
2029 (list :language language
2030 :switches
(and (org-string-nw-p switches
)
2031 (org-trim switches
))
2032 :parameters
(and (org-string-nw-p parameters
)
2033 (org-trim parameters
))
2036 :number-lines number-lines
2037 :preserve-indent preserve-indent
2038 :retain-labels retain-labels
2039 :use-labels use-labels
2040 :label-fmt label-fmt
2043 :post-blank
(count-lines pos-before-blank end
))
2044 (cadr keywords
)))))))))
2046 (defun org-element-src-block-interpreter (src-block contents
)
2047 "Interpret SRC-BLOCK element as Org syntax.
2049 (let ((lang (org-element-property :language src-block
))
2050 (switches (org-element-property :switches src-block
))
2051 (params (org-element-property :parameters src-block
))
2052 (value (let ((val (org-element-property :value src-block
)))
2055 (org-src-preserve-indentation val
)
2056 ((zerop org-edit-src-content-indentation
)
2057 (org-remove-indentation val
))
2059 (let ((ind (make-string
2060 org-edit-src-content-indentation
32)))
2061 (replace-regexp-in-string
2062 "\\(^\\)[ \t]*\\S-" ind
2063 (org-remove-indentation val
) nil nil
1)))))))
2064 (concat (format "#+BEGIN_SRC%s\n"
2065 (concat (and lang
(concat " " lang
))
2066 (and switches
(concat " " switches
))
2067 (and params
(concat " " params
))))
2074 (defun org-element-table-parser (limit)
2075 "Parse a table at point.
2077 LIMIT bounds the search.
2079 Return a list whose CAR is `table' and CDR is a plist containing
2080 `:begin', `:end', `:tblfm', `:type', `:contents-begin',
2081 `:contents-end', `:value' and `:post-blank' keywords.
2083 Assume point is at the beginning of the table."
2085 (let* ((case-fold-search t
)
2086 (table-begin (point))
2087 (type (if (org-at-table.el-p
) 'table.el
'org
))
2088 (keywords (org-element--collect-affiliated-keywords))
2089 (begin (car keywords
))
2090 (table-end (goto-char (marker-position (org-table-end t
))))
2092 (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
2093 (push (org-match-string-no-properties 1) acc
)
2096 (pos-before-blank (point))
2097 (end (progn (skip-chars-forward " \r\t\n" limit
)
2098 (if (eobp) (point) (point-at-bol)))))
2105 ;; Only `org' tables have contents. `table.el' tables
2106 ;; use a `:value' property to store raw table as
2108 :contents-begin
(and (eq type
'org
) table-begin
)
2109 :contents-end
(and (eq type
'org
) table-end
)
2110 :value
(and (eq type
'table.el
)
2111 (buffer-substring-no-properties
2112 table-begin table-end
))
2113 :post-blank
(count-lines pos-before-blank end
))
2114 (cadr keywords
))))))
2116 (defun org-element-table-interpreter (table contents
)
2117 "Interpret TABLE element as Org syntax.
2119 (if (eq (org-element-property :type table
) 'table.el
)
2120 (org-remove-indentation (org-element-property :value table
))
2121 (concat (with-temp-buffer (insert contents
)
2124 (mapconcat (lambda (fm) (concat "#+TBLFM: " fm
))
2125 (reverse (org-element-property :tblfm table
))
2131 (defun org-element-table-row-parser (limit)
2132 "Parse table row at point.
2134 LIMIT bounds the search.
2136 Return a list whose CAR is `table-row' and CDR is a plist
2137 containing `:begin', `:end', `:contents-begin', `:contents-end',
2138 `:type' and `:post-blank' keywords."
2140 (let* ((type (if (looking-at "^[ \t]*|-") 'rule
'standard
))
2142 ;; A table rule has no contents. In that case, ensure
2143 ;; CONTENTS-BEGIN matches CONTENTS-END.
2144 (contents-begin (and (eq type
'standard
)
2145 (search-forward "|")
2147 (contents-end (and (eq type
'standard
)
2150 (skip-chars-backward " \t")
2152 (end (progn (forward-line) (point))))
2157 :contents-begin contents-begin
2158 :contents-end contents-end
2161 (defun org-element-table-row-interpreter (table-row contents
)
2162 "Interpret TABLE-ROW element as Org syntax.
2163 CONTENTS is the contents of the table row."
2164 (if (eq (org-element-property :type table-row
) 'rule
) "|-"
2165 (concat "| " contents
)))
2170 (defun org-element-verse-block-parser (limit)
2171 "Parse a verse block.
2173 LIMIT bounds the search.
2175 Return a list whose CAR is `verse-block' and CDR is a plist
2176 containing `:begin', `:end', `:contents-begin', `:contents-end',
2177 `:hiddenp' and `:post-blank' keywords.
2179 Assume point is at beginning of the block."
2180 (let ((case-fold-search t
))
2181 (if (not (save-excursion
2182 (re-search-forward "^[ \t]*#\\+END_VERSE" limit t
)))
2183 ;; Incomplete block: parse it as a paragraph.
2184 (org-element-paragraph-parser limit
)
2185 (let ((contents-end (match-beginning 0)))
2187 (let* ((keywords (org-element--collect-affiliated-keywords))
2188 (begin (car keywords
))
2189 (hidden (progn (forward-line) (org-invisible-p2)))
2190 (contents-begin (point))
2191 (pos-before-blank (progn (goto-char contents-end
)
2194 (end (progn (skip-chars-forward " \r\t\n" limit
)
2195 (if (eobp) (point) (point-at-bol)))))
2200 :contents-begin contents-begin
2201 :contents-end contents-end
2203 :post-blank
(count-lines pos-before-blank end
))
2204 (cadr keywords
)))))))))
2206 (defun org-element-verse-block-interpreter (verse-block contents
)
2207 "Interpret VERSE-BLOCK element as Org syntax.
2208 CONTENTS is verse block contents."
2209 (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents
))
2215 ;; Unlike to elements, interstices can be found between objects.
2216 ;; That's why, along with the parser, successor functions are provided
2217 ;; for each object. Some objects share the same successor (i.e. `code'
2218 ;; and `verbatim' objects).
2220 ;; A successor must accept a single argument bounding the search. It
2221 ;; will return either a cons cell whose CAR is the object's type, as
2222 ;; a symbol, and CDR the position of its next occurrence, or nil.
2224 ;; Successors follow the naming convention:
2225 ;; org-element-NAME-successor, where NAME is the name of the
2226 ;; successor, as defined in `org-element-all-successors'.
2228 ;; Some object types (i.e. `italic') are recursive. Restrictions on
2229 ;; object types they can contain will be specified in
2230 ;; `org-element-object-restrictions'.
2232 ;; Adding a new type of object is simple. Implement a successor,
2233 ;; a parser, and an interpreter for it, all following the naming
2234 ;; convention. Register type in `org-element-all-objects' and
2235 ;; successor in `org-element-all-successors'. Maybe tweak
2236 ;; restrictions about it, and that's it.
2241 (defun org-element-bold-parser ()
2242 "Parse bold object at point.
2244 Return a list whose CAR is `bold' and CDR is a plist with
2245 `:begin', `:end', `:contents-begin' and `:contents-end' and
2246 `:post-blank' keywords.
2248 Assume point is at the first star marker."
2250 (unless (bolp) (backward-char 1))
2251 (looking-at org-emph-re
)
2252 (let ((begin (match-beginning 2))
2253 (contents-begin (match-beginning 4))
2254 (contents-end (match-end 4))
2255 (post-blank (progn (goto-char (match-end 2))
2256 (skip-chars-forward " \t")))
2261 :contents-begin contents-begin
2262 :contents-end contents-end
2263 :post-blank post-blank
)))))
2265 (defun org-element-bold-interpreter (bold contents
)
2266 "Interpret BOLD object as Org syntax.
2267 CONTENTS is the contents of the object."
2268 (format "*%s*" contents
))
2270 (defun org-element-text-markup-successor (limit)
2271 "Search for the next text-markup object.
2273 LIMIT bounds the search.
2275 Return value is a cons cell whose CAR is a symbol among `bold',
2276 `italic', `underline', `strike-through', `code' and `verbatim'
2277 and CDR is beginning position."
2279 (unless (bolp) (backward-char))
2280 (when (re-search-forward org-emph-re limit t
)
2281 (let ((marker (match-string 3)))
2283 ((equal marker
"*") 'bold
)
2284 ((equal marker
"/") 'italic
)
2285 ((equal marker
"_") 'underline
)
2286 ((equal marker
"+") 'strike-through
)
2287 ((equal marker
"~") 'code
)
2288 ((equal marker
"=") 'verbatim
)
2289 (t (error "Unknown marker at %d" (match-beginning 3))))
2290 (match-beginning 2))))))
2295 (defun org-element-code-parser ()
2296 "Parse code object at point.
2298 Return a list whose CAR is `code' and CDR is a plist with
2299 `:value', `:begin', `:end' and `:post-blank' keywords.
2301 Assume point is at the first tilde marker."
2303 (unless (bolp) (backward-char 1))
2304 (looking-at org-emph-re
)
2305 (let ((begin (match-beginning 2))
2306 (value (org-match-string-no-properties 4))
2307 (post-blank (progn (goto-char (match-end 2))
2308 (skip-chars-forward " \t")))
2314 :post-blank post-blank
)))))
2316 (defun org-element-code-interpreter (code contents
)
2317 "Interpret CODE object as Org syntax.
2319 (format "~%s~" (org-element-property :value code
)))
2324 (defun org-element-entity-parser ()
2325 "Parse entity at point.
2327 Return a list whose CAR is `entity' and CDR a plist with
2328 `:begin', `:end', `:latex', `:latex-math-p', `:html', `:latin1',
2329 `:utf-8', `:ascii', `:use-brackets-p' and `:post-blank' as
2332 Assume point is at the beginning of the entity."
2334 (looking-at "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)")
2335 (let* ((value (org-entity-get (match-string 1)))
2336 (begin (match-beginning 0))
2337 (bracketsp (string= (match-string 2) "{}"))
2338 (post-blank (progn (goto-char (match-end 1))
2339 (when bracketsp
(forward-char 2))
2340 (skip-chars-forward " \t")))
2343 (list :name
(car value
)
2344 :latex
(nth 1 value
)
2345 :latex-math-p
(nth 2 value
)
2347 :ascii
(nth 4 value
)
2348 :latin1
(nth 5 value
)
2349 :utf-8
(nth 6 value
)
2352 :use-brackets-p bracketsp
2353 :post-blank post-blank
)))))
2355 (defun org-element-entity-interpreter (entity contents
)
2356 "Interpret ENTITY object as Org syntax.
2359 (org-element-property :name entity
)
2360 (when (org-element-property :use-brackets-p entity
) "{}")))
2362 (defun org-element-latex-or-entity-successor (limit)
2363 "Search for the next latex-fragment or entity object.
2365 LIMIT bounds the search.
2367 Return value is a cons cell whose CAR is `entity' or
2368 `latex-fragment' and CDR is beginning position."
2371 (remove "begin" (plist-get org-format-latex-options
:matchers
)))
2372 ;; ENTITY-RE matches both LaTeX commands and Org entities.
2374 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))
2375 (when (re-search-forward
2376 (concat (mapconcat (lambda (e) (nth 1 (assoc e org-latex-regexps
)))
2380 (goto-char (match-beginning 0))
2381 (if (looking-at entity-re
)
2382 ;; Determine if it's a real entity or a LaTeX command.
2383 (cons (if (org-entity-get (match-string 1)) 'entity
'latex-fragment
)
2384 (match-beginning 0))
2385 ;; No entity nor command: point is at a LaTeX fragment.
2386 ;; Determine its type to get the correct beginning position.
2387 (cons 'latex-fragment
2390 (when (looking-at (nth 1 (assoc e org-latex-regexps
)))
2393 (nth 2 (assoc e org-latex-regexps
))))))
2400 (defun org-element-export-snippet-parser ()
2401 "Parse export snippet at point.
2403 Return a list whose CAR is `export-snippet' and CDR a plist with
2404 `:begin', `:end', `:back-end', `:value' and `:post-blank' as
2407 Assume point is at the beginning of the snippet."
2409 (re-search-forward "@@\\([-A-Za-z0-9]+\\):" nil t
)
2410 (let* ((begin (match-beginning 0))
2411 (back-end (org-match-string-no-properties 1))
2412 (value (buffer-substring-no-properties
2414 (progn (re-search-forward "@@" nil t
) (match-beginning 0))))
2415 (post-blank (skip-chars-forward " \t"))
2417 (list 'export-snippet
2418 (list :back-end back-end
2422 :post-blank post-blank
)))))
2424 (defun org-element-export-snippet-interpreter (export-snippet contents
)
2425 "Interpret EXPORT-SNIPPET object as Org syntax.
2428 (org-element-property :back-end export-snippet
)
2429 (org-element-property :value export-snippet
)))
2431 (defun org-element-export-snippet-successor (limit)
2432 "Search for the next export-snippet object.
2434 LIMIT bounds the search.
2436 Return value is a cons cell whose CAR is `export-snippet' and CDR
2437 its beginning position."
2440 (when (and (re-search-forward "@@[-A-Za-z0-9]+:" limit t
)
2441 (setq beg
(match-beginning 0))
2442 (search-forward "@@" limit t
))
2443 (cons 'export-snippet beg
)))))
2446 ;;;; Footnote Reference
2448 (defun org-element-footnote-reference-parser ()
2449 "Parse footnote reference at point.
2451 Return a list whose CAR is `footnote-reference' and CDR a plist
2452 with `:label', `:type', `:inline-definition', `:begin', `:end'
2453 and `:post-blank' as keywords."
2455 (looking-at org-footnote-re
)
2456 (let* ((begin (point))
2457 (label (or (org-match-string-no-properties 2)
2458 (org-match-string-no-properties 3)
2459 (and (match-string 1)
2460 (concat "fn:" (org-match-string-no-properties 1)))))
2461 (type (if (or (not label
) (match-string 1)) 'inline
'standard
))
2462 (inner-begin (match-end 0))
2466 (while (and (> count
0) (re-search-forward "[][]" nil t
))
2467 (if (equal (match-string 0) "[") (incf count
) (decf count
)))
2469 (post-blank (progn (goto-char (1+ inner-end
))
2470 (skip-chars-forward " \t")))
2473 (list 'footnote-reference
2478 :post-blank post-blank
))))
2479 (org-element-put-property
2480 footnote-reference
:inline-definition
2481 (and (eq type
'inline
)
2482 (org-element-parse-secondary-string
2483 (buffer-substring inner-begin inner-end
)
2484 (org-element-restriction 'footnote-reference
)
2485 footnote-reference
))))))
2487 (defun org-element-footnote-reference-interpreter (footnote-reference contents
)
2488 "Interpret FOOTNOTE-REFERENCE object as Org syntax.
2490 (let ((label (or (org-element-property :label footnote-reference
) "fn:"))
2493 (org-element-property :inline-definition footnote-reference
)))
2494 (if (not inline-def
) ""
2495 (concat ":" (org-element-interpret-data inline-def
))))))
2496 (format "[%s]" (concat label def
))))
2498 (defun org-element-footnote-reference-successor (limit)
2499 "Search for the next footnote-reference object.
2501 LIMIT bounds the search.
2503 Return value is a cons cell whose CAR is `footnote-reference' and
2504 CDR is beginning position."
2507 (while (re-search-forward org-footnote-re limit t
)
2509 (let ((beg (match-beginning 0))
2512 (while (re-search-forward "[][]" limit t
)
2513 (if (equal (match-string 0) "[") (incf count
) (decf count
))
2515 (throw 'exit
(cons 'footnote-reference beg
))))))))))
2518 ;;;; Inline Babel Call
2520 (defun org-element-inline-babel-call-parser ()
2521 "Parse inline babel call at point.
2523 Return a list whose CAR is `inline-babel-call' and CDR a plist
2524 with `:begin', `:end', `:info' and `:post-blank' as keywords.
2526 Assume point is at the beginning of the babel call."
2528 (unless (bolp) (backward-char))
2529 (looking-at org-babel-inline-lob-one-liner-regexp
)
2530 (let ((info (save-match-data (org-babel-lob-get-info)))
2531 (begin (match-end 1))
2532 (post-blank (progn (goto-char (match-end 0))
2533 (skip-chars-forward " \t")))
2535 (list 'inline-babel-call
2539 :post-blank post-blank
)))))
2541 (defun org-element-inline-babel-call-interpreter (inline-babel-call contents
)
2542 "Interpret INLINE-BABEL-CALL object as Org syntax.
2544 (let* ((babel-info (org-element-property :info inline-babel-call
))
2545 (main-source (car babel-info
))
2546 (post-options (nth 1 babel-info
)))
2548 (if (string-match "\\[\\(\\[.*?\\]\\)\\]" main-source
)
2549 ;; Remove redundant square brackets.
2551 (match-string 1 main-source
) nil nil main-source
)
2553 (and post-options
(format "[%s]" post-options
)))))
2555 (defun org-element-inline-babel-call-successor (limit)
2556 "Search for the next inline-babel-call object.
2558 LIMIT bounds the search.
2560 Return value is a cons cell whose CAR is `inline-babel-call' and
2561 CDR is beginning position."
2563 ;; Use a simplified version of
2564 ;; `org-babel-inline-lob-one-liner-regexp'.
2565 (when (re-search-forward
2566 "call_\\([^()\n]+?\\)\\(?:\\[.*?\\]\\)?([^\n]*?)\\(\\[.*?\\]\\)?"
2568 (cons 'inline-babel-call
(match-beginning 0)))))
2571 ;;;; Inline Src Block
2573 (defun org-element-inline-src-block-parser ()
2574 "Parse inline source block at point.
2576 LIMIT bounds the search.
2578 Return a list whose CAR is `inline-src-block' and CDR a plist
2579 with `:begin', `:end', `:language', `:value', `:parameters' and
2580 `:post-blank' as keywords.
2582 Assume point is at the beginning of the inline src block."
2584 (unless (bolp) (backward-char))
2585 (looking-at org-babel-inline-src-block-regexp
)
2586 (let ((begin (match-beginning 1))
2587 (language (org-match-string-no-properties 2))
2588 (parameters (org-match-string-no-properties 4))
2589 (value (org-match-string-no-properties 5))
2590 (post-blank (progn (goto-char (match-end 0))
2591 (skip-chars-forward " \t")))
2593 (list 'inline-src-block
2594 (list :language language
2596 :parameters parameters
2599 :post-blank post-blank
)))))
2601 (defun org-element-inline-src-block-interpreter (inline-src-block contents
)
2602 "Interpret INLINE-SRC-BLOCK object as Org syntax.
2604 (let ((language (org-element-property :language inline-src-block
))
2605 (arguments (org-element-property :parameters inline-src-block
))
2606 (body (org-element-property :value inline-src-block
)))
2607 (format "src_%s%s{%s}"
2609 (if arguments
(format "[%s]" arguments
) "")
2612 (defun org-element-inline-src-block-successor (limit)
2613 "Search for the next inline-babel-call element.
2615 LIMIT bounds the search.
2617 Return value is a cons cell whose CAR is `inline-babel-call' and
2618 CDR is beginning position."
2620 (when (re-search-forward org-babel-inline-src-block-regexp limit t
)
2621 (cons 'inline-src-block
(match-beginning 1)))))
2625 (defun org-element-italic-parser ()
2626 "Parse italic object at point.
2628 Return a list whose CAR is `italic' and CDR is a plist with
2629 `:begin', `:end', `:contents-begin' and `:contents-end' and
2630 `:post-blank' keywords.
2632 Assume point is at the first slash marker."
2634 (unless (bolp) (backward-char 1))
2635 (looking-at org-emph-re
)
2636 (let ((begin (match-beginning 2))
2637 (contents-begin (match-beginning 4))
2638 (contents-end (match-end 4))
2639 (post-blank (progn (goto-char (match-end 2))
2640 (skip-chars-forward " \t")))
2645 :contents-begin contents-begin
2646 :contents-end contents-end
2647 :post-blank post-blank
)))))
2649 (defun org-element-italic-interpreter (italic contents
)
2650 "Interpret ITALIC object as Org syntax.
2651 CONTENTS is the contents of the object."
2652 (format "/%s/" contents
))
2657 (defun org-element-latex-fragment-parser ()
2658 "Parse latex fragment at point.
2660 Return a list whose CAR is `latex-fragment' and CDR a plist with
2661 `:value', `:begin', `:end', and `:post-blank' as keywords.
2663 Assume point is at the beginning of the latex fragment."
2665 (let* ((begin (point))
2669 (let ((latex-regexp (nth 1 (assoc e org-latex-regexps
))))
2670 (when (or (looking-at latex-regexp
)
2674 (looking-at latex-regexp
))))
2675 (throw 'exit
(nth 2 (assoc e org-latex-regexps
))))))
2676 (plist-get org-format-latex-options
:matchers
))
2677 ;; None found: it's a macro.
2678 (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")
2680 (value (match-string-no-properties substring-match
))
2681 (post-blank (progn (goto-char (match-end substring-match
))
2682 (skip-chars-forward " \t")))
2684 (list 'latex-fragment
2688 :post-blank post-blank
)))))
2690 (defun org-element-latex-fragment-interpreter (latex-fragment contents
)
2691 "Interpret LATEX-FRAGMENT object as Org syntax.
2693 (org-element-property :value latex-fragment
))
2697 (defun org-element-line-break-parser ()
2698 "Parse line break at point.
2700 Return a list whose CAR is `line-break', and CDR a plist with
2701 `:begin', `:end' and `:post-blank' keywords.
2703 Assume point is at the beginning of the line break."
2704 (list 'line-break
(list :begin
(point) :end
(point-at-eol) :post-blank
0)))
2706 (defun org-element-line-break-interpreter (line-break contents
)
2707 "Interpret LINE-BREAK object as Org syntax.
2711 (defun org-element-line-break-successor (limit)
2712 "Search for the next line-break object.
2714 LIMIT bounds the search.
2716 Return value is a cons cell whose CAR is `line-break' and CDR is
2717 beginning position."
2719 (let ((beg (and (re-search-forward "[^\\\\]\\(\\\\\\\\\\)[ \t]*$" limit t
)
2720 (goto-char (match-beginning 1)))))
2721 ;; A line break can only happen on a non-empty line.
2722 (when (and beg
(re-search-backward "\\S-" (point-at-bol) t
))
2723 (cons 'line-break beg
)))))
2728 (defun org-element-link-parser ()
2729 "Parse link at point.
2731 Return a list whose CAR is `link' and CDR a plist with `:type',
2732 `:path', `:raw-link', `:application', `:search-option', `:begin',
2733 `:end', `:contents-begin', `:contents-end' and `:post-blank' as
2736 Assume point is at the beginning of the link."
2738 (let ((begin (point))
2739 end contents-begin contents-end link-end post-blank path type
2740 raw-link link search-option application
)
2742 ;; Type 1: Text targeted from a radio target.
2743 ((and org-target-link-regexp
(looking-at org-target-link-regexp
))
2745 link-end
(match-end 0)
2746 path
(org-match-string-no-properties 0)))
2747 ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
2748 ((looking-at org-bracket-link-regexp
)
2749 (setq contents-begin
(match-beginning 3)
2750 contents-end
(match-end 3)
2751 link-end
(match-end 0)
2752 ;; RAW-LINK is the original link.
2753 raw-link
(org-match-string-no-properties 1)
2754 link
(org-translate-link
2755 (org-link-expand-abbrev
2756 (org-link-unescape raw-link
))))
2757 ;; Determine TYPE of link and set PATH accordingly.
2760 ((or (file-name-absolute-p link
) (string-match "^\\.\\.?/" link
))
2761 (setq type
"file" path link
))
2762 ;; Explicit type (http, irc, bbdb...). See `org-link-types'.
2763 ((string-match org-link-re-with-space3 link
)
2764 (setq type
(match-string 1 link
) path
(match-string 2 link
)))
2765 ;; Id type: PATH is the id.
2766 ((string-match "^id:\\([-a-f0-9]+\\)" link
)
2767 (setq type
"id" path
(match-string 1 link
)))
2768 ;; Code-ref type: PATH is the name of the reference.
2769 ((string-match "^(\\(.*\\))$" link
)
2770 (setq type
"coderef" path
(match-string 1 link
)))
2771 ;; Custom-id type: PATH is the name of the custom id.
2772 ((= (aref link
0) ?
#)
2773 (setq type
"custom-id" path
(substring link
1)))
2774 ;; Fuzzy type: Internal link either matches a target, an
2775 ;; headline name or nothing. PATH is the target or
2777 (t (setq type
"fuzzy" path link
))))
2778 ;; Type 3: Plain link, i.e. http://orgmode.org
2779 ((looking-at org-plain-link-re
)
2780 (setq raw-link
(org-match-string-no-properties 0)
2781 type
(org-match-string-no-properties 1)
2782 path
(org-match-string-no-properties 2)
2783 link-end
(match-end 0)))
2784 ;; Type 4: Angular link, i.e. <http://orgmode.org>
2785 ((looking-at org-angle-link-re
)
2786 (setq raw-link
(buffer-substring-no-properties
2787 (match-beginning 1) (match-end 2))
2788 type
(org-match-string-no-properties 1)
2789 path
(org-match-string-no-properties 2)
2790 link-end
(match-end 0))))
2791 ;; In any case, deduce end point after trailing white space from
2792 ;; LINK-END variable.
2793 (setq post-blank
(progn (goto-char link-end
) (skip-chars-forward " \t"))
2795 ;; Extract search option and opening application out of
2796 ;; "file"-type links.
2797 (when (member type org-element-link-type-is-file
)
2799 (cond ((string-match "^file\\+\\(.*\\)$" type
)
2800 (setq application
(match-string 1 type
)))
2801 ((not (string-match "^file" type
))
2802 (setq application type
)))
2803 ;; Extract search option from PATH.
2804 (when (string-match "::\\(.*\\)$" path
)
2805 (setq search-option
(match-string 1 path
)
2806 path
(replace-match "" nil nil path
)))
2807 ;; Make sure TYPE always report "file".
2812 :raw-link
(or raw-link path
)
2813 :application application
2814 :search-option search-option
2817 :contents-begin contents-begin
2818 :contents-end contents-end
2819 :post-blank post-blank
)))))
2821 (defun org-element-link-interpreter (link contents
)
2822 "Interpret LINK object as Org syntax.
2823 CONTENTS is the contents of the object, or nil."
2824 (let ((type (org-element-property :type link
))
2825 (raw-link (org-element-property :raw-link link
)))
2826 (if (string= type
"radio") raw-link
2829 (if contents
(format "[%s]" contents
) "")))))
2831 (defun org-element-link-successor (limit)
2832 "Search for the next link object.
2834 LIMIT bounds the search.
2836 Return value is a cons cell whose CAR is `link' and CDR is
2837 beginning position."
2840 (if (not org-target-link-regexp
) org-any-link-re
2841 (concat org-any-link-re
"\\|" org-target-link-regexp
))))
2842 (when (re-search-forward link-regexp limit t
)
2843 (cons 'link
(match-beginning 0))))))
2848 (defun org-element-macro-parser ()
2849 "Parse macro at point.
2851 Return a list whose CAR is `macro' and CDR a plist with `:key',
2852 `:args', `:begin', `:end', `:value' and `:post-blank' as
2855 Assume point is at the macro."
2857 (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
2858 (let ((begin (point))
2859 (key (downcase (org-match-string-no-properties 1)))
2860 (value (org-match-string-no-properties 0))
2861 (post-blank (progn (goto-char (match-end 0))
2862 (skip-chars-forward " \t")))
2864 (args (let ((args (org-match-string-no-properties 3)) args2
)
2866 (setq args
(org-split-string args
","))
2868 (while (string-match "\\\\\\'" (car args
))
2869 ;; Repair bad splits.
2870 (setcar (cdr args
) (concat (substring (car args
) 0 -
1)
2873 (push (pop args
) args2
))
2874 (mapcar 'org-trim
(nreverse args2
))))))
2881 :post-blank post-blank
)))))
2883 (defun org-element-macro-interpreter (macro contents
)
2884 "Interpret MACRO object as Org syntax.
2886 (org-element-property :value macro
))
2888 (defun org-element-macro-successor (limit)
2889 "Search for the next macro object.
2891 LIMIT bounds the search.
2893 Return value is cons cell whose CAR is `macro' and CDR is
2894 beginning position."
2896 (when (re-search-forward
2897 "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}"
2899 (cons 'macro
(match-beginning 0)))))
2904 (defun org-element-radio-target-parser ()
2905 "Parse radio target at point.
2907 Return a list whose CAR is `radio-target' and CDR a plist with
2908 `:begin', `:end', `:contents-begin', `:contents-end', `:value'
2909 and `:post-blank' as keywords.
2911 Assume point is at the radio target."
2913 (looking-at org-radio-target-regexp
)
2914 (let ((begin (point))
2915 (contents-begin (match-beginning 1))
2916 (contents-end (match-end 1))
2917 (value (org-match-string-no-properties 1))
2918 (post-blank (progn (goto-char (match-end 0))
2919 (skip-chars-forward " \t")))
2924 :contents-begin contents-begin
2925 :contents-end contents-end
2926 :post-blank post-blank
2929 (defun org-element-radio-target-interpreter (target contents
)
2930 "Interpret TARGET object as Org syntax.
2931 CONTENTS is the contents of the object."
2932 (concat "<<<" contents
">>>"))
2934 (defun org-element-radio-target-successor (limit)
2935 "Search for the next radio-target object.
2937 LIMIT bounds the search.
2939 Return value is a cons cell whose CAR is `radio-target' and CDR
2940 is beginning position."
2942 (when (re-search-forward org-radio-target-regexp limit t
)
2943 (cons 'radio-target
(match-beginning 0)))))
2946 ;;;; Statistics Cookie
2948 (defun org-element-statistics-cookie-parser ()
2949 "Parse statistics cookie at point.
2951 Return a list whose CAR is `statistics-cookie', and CDR a plist
2952 with `:begin', `:end', `:value' and `:post-blank' keywords.
2954 Assume point is at the beginning of the statistics-cookie."
2956 (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
2957 (let* ((begin (point))
2958 (value (buffer-substring-no-properties
2959 (match-beginning 0) (match-end 0)))
2960 (post-blank (progn (goto-char (match-end 0))
2961 (skip-chars-forward " \t")))
2963 (list 'statistics-cookie
2967 :post-blank post-blank
)))))
2969 (defun org-element-statistics-cookie-interpreter (statistics-cookie contents
)
2970 "Interpret STATISTICS-COOKIE object as Org syntax.
2972 (org-element-property :value statistics-cookie
))
2974 (defun org-element-statistics-cookie-successor (limit)
2975 "Search for the next statistics cookie object.
2977 LIMIT bounds the search.
2979 Return value is a cons cell whose CAR is `statistics-cookie' and
2980 CDR is beginning position."
2982 (when (re-search-forward "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]" limit t
)
2983 (cons 'statistics-cookie
(match-beginning 0)))))
2988 (defun org-element-strike-through-parser ()
2989 "Parse strike-through object at point.
2991 Return a list whose CAR is `strike-through' and CDR is a plist
2992 with `:begin', `:end', `:contents-begin' and `:contents-end' and
2993 `:post-blank' keywords.
2995 Assume point is at the first plus sign marker."
2997 (unless (bolp) (backward-char 1))
2998 (looking-at org-emph-re
)
2999 (let ((begin (match-beginning 2))
3000 (contents-begin (match-beginning 4))
3001 (contents-end (match-end 4))
3002 (post-blank (progn (goto-char (match-end 2))
3003 (skip-chars-forward " \t")))
3005 (list 'strike-through
3008 :contents-begin contents-begin
3009 :contents-end contents-end
3010 :post-blank post-blank
)))))
3012 (defun org-element-strike-through-interpreter (strike-through contents
)
3013 "Interpret STRIKE-THROUGH object as Org syntax.
3014 CONTENTS is the contents of the object."
3015 (format "+%s+" contents
))
3020 (defun org-element-subscript-parser ()
3021 "Parse subscript at point.
3023 Return a list whose CAR is `subscript' and CDR a plist with
3024 `:begin', `:end', `:contents-begin', `:contents-end',
3025 `:use-brackets-p' and `:post-blank' as keywords.
3027 Assume point is at the underscore."
3029 (unless (bolp) (backward-char))
3030 (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp
)
3032 (not (looking-at org-match-substring-regexp
))))
3033 (begin (match-beginning 2))
3034 (contents-begin (or (match-beginning 5)
3035 (match-beginning 3)))
3036 (contents-end (or (match-end 5) (match-end 3)))
3037 (post-blank (progn (goto-char (match-end 0))
3038 (skip-chars-forward " \t")))
3043 :use-brackets-p bracketsp
3044 :contents-begin contents-begin
3045 :contents-end contents-end
3046 :post-blank post-blank
)))))
3048 (defun org-element-subscript-interpreter (subscript contents
)
3049 "Interpret SUBSCRIPT object as Org syntax.
3050 CONTENTS is the contents of the object."
3052 (if (org-element-property :use-brackets-p subscript
) "_{%s}" "_%s")
3055 (defun org-element-sub/superscript-successor
(limit)
3056 "Search for the next sub/superscript object.
3058 LIMIT bounds the search.
3060 Return value is a cons cell whose CAR is either `subscript' or
3061 `superscript' and CDR is beginning position."
3063 (when (re-search-forward org-match-substring-regexp limit t
)
3064 (cons (if (string= (match-string 2) "_") 'subscript
'superscript
)
3065 (match-beginning 2)))))
3070 (defun org-element-superscript-parser ()
3071 "Parse superscript at point.
3073 Return a list whose CAR is `superscript' and CDR a plist with
3074 `:begin', `:end', `:contents-begin', `:contents-end',
3075 `:use-brackets-p' and `:post-blank' as keywords.
3077 Assume point is at the caret."
3079 (unless (bolp) (backward-char))
3080 (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp
) t
3081 (not (looking-at org-match-substring-regexp
))))
3082 (begin (match-beginning 2))
3083 (contents-begin (or (match-beginning 5)
3084 (match-beginning 3)))
3085 (contents-end (or (match-end 5) (match-end 3)))
3086 (post-blank (progn (goto-char (match-end 0))
3087 (skip-chars-forward " \t")))
3092 :use-brackets-p bracketsp
3093 :contents-begin contents-begin
3094 :contents-end contents-end
3095 :post-blank post-blank
)))))
3097 (defun org-element-superscript-interpreter (superscript contents
)
3098 "Interpret SUPERSCRIPT object as Org syntax.
3099 CONTENTS is the contents of the object."
3101 (if (org-element-property :use-brackets-p superscript
) "^{%s}" "^%s")
3107 (defun org-element-table-cell-parser ()
3108 "Parse table cell at point.
3110 Return a list whose CAR is `table-cell' and CDR is a plist
3111 containing `:begin', `:end', `:contents-begin', `:contents-end'
3112 and `:post-blank' keywords."
3113 (looking-at "[ \t]*\\(.*?\\)[ \t]*|")
3114 (let* ((begin (match-beginning 0))
3116 (contents-begin (match-beginning 1))
3117 (contents-end (match-end 1)))
3121 :contents-begin contents-begin
3122 :contents-end contents-end
3125 (defun org-element-table-cell-interpreter (table-cell contents
)
3126 "Interpret TABLE-CELL element as Org syntax.
3127 CONTENTS is the contents of the cell, or nil."
3128 (concat " " contents
" |"))
3130 (defun org-element-table-cell-successor (limit)
3131 "Search for the next table-cell object.
3133 LIMIT bounds the search.
3135 Return value is a cons cell whose CAR is `table-cell' and CDR is
3136 beginning position."
3137 (when (looking-at "[ \t]*.*?[ \t]+|") (cons 'table-cell
(point))))
3142 (defun org-element-target-parser ()
3143 "Parse target at point.
3145 Return a list whose CAR is `target' and CDR a plist with
3146 `:begin', `:end', `:value' and `:post-blank' as keywords.
3148 Assume point is at the target."
3150 (looking-at org-target-regexp
)
3151 (let ((begin (point))
3152 (value (org-match-string-no-properties 1))
3153 (post-blank (progn (goto-char (match-end 0))
3154 (skip-chars-forward " \t")))
3160 :post-blank post-blank
)))))
3162 (defun org-element-target-interpreter (target contents
)
3163 "Interpret TARGET object as Org syntax.
3165 (format "<<%s>>" (org-element-property :value target
)))
3167 (defun org-element-target-successor (limit)
3168 "Search for the next target object.
3170 LIMIT bounds the search.
3172 Return value is a cons cell whose CAR is `target' and CDR is
3173 beginning position."
3175 (when (re-search-forward org-target-regexp limit t
)
3176 (cons 'target
(match-beginning 0)))))
3181 (defun org-element-timestamp-parser ()
3182 "Parse time stamp at point.
3184 Return a list whose CAR is `timestamp', and CDR a plist with
3185 `:type', `:begin', `:end', `:value' and `:post-blank' keywords.
3187 Assume point is at the beginning of the timestamp."
3189 (let* ((begin (point))
3190 (activep (eq (char-after) ?
<))
3193 (looking-at "[<[]\\(\\(%%\\)?.*?\\)[]>]\\(?:--[<[]\\(.*?\\)[]>]\\)?")
3194 (match-string-no-properties 1)))
3195 (range-end (match-string-no-properties 3))
3196 (type (cond ((match-string 2) 'diary
)
3197 ((and activep range-end
) 'active-range
)
3199 (range-end 'inactive-range
)
3201 (post-blank (progn (goto-char (match-end 0))
3202 (skip-chars-forward " \t")))
3207 :range-end range-end
3210 :post-blank post-blank
)))))
3212 (defun org-element-timestamp-interpreter (timestamp contents
)
3213 "Interpret TIMESTAMP object as Org syntax.
3215 (let ((type (org-element-property :type timestamp
) ))
3217 (format (if (memq type
'(inactive inactive-range
)) "[%s]" "<%s>")
3218 (org-element-property :value timestamp
))
3219 (let ((range-end (org-element-property :range-end timestamp
)))
3222 (format (if (eq type
'inactive-range
) "[%s]" "<%s>")
3225 (defun org-element-timestamp-successor (limit)
3226 "Search for the next timestamp object.
3228 LIMIT bounds the search.
3230 Return value is a cons cell whose CAR is `timestamp' and CDR is
3231 beginning position."
3233 (when (re-search-forward
3234 (concat org-ts-regexp-both
3236 "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
3238 "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
3240 (cons 'timestamp
(match-beginning 0)))))
3245 (defun org-element-underline-parser ()
3246 "Parse underline object at point.
3248 Return a list whose CAR is `underline' and CDR is a plist with
3249 `:begin', `:end', `:contents-begin' and `:contents-end' and
3250 `:post-blank' keywords.
3252 Assume point is at the first underscore marker."
3254 (unless (bolp) (backward-char 1))
3255 (looking-at org-emph-re
)
3256 (let ((begin (match-beginning 2))
3257 (contents-begin (match-beginning 4))
3258 (contents-end (match-end 4))
3259 (post-blank (progn (goto-char (match-end 2))
3260 (skip-chars-forward " \t")))
3265 :contents-begin contents-begin
3266 :contents-end contents-end
3267 :post-blank post-blank
)))))
3269 (defun org-element-underline-interpreter (underline contents
)
3270 "Interpret UNDERLINE object as Org syntax.
3271 CONTENTS is the contents of the object."
3272 (format "_%s_" contents
))
3277 (defun org-element-verbatim-parser ()
3278 "Parse verbatim object at point.
3280 Return a list whose CAR is `verbatim' and CDR is a plist with
3281 `:value', `:begin', `:end' and `:post-blank' keywords.
3283 Assume point is at the first equal sign marker."
3285 (unless (bolp) (backward-char 1))
3286 (looking-at org-emph-re
)
3287 (let ((begin (match-beginning 2))
3288 (value (org-match-string-no-properties 4))
3289 (post-blank (progn (goto-char (match-end 2))
3290 (skip-chars-forward " \t")))
3296 :post-blank post-blank
)))))
3298 (defun org-element-verbatim-interpreter (verbatim contents
)
3299 "Interpret VERBATIM object as Org syntax.
3301 (format "=%s=" (org-element-property :value verbatim
)))
3305 ;;; Parsing Element Starting At Point
3307 ;; `org-element--current-element' is the core function of this section.
3308 ;; It returns the Lisp representation of the element starting at
3311 ;; `org-element--current-element' makes use of special modes. They
3312 ;; are activated for fixed element chaining (i.e. `plain-list' >
3313 ;; `item') or fixed conditional element chaining (i.e. `headline' >
3314 ;; `section'). Special modes are: `first-section', `section',
3315 ;; `quote-section', `item' and `table-row'.
3317 (defun org-element--current-element
3318 (limit &optional granularity special structure
)
3319 "Parse the element starting at point.
3321 LIMIT bounds the search.
3323 Return value is a list like (TYPE PROPS) where TYPE is the type
3324 of the element and PROPS a plist of properties associated to the
3327 Possible types are defined in `org-element-all-elements'.
3329 Optional argument GRANULARITY determines the depth of the
3330 recursion. Allowed values are `headline', `greater-element',
3331 `element', `object' or nil. When it is broader than `object' (or
3332 nil), secondary values will not be parsed, since they only
3335 Optional argument SPECIAL, when non-nil, can be either
3336 `first-section', `section', `quote-section', `table-row' and
3339 If STRUCTURE isn't provided but SPECIAL is set to `item', it will
3342 This function assumes point is always at the beginning of the
3343 element it has to parse."
3345 ;; If point is at an affiliated keyword, try moving to the
3346 ;; beginning of the associated element. If none is found, the
3347 ;; keyword is orphaned and will be treated as plain text.
3348 (when (looking-at org-element--affiliated-re
)
3349 (let ((opoint (point)))
3350 (while (looking-at org-element--affiliated-re
) (forward-line))
3351 (when (looking-at "[ \t]*$") (goto-char opoint
))))
3352 (let ((case-fold-search t
)
3353 ;; Determine if parsing depth allows for secondary strings
3354 ;; parsing. It only applies to elements referenced in
3355 ;; `org-element-secondary-value-alist'.
3356 (raw-secondary-p (and granularity
(not (eq granularity
'object
)))))
3360 (org-element-item-parser limit structure raw-secondary-p
))
3362 ((eq special
'table-row
) (org-element-table-row-parser limit
))
3364 ((org-with-limited-levels (org-at-heading-p))
3365 (org-element-headline-parser limit raw-secondary-p
))
3366 ;; Sections (must be checked after headline).
3367 ((eq special
'section
) (org-element-section-parser limit
))
3368 ((eq special
'quote-section
) (org-element-quote-section-parser limit
))
3369 ((eq special
'first-section
)
3370 (org-element-section-parser
3371 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
3373 ;; When not at bol, point is at the beginning of an item or
3374 ;; a footnote definition: next item is always a paragraph.
3375 ((not (bolp)) (org-element-paragraph-parser limit
))
3376 ;; Planning and Clock.
3377 ((and (looking-at org-planning-or-clock-line-re
))
3378 (if (equal (match-string 1) org-clock-string
)
3379 (org-element-clock-parser limit
)
3380 (org-element-planning-parser limit
)))
3383 (org-element-inlinetask-parser limit raw-secondary-p
))
3384 ;; LaTeX Environment.
3385 ((looking-at "[ \t]*\\\\begin{\\([A-Za-z0-9*]+\\)}")
3388 (format "[ \t]*\\\\end{%s}[ \t]*"
3389 (regexp-quote (match-string 1)))
3391 (org-element-latex-environment-parser limit
)
3392 (org-element-paragraph-parser limit
)))
3393 ;; Drawer and Property Drawer.
3394 ((looking-at org-drawer-regexp
)
3395 (let ((name (match-string 1)))
3397 ((not (save-excursion
3398 (re-search-forward "^[ \t]*:END:[ \t]*$" nil t
)))
3399 (org-element-paragraph-parser limit
))
3400 ((equal "PROPERTIES" name
)
3401 (org-element-property-drawer-parser limit
))
3402 (t (org-element-drawer-parser limit
)))))
3404 ((looking-at "[ \t]*:\\( \\|$\\)")
3405 (org-element-fixed-width-parser limit
))
3406 ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
3408 ((looking-at "[ \t]*#")
3409 (goto-char (match-end 0))
3410 (cond ((looking-at "\\(?: \\|$\\)")
3412 (org-element-comment-parser limit
))
3413 ((looking-at "\\+BEGIN_\\(\\S-+\\)")
3415 (let ((parser (assoc (upcase (match-string 1))
3416 org-element-block-name-alist
)))
3417 (if parser
(funcall (cdr parser
) limit
)
3418 (org-element-special-block-parser limit
))))
3419 ((looking-at "\\+CALL:")
3421 (org-element-babel-call-parser limit
))
3422 ((looking-at "\\+BEGIN:? ")
3424 (org-element-dynamic-block-parser limit
))
3425 ((looking-at "\\+\\S-+:")
3427 (org-element-keyword-parser limit
))
3430 (org-element-paragraph-parser limit
))))
3431 ;; Footnote Definition.
3432 ((looking-at org-footnote-definition-re
)
3433 (org-element-footnote-definition-parser limit
))
3435 ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
3436 (org-element-horizontal-rule-parser limit
))
3438 ((org-at-table-p t
) (org-element-table-parser limit
))
3440 ((looking-at (org-item-re))
3441 (org-element-plain-list-parser limit
(or structure
(org-list-struct))))
3442 ;; Default element: Paragraph.
3443 (t (org-element-paragraph-parser limit
))))))
3446 ;; Most elements can have affiliated keywords. When looking for an
3447 ;; element beginning, we want to move before them, as they belong to
3448 ;; that element, and, in the meantime, collect information they give
3449 ;; into appropriate properties. Hence the following function.
3451 ;; Usage of optional arguments may not be obvious at first glance:
3453 ;; - TRANS-LIST is used to polish keywords names that have evolved
3454 ;; during Org history. In example, even though =result= and
3455 ;; =results= coexist, we want to have them under the same =result=
3456 ;; property. It's also true for "srcname" and "name", where the
3457 ;; latter seems to be preferred nowadays (thus the "name" property).
3459 ;; - CONSED allows to regroup multi-lines keywords under the same
3460 ;; property, while preserving their own identity. This is mostly
3461 ;; used for "attr_latex" and al.
3463 ;; - PARSED prepares a keyword value for export. This is useful for
3464 ;; "caption". Objects restrictions for such keywords are defined in
3465 ;; `org-element-object-restrictions'.
3467 ;; - DUALS is used to take care of keywords accepting a main and an
3468 ;; optional secondary values. For example "results" has its
3469 ;; source's name as the main value, and may have an hash string in
3470 ;; optional square brackets as the secondary one.
3472 ;; A keyword may belong to more than one category.
3474 (defun org-element--collect-affiliated-keywords
3475 (&optional key-re trans-list consed parsed duals
)
3476 "Collect affiliated keywords before point.
3478 Optional argument KEY-RE is a regexp matching keywords, which
3479 puts matched keyword in group 1. It defaults to
3480 `org-element--affiliated-re'.
3482 TRANS-LIST is an alist where key is the keyword and value the
3483 property name it should be translated to, without the colons. It
3484 defaults to `org-element-keyword-translation-alist'.
3486 CONSED is a list of strings. Any keyword belonging to that list
3487 will have its value consed. The check is done after keyword
3488 translation. It defaults to `org-element-multiple-keywords'.
3490 PARSED is a list of strings. Any keyword member of this list
3491 will have its value parsed. The check is done after keyword
3492 translation. If a keyword is a member of both CONSED and PARSED,
3493 it's value will be a list of parsed strings. It defaults to
3494 `org-element-parsed-keywords'.
3496 DUALS is a list of strings. Any keyword member of this list can
3497 have two parts: one mandatory and one optional. Its value is
3498 a cons cell whose CAR is the former, and the CDR the latter. If
3499 a keyword is a member of both PARSED and DUALS, both values will
3500 be parsed. It defaults to `org-element-dual-keywords'.
3502 Return a list whose CAR is the position at the first of them and
3503 CDR a plist of keywords and values."
3505 (let ((case-fold-search t
)
3506 (key-re (or key-re org-element--affiliated-re
))
3507 (trans-list (or trans-list org-element-keyword-translation-alist
))
3508 (consed (or consed org-element-multiple-keywords
))
3509 (parsed (or parsed org-element-parsed-keywords
))
3510 (duals (or duals org-element-dual-keywords
))
3511 ;; RESTRICT is the list of objects allowed in parsed
3513 (restrict (org-element-restriction 'keyword
))
3516 (while (and (not (bobp)) (progn (forward-line -
1) (looking-at key-re
)))
3517 (let* ((raw-kwd (upcase (or (match-string 2) (match-string 1))))
3518 ;; Apply translation to RAW-KWD. From there, KWD is
3519 ;; the official keyword.
3520 (kwd (or (cdr (assoc raw-kwd trans-list
)) raw-kwd
))
3521 ;; Find main value for any keyword.
3525 (buffer-substring-no-properties
3526 (match-end 0) (point-at-eol)))))
3527 ;; If KWD is a dual keyword, find its secondary
3528 ;; value. Maybe parse it.
3530 (and (member kwd duals
)
3531 (let ((sec (org-match-string-no-properties 3)))
3532 (if (or (not sec
) (not (member kwd parsed
))) sec
3533 (org-element-parse-secondary-string sec restrict
)))))
3534 ;; Attribute a property name to KWD.
3535 (kwd-sym (and kwd
(intern (concat ":" (downcase kwd
))))))
3536 ;; Now set final shape for VALUE.
3537 (when (member kwd parsed
)
3538 (setq value
(org-element-parse-secondary-string value restrict
)))
3539 (when (member kwd duals
)
3540 ;; VALUE is mandatory. Set it to nil if there is none.
3541 (setq value
(and value
(cons value dual-value
))))
3542 ;; Attributes are always consed.
3543 (when (or (member kwd consed
) (string-match "^ATTR_" kwd
))
3544 (setq value
(cons value
(plist-get output kwd-sym
))))
3545 ;; Eventually store the new value in OUTPUT.
3546 (setq output
(plist-put output kwd-sym value
))))
3547 (unless (looking-at key-re
) (forward-line 1)))
3548 (list (point) output
))))
3554 ;; The two major functions here are `org-element-parse-buffer', which
3555 ;; parses Org syntax inside the current buffer, taking into account
3556 ;; region, narrowing, or even visibility if specified, and
3557 ;; `org-element-parse-secondary-string', which parses objects within
3560 ;; The (almost) almighty `org-element-map' allows to apply a function
3561 ;; on elements or objects matching some type, and accumulate the
3562 ;; resulting values. In an export situation, it also skips unneeded
3563 ;; parts of the parse tree.
3565 (defun org-element-parse-buffer (&optional granularity visible-only
)
3566 "Recursively parse the buffer and return structure.
3567 If narrowing is in effect, only parse the visible part of the
3570 Optional argument GRANULARITY determines the depth of the
3571 recursion. It can be set to the following symbols:
3573 `headline' Only parse headlines.
3574 `greater-element' Don't recurse into greater elements excepted
3575 headlines and sections. Thus, elements
3576 parsed are the top-level ones.
3577 `element' Parse everything but objects and plain text.
3578 `object' Parse the complete buffer (default).
3580 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
3583 Assume buffer is in Org mode."
3585 (goto-char (point-min))
3586 (org-skip-whitespace)
3587 (org-element--parse-elements
3588 (point-at-bol) (point-max)
3589 ;; Start in `first-section' mode so text before the first
3590 ;; headline belongs to a section.
3591 'first-section nil granularity visible-only
(list 'org-data nil
))))
3593 (defun org-element-parse-secondary-string (string restriction
&optional parent
)
3594 "Recursively parse objects in STRING and return structure.
3596 RESTRICTION is a symbol limiting the object types that will be
3599 Optional argument PARENT, when non-nil, is the element or object
3600 containing the secondary string. It is used to set correctly
3601 `:parent' property within the string."
3604 (let ((secondary (org-element--parse-objects
3605 (point-min) (point-max) nil restriction
)))
3606 (mapc (lambda (obj) (org-element-put-property obj
:parent parent
))
3609 (defun org-element-map (data types fun
&optional info first-match no-recursion
)
3610 "Map a function on selected elements or objects.
3612 DATA is the parsed tree, as returned by, i.e,
3613 `org-element-parse-buffer'. TYPES is a symbol or list of symbols
3614 of elements or objects types. FUN is the function called on the
3615 matching element or object. It must accept one arguments: the
3616 element or object itself.
3618 When optional argument INFO is non-nil, it should be a plist
3619 holding export options. In that case, parts of the parse tree
3620 not exportable according to that property list will be skipped.
3622 When optional argument FIRST-MATCH is non-nil, stop at the first
3623 match for which FUN doesn't return nil, and return that value.
3625 Optional argument NO-RECURSION is a symbol or a list of symbols
3626 representing elements or objects types. `org-element-map' won't
3627 enter any recursive element or object whose type belongs to that
3628 list. Though, FUN can still be applied on them.
3630 Nil values returned from FUN do not appear in the results."
3631 ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
3632 (unless (listp types
) (setq types
(list types
)))
3633 (unless (listp no-recursion
) (setq no-recursion
(list no-recursion
)))
3634 ;; Recursion depth is determined by --CATEGORY.
3637 (let ((category 'greater-elements
))
3638 (mapc (lambda (type)
3639 (cond ((or (memq type org-element-all-objects
)
3640 (eq type
'plain-text
))
3641 ;; If one object is found, the function
3642 ;; has to recurse into every object.
3643 (throw 'found
'objects
))
3644 ((not (memq type org-element-greater-elements
))
3645 ;; If one regular element is found, the
3646 ;; function has to recurse, at least,
3647 ;; into every element it encounters.
3648 (and (not (eq category
'elements
))
3649 (setq category
'elements
)))))
3657 ;; Recursively walk DATA. INFO, if non-nil, is a plist
3658 ;; holding contextual information.
3659 (let ((--type (org-element-type --data
)))
3662 ;; Ignored element in an export context.
3663 ((and info
(memq --data
(plist-get info
:ignore-list
))))
3664 ;; Secondary string: only objects can be found there.
3666 (when (eq --category
'objects
) (mapc --walk-tree --data
)))
3667 ;; Unconditionally enter parse trees.
3668 ((eq --type
'org-data
)
3669 (mapc --walk-tree
(org-element-contents --data
)))
3671 ;; Check if TYPE is matching among TYPES. If so,
3672 ;; apply FUN to --DATA and accumulate return value
3673 ;; into --ACC (or exit if FIRST-MATCH is non-nil).
3674 (when (memq --type types
)
3675 (let ((result (funcall fun --data
)))
3676 (cond ((not result
))
3677 (first-match (throw '--map-first-match result
))
3678 (t (push result --acc
)))))
3679 ;; If --DATA has a secondary string that can contain
3680 ;; objects with their type among TYPES, look into it.
3681 (when (eq --category
'objects
)
3683 (assq --type org-element-secondary-value-alist
)))
3685 (funcall --walk-tree
3686 (org-element-property (cdr sec-prop
) --data
)))))
3687 ;; Determine if a recursion into --DATA is possible.
3689 ;; --TYPE is explicitly removed from recursion.
3690 ((memq --type no-recursion
))
3691 ;; --DATA has no contents.
3692 ((not (org-element-contents --data
)))
3693 ;; Looking for greater elements but --DATA is simply
3694 ;; an element or an object.
3695 ((and (eq --category
'greater-elements
)
3696 (not (memq --type org-element-greater-elements
))))
3697 ;; Looking for elements but --DATA is an object.
3698 ((and (eq --category
'elements
)
3699 (memq --type org-element-all-objects
)))
3700 ;; In any other case, map contents.
3701 (t (mapc --walk-tree
(org-element-contents --data
)))))))))))
3702 (catch '--map-first-match
3703 (funcall --walk-tree data
)
3704 ;; Return value in a proper order.
3707 ;; The following functions are internal parts of the parser.
3709 ;; The first one, `org-element--parse-elements' acts at the element's
3712 ;; The second one, `org-element--parse-objects' applies on all objects
3713 ;; of a paragraph or a secondary string. It uses
3714 ;; `org-element--get-next-object-candidates' to optimize the search of
3715 ;; the next object in the buffer.
3717 ;; More precisely, that function looks for every allowed object type
3718 ;; first. Then, it discards failed searches, keeps further matches,
3719 ;; and searches again types matched behind point, for subsequent
3720 ;; calls. Thus, searching for a given type fails only once, and every
3721 ;; object is searched only once at top level (but sometimes more for
3724 (defun org-element--parse-elements
3725 (beg end special structure granularity visible-only acc
)
3726 "Parse elements between BEG and END positions.
3728 SPECIAL prioritize some elements over the others. It can be set
3729 to `first-section', `quote-section', `section' `item' or
3732 When value is `item', STRUCTURE will be used as the current list
3735 GRANULARITY determines the depth of the recursion. See
3736 `org-element-parse-buffer' for more information.
3738 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
3741 Elements are accumulated into ACC."
3744 ;; When parsing only headlines, skip any text before first one.
3745 (when (and (eq granularity
'headline
) (not (org-at-heading-p)))
3746 (org-with-limited-levels (outline-next-heading)))
3748 (while (< (point) end
)
3749 ;; Find current element's type and parse it accordingly to
3751 (let* ((element (org-element--current-element
3752 end granularity special structure
))
3753 (type (org-element-type element
))
3754 (cbeg (org-element-property :contents-begin element
)))
3755 (goto-char (org-element-property :end element
))
3756 ;; Fill ELEMENT contents by side-effect.
3758 ;; If VISIBLE-ONLY is true and element is hidden or if it has
3759 ;; no contents, don't modify it.
3760 ((or (and visible-only
(org-element-property :hiddenp element
))
3762 ;; Greater element: parse it between `contents-begin' and
3763 ;; `contents-end'. Make sure GRANULARITY allows the
3764 ;; recursion, or ELEMENT is an headline, in which case going
3765 ;; inside is mandatory, in order to get sub-level headings.
3766 ((and (memq type org-element-greater-elements
)
3767 (or (memq granularity
'(element object nil
))
3768 (and (eq granularity
'greater-element
)
3770 (eq type
'headline
)))
3771 (org-element--parse-elements
3772 cbeg
(org-element-property :contents-end element
)
3773 ;; Possibly switch to a special mode.
3776 (if (org-element-property :quotedp element
) 'quote-section
3780 (org-element-property :structure element
)
3781 granularity visible-only element
))
3782 ;; ELEMENT has contents. Parse objects inside, if
3783 ;; GRANULARITY allows it.
3784 ((memq granularity
'(object nil
))
3785 (org-element--parse-objects
3786 cbeg
(org-element-property :contents-end element
) element
3787 (org-element-restriction type
))))
3788 (org-element-adopt-elements acc element
)))
3792 (defun org-element--parse-objects (beg end acc restriction
)
3793 "Parse objects between BEG and END and return recursive structure.
3795 Objects are accumulated in ACC.
3797 RESTRICTION is a list of object types which are allowed in the
3802 (while (and (< (point) end
)
3803 (setq candidates
(org-element--get-next-object-candidates
3804 end restriction candidates
)))
3806 (let ((pos (apply 'min
(mapcar 'cdr candidates
))))
3809 (funcall (intern (format "org-element-%s-parser"
3810 (car (rassq pos candidates
)))))))))
3811 ;; 1. Text before any object. Untabify it.
3812 (let ((obj-beg (org-element-property :begin next-object
)))
3813 (unless (= (point) obj-beg
)
3815 (org-element-adopt-elements
3817 (replace-regexp-in-string
3818 "\t" (make-string tab-width ?
)
3819 (buffer-substring-no-properties (point) obj-beg
))))))
3821 (let ((obj-end (org-element-property :end next-object
))
3822 (cont-beg (org-element-property :contents-begin next-object
)))
3823 ;; Fill contents of NEXT-OBJECT by side-effect, if it has
3824 ;; a recursive type.
3826 (memq (car next-object
) org-element-recursive-objects
))
3830 (org-element-property :contents-end next-object
))
3831 (org-element--parse-objects
3832 (point-min) (point-max) next-object
3833 (org-element-restriction next-object
))))
3834 (setq acc
(org-element-adopt-elements acc next-object
))
3835 (goto-char obj-end
))))
3836 ;; 3. Text after last object. Untabify it.
3837 (unless (= (point) end
)
3839 (org-element-adopt-elements
3841 (replace-regexp-in-string
3842 "\t" (make-string tab-width ?
)
3843 (buffer-substring-no-properties (point) end
)))))
3847 (defun org-element--get-next-object-candidates (limit restriction objects
)
3848 "Return an alist of candidates for the next object.
3850 LIMIT bounds the search, and RESTRICTION narrows candidates to
3853 Return value is an alist whose CAR is position and CDR the object
3856 OBJECTS is the previous candidates alist."
3857 (let (next-candidates types-to-search
)
3858 ;; If no previous result, search every object type in RESTRICTION.
3859 ;; Otherwise, keep potential candidates (old objects located after
3860 ;; point) and ask to search again those which had matched before.
3861 (if (not objects
) (setq types-to-search restriction
)
3863 (if (< (cdr obj
) (point)) (push (car obj
) types-to-search
)
3864 (push obj next-candidates
)))
3866 ;; Call the appropriate successor function for each type to search
3867 ;; and accumulate matches.
3870 (let* ((successor-fun
3872 (format "org-element-%s-successor"
3873 (or (cdr (assq type org-element-object-successor-alist
))
3875 (obj (funcall successor-fun limit
)))
3876 (and obj
(push obj next-candidates
))))
3883 ;;; Towards A Bijective Process
3885 ;; The parse tree obtained with `org-element-parse-buffer' is really
3886 ;; a snapshot of the corresponding Org buffer. Therefore, it can be
3887 ;; interpreted and expanded into a string with canonical Org syntax.
3888 ;; Hence `org-element-interpret-data'.
3890 ;; The function relies internally on
3891 ;; `org-element--interpret-affiliated-keywords'.
3894 (defun org-element-interpret-data (data &optional parent
)
3895 "Interpret DATA as Org syntax.
3897 DATA is a parse tree, an element, an object or a secondary string
3900 Optional argument PARENT is used for recursive calls. It contains
3901 the element or object containing data, or nil.
3903 Return Org syntax as a string."
3904 (let* ((type (org-element-type data
))
3907 ;; Secondary string.
3910 (lambda (obj) (org-element-interpret-data obj parent
))
3912 ;; Full Org document.
3913 ((eq type
'org-data
)
3915 (lambda (obj) (org-element-interpret-data obj parent
))
3916 (org-element-contents data
) ""))
3918 ((stringp data
) data
)
3919 ;; Element/Object without contents.
3920 ((not (org-element-contents data
))
3921 (funcall (intern (format "org-element-%s-interpreter" type
))
3923 ;; Element/Object with contents.
3925 (let* ((greaterp (memq type org-element-greater-elements
))
3926 (objectp (and (not greaterp
)
3927 (memq type org-element-recursive-objects
)))
3930 (lambda (obj) (org-element-interpret-data obj data
))
3931 (org-element-contents
3932 (if (or greaterp objectp
) data
3933 ;; Elements directly containing objects must
3934 ;; have their indentation normalized first.
3935 (org-element-normalize-contents
3937 ;; When normalizing first paragraph of an
3938 ;; item or a footnote-definition, ignore
3939 ;; first line's indentation.
3940 (and (eq type
'paragraph
)
3941 (equal data
(car (org-element-contents parent
)))
3942 (memq (org-element-type parent
)
3943 '(footnote-definiton item
))))))
3945 (funcall (intern (format "org-element-%s-interpreter" type
))
3947 (if greaterp
(org-element-normalize-contents contents
)
3949 (if (memq type
'(org-data plain-text nil
)) results
3950 ;; Build white spaces. If no `:post-blank' property is
3951 ;; specified, assume its value is 0.
3952 (let ((post-blank (or (org-element-property :post-blank data
) 0)))
3953 (if (memq type org-element-all-objects
)
3954 (concat results
(make-string post-blank
32))
3956 (org-element--interpret-affiliated-keywords data
)
3957 (org-element-normalize-string results
)
3958 (make-string post-blank
10)))))))
3960 (defun org-element--interpret-affiliated-keywords (element)
3961 "Return ELEMENT's affiliated keywords as Org syntax.
3962 If there is no affiliated keyword, return the empty string."
3963 (let ((keyword-to-org
3967 (when (member key org-element-dual-keywords
)
3968 (setq dual
(cdr value
) value
(car value
)))
3971 (format "[%s]" (org-element-interpret-data dual
)))
3973 (if (member key org-element-parsed-keywords
)
3974 (org-element-interpret-data value
)
3979 (let ((value (org-element-property prop element
))
3980 (keyword (upcase (substring (symbol-name prop
) 1))))
3982 (if (or (member keyword org-element-multiple-keywords
)
3983 ;; All attribute keywords can have multiple lines.
3984 (string-match "^ATTR_" keyword
))
3985 (mapconcat (lambda (line) (funcall keyword-to-org keyword line
))
3988 (funcall keyword-to-org keyword value
)))))
3989 ;; List all ELEMENT's properties matching an attribute line or an
3990 ;; affiliated keyword, but ignore translated keywords since they
3991 ;; cannot belong to the property list.
3992 (loop for prop in
(nth 1 element
) by
'cddr
3993 when
(let ((keyword (upcase (substring (symbol-name prop
) 1))))
3994 (or (string-match "^ATTR_" keyword
)
3996 (member keyword org-element-affiliated-keywords
)
3998 org-element-keyword-translation-alist
)))))
4002 ;; Because interpretation of the parse tree must return the same
4003 ;; number of blank lines between elements and the same number of white
4004 ;; space after objects, some special care must be given to white
4007 ;; The first function, `org-element-normalize-string', ensures any
4008 ;; string different from the empty string will end with a single
4009 ;; newline character.
4011 ;; The second function, `org-element-normalize-contents', removes
4012 ;; global indentation from the contents of the current element.
4014 (defun org-element-normalize-string (s)
4015 "Ensure string S ends with a single newline character.
4017 If S isn't a string return it unchanged. If S is the empty
4018 string, return it. Otherwise, return a new string with a single
4019 newline character at its end."
4021 ((not (stringp s
)) s
)
4023 (t (and (string-match "\\(\n[ \t]*\\)*\\'" s
)
4024 (replace-match "\n" nil nil s
)))))
4026 (defun org-element-normalize-contents (element &optional ignore-first
)
4027 "Normalize plain text in ELEMENT's contents.
4029 ELEMENT must only contain plain text and objects.
4031 If optional argument IGNORE-FIRST is non-nil, ignore first line's
4032 indentation to compute maximal common indentation.
4034 Return the normalized element that is element with global
4035 indentation removed from its contents. The function assumes that
4036 indentation is not done with TAB characters."
4037 (let* (ind-list ; for byte-compiler
4038 collect-inds
; for byte-compiler
4041 ;; Return list of indentations within BLOB. This is done by
4042 ;; walking recursively BLOB and updating IND-LIST along the
4043 ;; way. FIRST-FLAG is non-nil when the first string hasn't
4044 ;; been seen yet. It is required as this string is the only
4045 ;; one whose indentation doesn't happen after a newline
4047 (lambda (blob first-flag
)
4050 (when (and first-flag
(stringp object
))
4051 (setq first-flag nil
)
4052 (string-match "\\`\\( *\\)" object
)
4053 (let ((len (length (match-string 1 object
))))
4054 ;; An indentation of zero means no string will be
4055 ;; modified. Quit the process.
4056 (if (zerop len
) (throw 'zero
(setq ind-list nil
))
4057 (push len ind-list
))))
4061 ;; Avoid matching blank or empty lines.
4062 (while (and (string-match "\n\\( *\\)\\(.\\)" object start
)
4063 (not (equal (match-string 2 object
) " ")))
4064 (setq start
(match-end 0))
4065 (push (length (match-string 1 object
)) ind-list
))))
4066 ((memq (org-element-type object
) org-element-recursive-objects
)
4067 (funcall collect-inds object first-flag
))))
4068 (org-element-contents blob
))))))
4069 ;; Collect indentation list in ELEMENT. Possibly remove first
4070 ;; value if IGNORE-FIRST is non-nil.
4071 (catch 'zero
(funcall collect-inds element
(not ignore-first
)))
4072 (if (not ind-list
) element
4073 ;; Build ELEMENT back, replacing each string with the same
4074 ;; string minus common indentation.
4075 (let* (build ; For byte compiler.
4078 (lambda (blob mci first-flag
)
4079 ;; Return BLOB with all its strings indentation
4080 ;; shortened from MCI white spaces. FIRST-FLAG is
4081 ;; non-nil when the first string hasn't been seen
4086 (when (and first-flag
(stringp object
))
4087 (setq first-flag nil
)
4089 (replace-regexp-in-string
4090 (format "\\` \\{%d\\}" mci
) "" object
)))
4093 (replace-regexp-in-string
4094 (format "\n \\{%d\\}" mci
) "\n" object
))
4095 ((memq (org-element-type object
)
4096 org-element-recursive-objects
)
4097 (funcall build object mci first-flag
))
4099 (org-element-contents blob
)))
4101 (funcall build element
(apply 'min ind-list
) (not ignore-first
))))))
4107 ;; The first move is to implement a way to obtain the smallest element
4108 ;; containing point. This is the job of `org-element-at-point'. It
4109 ;; basically jumps back to the beginning of section containing point
4110 ;; and moves, element after element, with
4111 ;; `org-element--current-element' until the container is found. Note:
4112 ;; When using `org-element-at-point', secondary values are never
4113 ;; parsed since the function focuses on elements, not on objects.
4115 ;; At a deeper level, `org-element-context' lists all elements and
4116 ;; objects containing point.
4118 ;; `org-element-nested-p' and `org-element-swap-A-B' may be used
4119 ;; internally by navigation and manipulation tools.
4122 (defun org-element-at-point (&optional keep-trail
)
4123 "Determine closest element around point.
4125 Return value is a list like (TYPE PROPS) where TYPE is the type
4126 of the element and PROPS a plist of properties associated to the
4129 Possible types are defined in `org-element-all-elements'.
4130 Properties depend on element or object type, but always
4131 include :begin, :end, :parent and :post-blank properties.
4133 As a special case, if point is at the very beginning of a list or
4134 sub-list, returned element will be that list instead of the first
4135 item. In the same way, if point is at the beginning of the first
4136 row of a table, returned element will be the table instead of the
4139 If optional argument KEEP-TRAIL is non-nil, the function returns
4140 a list of of elements leading to element at point. The list's
4141 CAR is always the element at point. Following positions contain
4142 element's siblings, then parents, siblings of parents, until the
4143 first element of current section."
4144 (org-with-wide-buffer
4145 ;; If at an headline, parse it. It is the sole element that
4146 ;; doesn't require to know about context. Be sure to disallow
4147 ;; secondary string parsing, though.
4148 (if (org-with-limited-levels (org-at-heading-p))
4151 (if (not keep-trail
) (org-element-headline-parser (point-max) t
)
4152 (list (org-element-headline-parser (point-max) t
))))
4153 ;; Otherwise move at the beginning of the section containing
4155 (let ((origin (point))
4156 (end (save-excursion
4157 (org-with-limited-levels (outline-next-heading)) (point)))
4158 element type special-flag trail struct prevs parent
)
4159 (org-with-limited-levels
4160 (if (org-with-limited-levels (org-before-first-heading-p))
4161 (goto-char (point-min))
4162 (org-back-to-heading)
4164 (org-skip-whitespace)
4166 ;; Parse successively each element, skipping those ending
4167 ;; before original position.
4171 (org-element--current-element end
'element special-flag struct
)
4173 (org-element-put-property element
:parent parent
)
4174 (when keep-trail
(push element trail
))
4176 ;; 1. Skip any element ending before point. Also skip
4177 ;; element ending at point when we're sure that another
4178 ;; element has started.
4179 ((let ((elem-end (org-element-property :end element
)))
4180 (when (or (< elem-end origin
)
4181 (and (= elem-end origin
) (/= elem-end end
)))
4182 (goto-char elem-end
))))
4183 ;; 2. An element containing point is always the element at
4185 ((not (memq type org-element-greater-elements
))
4186 (throw 'exit
(if keep-trail trail element
)))
4187 ;; 3. At any other greater element type, if point is
4188 ;; within contents, move into it.
4190 (let ((cbeg (org-element-property :contents-begin element
))
4191 (cend (org-element-property :contents-end element
)))
4192 (if (or (not cbeg
) (not cend
) (> cbeg origin
) (< cend origin
)
4193 ;; Create an anchor for tables and plain lists:
4194 ;; when point is at the very beginning of these
4195 ;; elements, ignoring affiliated keywords,
4196 ;; target them instead of their contents.
4197 (and (= cbeg origin
) (memq type
'(plain-list table
)))
4198 ;; When point is at contents end, do not move
4199 ;; into elements with an explicit ending, but
4200 ;; return that element instead.
4201 (and (= cend origin
)
4204 drawer dynamic-block inlinetask item
4205 plain-list quote-block special-block
))))
4206 (throw 'exit
(if keep-trail trail element
))
4207 (setq parent element
)
4210 (setq special-flag
'item
4211 struct
(org-element-property :structure element
)))
4212 (table (setq special-flag
'table-row
))
4213 (otherwise (setq special-flag nil
)))
4215 (goto-char cbeg
)))))))))))
4218 (defun org-element-context ()
4219 "Return closest element or object around point.
4221 Return value is a list like (TYPE PROPS) where TYPE is the type
4222 of the element or object and PROPS a plist of properties
4225 Possible types are defined in `org-element-all-elements' and
4226 `org-element-all-objects'. Properties depend on element or
4227 object type, but always include :begin, :end, :parent
4228 and :post-blank properties."
4229 (org-with-wide-buffer
4230 (let* ((origin (point))
4231 (element (org-element-at-point))
4232 (type (car element
))
4234 ;; Check if point is inside an element containing objects or at
4235 ;; a secondary string. In that case, move to beginning of the
4236 ;; element or secondary string and set END to the other side.
4237 (if (not (or (and (eq type
'item
)
4238 (let ((tag (org-element-property :tag element
)))
4242 (search-forward tag
(point-at-eol))
4243 (goto-char (match-beginning 0))
4244 (and (>= origin
(point))
4246 ;; `1+' is required so some
4247 ;; successors can match
4248 ;; properly their object.
4249 (setq end
(1+ (match-end 0)))))))))
4250 (and (memq type
'(headline inlinetask
))
4251 (progn (beginning-of-line)
4252 (skip-chars-forward "* ")
4253 (setq end
(point-at-eol))))
4254 (and (memq type
'(paragraph table-cell verse-block
))
4255 (let ((cbeg (org-element-property
4256 :contents-begin element
))
4257 (cend (org-element-property
4258 :contents-end element
)))
4259 (and (>= origin cbeg
)
4261 (progn (goto-char cbeg
) (setq end cend
)))))))
4263 (let ((restriction (org-element-restriction element
))
4267 (while (setq candidates
(org-element--get-next-object-candidates
4268 end restriction candidates
))
4269 (let ((closest-cand (rassq (apply 'min
(mapcar 'cdr candidates
))
4271 ;; If ORIGIN is before next object in element, there's
4272 ;; no point in looking further.
4273 (if (> (cdr closest-cand
) origin
) (throw 'exit element
)
4275 (progn (goto-char (cdr closest-cand
))
4276 (funcall (intern (format "org-element-%s-parser"
4277 (car closest-cand
))))))
4278 (cbeg (org-element-property :contents-begin object
))
4279 (cend (org-element-property :contents-end object
)))
4281 ;; ORIGIN is after OBJECT, so skip it.
4282 ((< (org-element-property :end object
) origin
)
4283 (goto-char (org-element-property :end object
)))
4284 ;; ORIGIN is within a non-recursive object or at an
4285 ;; object boundaries: Return that object.
4286 ((or (not cbeg
) (> cbeg origin
) (< cend origin
))
4288 (org-element-put-property object
:parent parent
)))
4289 ;; Otherwise, move within current object and restrict
4290 ;; search to the end of its contents.
4292 (org-element-put-property object
:parent parent
)
4293 (setq parent object end cend
)))))))
4296 (defsubst org-element-nested-p
(elem-A elem-B
)
4297 "Non-nil when elements ELEM-A and ELEM-B are nested."
4298 (let ((beg-A (org-element-property :begin elem-A
))
4299 (beg-B (org-element-property :begin elem-B
))
4300 (end-A (org-element-property :end elem-A
))
4301 (end-B (org-element-property :end elem-B
)))
4302 (or (and (>= beg-A beg-B
) (<= end-A end-B
))
4303 (and (>= beg-B beg-A
) (<= end-B end-A
)))))
4305 (defun org-element-swap-A-B (elem-A elem-B
)
4306 "Swap elements ELEM-A and ELEM-B.
4307 Assume ELEM-B is after ELEM-A in the buffer. Leave point at the
4309 (goto-char (org-element-property :begin elem-A
))
4310 ;; There are two special cases when an element doesn't start at bol:
4311 ;; the first paragraph in an item or in a footnote definition.
4312 (let ((specialp (not (bolp))))
4313 ;; Only a paragraph without any affiliated keyword can be moved at
4314 ;; ELEM-A position in such a situation. Note that the case of
4315 ;; a footnote definition is impossible: it cannot contain two
4316 ;; paragraphs in a row because it cannot contain a blank line.
4318 (or (not (eq (org-element-type elem-B
) 'paragraph
))
4319 (/= (org-element-property :begin elem-B
)
4320 (org-element-property :contents-begin elem-B
))))
4321 (error "Cannot swap elements"))
4322 ;; In a special situation, ELEM-A will have no indentation. We'll
4323 ;; give it ELEM-B's (which will in, in turn, have no indentation).
4324 (let* ((ind-B (when specialp
4325 (goto-char (org-element-property :begin elem-B
))
4326 (org-get-indentation)))
4327 (beg-A (org-element-property :begin elem-A
))
4328 (end-A (save-excursion
4329 (goto-char (org-element-property :end elem-A
))
4330 (skip-chars-backward " \r\t\n")
4332 (beg-B (org-element-property :begin elem-B
))
4333 (end-B (save-excursion
4334 (goto-char (org-element-property :end elem-B
))
4335 (skip-chars-backward " \r\t\n")
4337 ;; Store overlays responsible for visibility status. We
4338 ;; also need to store their boundaries as they will be
4339 ;; removed from buffer.
4342 (mapcar (lambda (ov) (list ov
(overlay-start ov
) (overlay-end ov
)))
4343 (overlays-in beg-A end-A
))
4344 (mapcar (lambda (ov) (list ov
(overlay-start ov
) (overlay-end ov
)))
4345 (overlays-in beg-B end-B
))))
4347 (body-A (buffer-substring beg-A end-A
))
4348 (body-B (delete-and-extract-region beg-B end-B
)))
4351 (setq body-B
(replace-regexp-in-string "\\`[ \t]*" "" body-B
))
4352 (org-indent-to-column ind-B
))
4354 ;; Restore ex ELEM-A overlays.
4355 (let ((offset (- beg-B beg-A
)))
4358 (car ov
) (+ (nth 1 ov
) offset
) (+ (nth 2 ov
) offset
)))
4361 (delete-region beg-A end-A
)
4363 ;; Restore ex ELEM-B overlays.
4366 (car ov
) (- (nth 1 ov
) offset
) (- (nth 2 ov
) offset
)))
4368 (goto-char (org-element-property :end elem-B
)))))
4371 (provide 'org-element
)
4372 ;;; org-element.el ends here