Fix radio target parsing
[org-mode/org-tableheadings.git] / lisp / org-element.el
blob958971416f467227f3bd2b90f7d2862e56e81170
1 ;;; org-element.el --- Parser And Applications for Org syntax
3 ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Org syntax can be divided into three categories: "Greater
26 ;; elements", "Elements" and "Objects".
28 ;; Elements are related to the structure of the document. Indeed, all
29 ;; elements are a cover for the document: each position within belongs
30 ;; to at least one element.
32 ;; An element always starts and ends at the beginning of a line. With
33 ;; a few exceptions (`clock', `headline', `inlinetask', `item',
34 ;; `planning', `node-property', `quote-section' `section' and
35 ;; `table-row' types), it can also accept a fixed set of keywords as
36 ;; attributes. Those are called "affiliated keywords" to distinguish
37 ;; them from other keywords, which are full-fledged elements. Almost
38 ;; all affiliated keywords are referenced in
39 ;; `org-element-affiliated-keywords'; the others are export attributes
40 ;; and start with "ATTR_" prefix.
42 ;; Element containing other elements (and only elements) are called
43 ;; greater elements. Concerned types are: `center-block', `drawer',
44 ;; `dynamic-block', `footnote-definition', `headline', `inlinetask',
45 ;; `item', `plain-list', `property-drawer', `quote-block', `section'
46 ;; and `special-block'.
48 ;; Other element types are: `babel-call', `clock', `comment',
49 ;; `comment-block', `diary-sexp', `example-block', `export-block',
50 ;; `fixed-width', `horizontal-rule', `keyword', `latex-environment',
51 ;; `node-property', `paragraph', `planning', `quote-section',
52 ;; `src-block', `table', `table-row' and `verse-block'. Among them,
53 ;; `paragraph' and `verse-block' types can contain Org objects and
54 ;; plain text.
56 ;; Objects are related to document's contents. Some of them are
57 ;; recursive. Associated types are of the following: `bold', `code',
58 ;; `entity', `export-snippet', `footnote-reference',
59 ;; `inline-babel-call', `inline-src-block', `italic',
60 ;; `latex-fragment', `line-break', `link', `macro', `radio-target',
61 ;; `statistics-cookie', `strike-through', `subscript', `superscript',
62 ;; `table-cell', `target', `timestamp', `underline' and `verbatim'.
64 ;; Some elements also have special properties whose value can hold
65 ;; objects themselves (e.g. an item tag or a headline name). Such
66 ;; values are called "secondary strings". Any object belongs to
67 ;; either an element or a secondary string.
69 ;; Notwithstanding affiliated keywords, each greater element, element
70 ;; and object has a fixed set of properties attached to it. Among
71 ;; them, four are shared by all types: `:begin' and `:end', which
72 ;; refer to the beginning and ending buffer positions of the
73 ;; considered element or object, `:post-blank', which holds the number
74 ;; of blank lines, or white spaces, at its end and `:parent' which
75 ;; refers to the element or object containing it. Greater elements,
76 ;; elements and objects containing objects will also have
77 ;; `:contents-begin' and `:contents-end' properties to delimit
78 ;; contents. Eventually, greater elements and elements accepting
79 ;; affiliated keywords will have a `:post-affiliated' property,
80 ;; referring to the buffer position after all such keywords.
82 ;; At the lowest level, a `:parent' property is also attached to any
83 ;; string, as a text property.
85 ;; Lisp-wise, an element or an object can be represented as a list.
86 ;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
87 ;; TYPE is a symbol describing the Org element or object.
88 ;; PROPERTIES is the property list attached to it. See docstring of
89 ;; appropriate parsing function to get an exhaustive
90 ;; list.
91 ;; CONTENTS is a list of elements, objects or raw strings contained
92 ;; in the current element or object, when applicable.
94 ;; An Org buffer is a nested list of such elements and objects, whose
95 ;; type is `org-data' and properties is nil.
97 ;; The first part of this file defines Org syntax, while the second
98 ;; one provide accessors and setters functions.
100 ;; The next part implements a parser and an interpreter for each
101 ;; element and object type in Org syntax.
103 ;; The following part creates a fully recursive buffer parser. It
104 ;; also provides a tool to map a function to elements or objects
105 ;; matching some criteria in the parse tree. Functions of interest
106 ;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
107 ;; extent, `org-element-parse-secondary-string'.
109 ;; The penultimate part is the cradle of an interpreter for the
110 ;; obtained parse tree: `org-element-interpret-data'.
112 ;; The library ends by furnishing `org-element-at-point' function, and
113 ;; a way to give information about document structure around point
114 ;; with `org-element-context'.
117 ;;; Code:
119 (eval-when-compile (require 'cl))
120 (require 'org)
124 ;;; Definitions And Rules
126 ;; Define elements, greater elements and specify recursive objects,
127 ;; along with the affiliated keywords recognized. Also set up
128 ;; restrictions on recursive objects combinations.
130 ;; These variables really act as a control center for the parsing
131 ;; process.
133 (defconst org-element-paragraph-separate
134 (concat "^\\(?:"
135 ;; Headlines, inlinetasks.
136 org-outline-regexp "\\|"
137 ;; Footnote definitions.
138 "\\[\\(?:[0-9]+\\|fn:[-_[:word:]]+\\)\\]" "\\|"
139 ;; Diary sexps.
140 "%%(" "\\|"
141 "[ \t]*\\(?:"
142 ;; Empty lines.
143 "$" "\\|"
144 ;; Tables (any type).
145 "\\(?:|\\|\\+-[-+]\\)" "\\|"
146 ;; Blocks (any type), Babel calls and keywords. Note: this
147 ;; is only an indication and need some thorough check.
148 "#\\(?:[+ ]\\|$\\)" "\\|"
149 ;; Drawers (any type) and fixed-width areas. This is also
150 ;; only an indication.
151 ":" "\\|"
152 ;; Horizontal rules.
153 "-\\{5,\\}[ \t]*$" "\\|"
154 ;; LaTeX environments.
155 "\\\\begin{\\([A-Za-z0-9]+\\*?\\)}" "\\|"
156 ;; Planning and Clock lines.
157 (regexp-opt (list org-scheduled-string
158 org-deadline-string
159 org-closed-string
160 org-clock-string))
161 "\\|"
162 ;; Lists.
163 (let ((term (case org-plain-list-ordered-item-terminator
164 (?\) ")") (?. "\\.") (otherwise "[.)]")))
165 (alpha (and org-list-allow-alphabetical "\\|[A-Za-z]")))
166 (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)"
167 "\\(?:[ \t]\\|$\\)"))
168 "\\)\\)")
169 "Regexp to separate paragraphs in an Org buffer.
170 In the case of lines starting with \"#\" and \":\", this regexp
171 is not sufficient to know if point is at a paragraph ending. See
172 `org-element-paragraph-parser' for more information.")
174 (defconst org-element-all-elements
175 '(babel-call center-block clock comment comment-block diary-sexp drawer
176 dynamic-block example-block export-block fixed-width
177 footnote-definition headline horizontal-rule inlinetask item
178 keyword latex-environment node-property paragraph plain-list
179 planning property-drawer quote-block quote-section section
180 special-block src-block table table-row verse-block)
181 "Complete list of element types.")
183 (defconst org-element-greater-elements
184 '(center-block drawer dynamic-block footnote-definition headline inlinetask
185 item plain-list property-drawer quote-block section
186 special-block table)
187 "List of recursive element types aka Greater Elements.")
189 (defconst org-element-all-successors
190 '(link export-snippet footnote-reference inline-babel-call
191 inline-src-block latex-or-entity line-break macro plain-link
192 radio-target statistics-cookie sub/superscript table-cell target
193 text-markup timestamp)
194 "Complete list of successors.")
196 (defconst org-element-object-successor-alist
197 '((subscript . sub/superscript) (superscript . sub/superscript)
198 (bold . text-markup) (code . text-markup) (italic . text-markup)
199 (strike-through . text-markup) (underline . text-markup)
200 (verbatim . text-markup) (entity . latex-or-entity)
201 (latex-fragment . latex-or-entity))
202 "Alist of translations between object type and successor name.
203 Sharing the same successor comes handy when, for example, the
204 regexp matching one object can also match the other object.")
206 (defconst org-element-all-objects
207 '(bold code entity export-snippet footnote-reference inline-babel-call
208 inline-src-block italic line-break latex-fragment link macro
209 radio-target statistics-cookie strike-through subscript superscript
210 table-cell target timestamp underline verbatim)
211 "Complete list of object types.")
213 (defconst org-element-recursive-objects
214 '(bold italic link subscript radio-target strike-through superscript
215 table-cell underline)
216 "List of recursive object types.")
218 (defvar org-element-block-name-alist
219 '(("CENTER" . org-element-center-block-parser)
220 ("COMMENT" . org-element-comment-block-parser)
221 ("EXAMPLE" . org-element-example-block-parser)
222 ("QUOTE" . org-element-quote-block-parser)
223 ("SRC" . org-element-src-block-parser)
224 ("VERSE" . org-element-verse-block-parser))
225 "Alist between block names and the associated parsing function.
226 Names must be uppercase. Any block whose name has no association
227 is parsed with `org-element-special-block-parser'.")
229 (defconst org-element-link-type-is-file
230 '("file" "file+emacs" "file+sys" "docview")
231 "List of link types equivalent to \"file\".
232 Only these types can accept search options and an explicit
233 application to open them.")
235 (defconst org-element-affiliated-keywords
236 '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
237 "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
238 "List of affiliated keywords as strings.
239 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
240 are affiliated keywords and need not to be in this list.")
242 (defconst org-element-keyword-translation-alist
243 '(("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME")
244 ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
245 ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))
246 "Alist of usual translations for keywords.
247 The key is the old name and the value the new one. The property
248 holding their value will be named after the translated name.")
250 (defconst org-element-multiple-keywords '("CAPTION" "HEADER")
251 "List of affiliated keywords that can occur more than once in an element.
253 Their value will be consed into a list of strings, which will be
254 returned as the value of the property.
256 This list is checked after translations have been applied. See
257 `org-element-keyword-translation-alist'.
259 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
260 allow multiple occurrences and need not to be in this list.")
262 (defconst org-element-parsed-keywords '("CAPTION")
263 "List of affiliated keywords whose value can be parsed.
265 Their value will be stored as a secondary string: a list of
266 strings and objects.
268 This list is checked after translations have been applied. See
269 `org-element-keyword-translation-alist'.")
271 (defconst org-element-dual-keywords '("CAPTION" "RESULTS")
272 "List of affiliated keywords which can have a secondary value.
274 In Org syntax, they can be written with optional square brackets
275 before the colons. For example, RESULTS keyword can be
276 associated to a hash value with the following:
278 #+RESULTS[hash-string]: some-source
280 This list is checked after translations have been applied. See
281 `org-element-keyword-translation-alist'.")
283 (defconst org-element-document-properties '("AUTHOR" "DATE" "TITLE")
284 "List of properties associated to the whole document.
285 Any keyword in this list will have its value parsed and stored as
286 a secondary string.")
288 (defconst org-element--affiliated-re
289 (format "[ \t]*#\\+\\(?:%s\\):\\(?: \\|$\\)"
290 (concat
291 ;; Dual affiliated keywords.
292 (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?"
293 (regexp-opt org-element-dual-keywords))
294 "\\|"
295 ;; Regular affiliated keywords.
296 (format "\\(?1:%s\\)"
297 (regexp-opt
298 (org-remove-if
299 #'(lambda (keyword)
300 (member keyword org-element-dual-keywords))
301 org-element-affiliated-keywords)))
302 "\\|"
303 ;; Export attributes.
304 "\\(?1:ATTR_[-_A-Za-z0-9]+\\)"))
305 "Regexp matching any affiliated keyword.
307 Keyword name is put in match group 1. Moreover, if keyword
308 belongs to `org-element-dual-keywords', put the dual value in
309 match group 2.
311 Don't modify it, set `org-element-affiliated-keywords' instead.")
313 (defconst org-element-object-restrictions
314 (let* ((standard-set
315 (remq 'plain-link (remq 'table-cell org-element-all-successors)))
316 (standard-set-no-line-break (remq 'line-break standard-set)))
317 `((bold ,@standard-set)
318 (footnote-reference ,@standard-set)
319 (headline ,@standard-set-no-line-break)
320 (inlinetask ,@standard-set-no-line-break)
321 (italic ,@standard-set)
322 (item ,@standard-set-no-line-break)
323 (keyword ,@standard-set)
324 ;; Ignore all links excepted plain links in a link description.
325 ;; Also ignore radio-targets and line breaks.
326 (link export-snippet inline-babel-call inline-src-block latex-or-entity
327 macro plain-link statistics-cookie sub/superscript text-markup)
328 (paragraph ,@standard-set)
329 ;; Remove any variable object from radio target as it would
330 ;; prevent it from being properly recognized.
331 (radio-target latex-or-entity sub/superscript text-markup)
332 (strike-through ,@standard-set)
333 (subscript ,@standard-set)
334 (superscript ,@standard-set)
335 ;; Ignore inline babel call and inline src block as formulas are
336 ;; possible. Also ignore line breaks and statistics cookies.
337 (table-cell link export-snippet footnote-reference latex-or-entity macro
338 radio-target sub/superscript target text-markup timestamp)
339 (table-row table-cell)
340 (underline ,@standard-set)
341 (verse-block ,@standard-set)))
342 "Alist of objects restrictions.
344 CAR is an element or object type containing objects and CDR is
345 a list of successors that will be called within an element or
346 object of such type.
348 For example, in a `radio-target' object, one can only find
349 entities, latex-fragments, subscript, superscript and text
350 markup.
352 This alist also applies to secondary string. For example, an
353 `headline' type element doesn't directly contain objects, but
354 still has an entry since one of its properties (`:title') does.")
356 (defconst org-element-secondary-value-alist
357 '((headline . :title)
358 (inlinetask . :title)
359 (item . :tag)
360 (footnote-reference . :inline-definition))
361 "Alist between element types and location of secondary value.")
363 (defconst org-element-object-variables '(org-link-abbrev-alist-local)
364 "List of buffer-local variables used when parsing objects.
365 These variables are copied to the temporary buffer created by
366 `org-export-secondary-string'.")
370 ;;; Accessors and Setters
372 ;; Provide four accessors: `org-element-type', `org-element-property'
373 ;; `org-element-contents' and `org-element-restriction'.
375 ;; Setter functions allow to modify elements by side effect. There is
376 ;; `org-element-put-property', `org-element-set-contents',
377 ;; `org-element-set-element' and `org-element-adopt-element'. Note
378 ;; that `org-element-set-element' and `org-element-adopt-elements' are
379 ;; higher level functions since also update `:parent' property.
381 (defsubst org-element-type (element)
382 "Return type of ELEMENT.
384 The function returns the type of the element or object provided.
385 It can also return the following special value:
386 `plain-text' for a string
387 `org-data' for a complete document
388 nil in any other case."
389 (cond
390 ((not (consp element)) (and (stringp element) 'plain-text))
391 ((symbolp (car element)) (car element))))
393 (defsubst org-element-property (property element)
394 "Extract the value from the PROPERTY of an ELEMENT."
395 (if (stringp element) (get-text-property 0 property element)
396 (plist-get (nth 1 element) property)))
398 (defsubst org-element-contents (element)
399 "Extract contents from an ELEMENT."
400 (cond ((not (consp element)) nil)
401 ((symbolp (car element)) (nthcdr 2 element))
402 (t element)))
404 (defsubst org-element-restriction (element)
405 "Return restriction associated to ELEMENT.
406 ELEMENT can be an element, an object or a symbol representing an
407 element or object type."
408 (cdr (assq (if (symbolp element) element (org-element-type element))
409 org-element-object-restrictions)))
411 (defsubst org-element-put-property (element property value)
412 "In ELEMENT set PROPERTY to VALUE.
413 Return modified element."
414 (if (stringp element) (org-add-props element nil property value)
415 (setcar (cdr element) (plist-put (nth 1 element) property value))
416 element))
418 (defsubst org-element-set-contents (element &rest contents)
419 "Set ELEMENT contents to CONTENTS.
420 Return modified element."
421 (cond ((not element) (list contents))
422 ((not (symbolp (car element))) contents)
423 ((cdr element) (setcdr (cdr element) contents))
424 (t (nconc element contents))))
426 (defsubst org-element-set-element (old new)
427 "Replace element or object OLD with element or object NEW.
428 The function takes care of setting `:parent' property for NEW."
429 ;; Since OLD is going to be changed into NEW by side-effect, first
430 ;; make sure that every element or object within NEW has OLD as
431 ;; parent.
432 (mapc (lambda (blob) (org-element-put-property blob :parent old))
433 (org-element-contents new))
434 ;; Transfer contents.
435 (apply 'org-element-set-contents old (org-element-contents new))
436 ;; Ensure NEW has same parent as OLD, then overwrite OLD properties
437 ;; with NEW's.
438 (org-element-put-property new :parent (org-element-property :parent old))
439 (setcar (cdr old) (nth 1 new))
440 ;; Transfer type.
441 (setcar old (car new)))
443 (defsubst org-element-adopt-elements (parent &rest children)
444 "Append elements to the contents of another element.
446 PARENT is an element or object. CHILDREN can be elements,
447 objects, or a strings.
449 The function takes care of setting `:parent' property for CHILD.
450 Return parent element."
451 ;; Link every child to PARENT. If PARENT is nil, it is a secondary
452 ;; string: parent is the list itself.
453 (mapc (lambda (child)
454 (org-element-put-property child :parent (or parent children)))
455 children)
456 ;; Add CHILDREN at the end of PARENT contents.
457 (when parent
458 (apply 'org-element-set-contents
459 parent
460 (nconc (org-element-contents parent) children)))
461 ;; Return modified PARENT element.
462 (or parent children))
466 ;;; Greater elements
468 ;; For each greater element type, we define a parser and an
469 ;; interpreter.
471 ;; A parser returns the element or object as the list described above.
472 ;; Most of them accepts no argument. Though, exceptions exist. Hence
473 ;; every element containing a secondary string (see
474 ;; `org-element-secondary-value-alist') will accept an optional
475 ;; argument to toggle parsing of that secondary string. Moreover,
476 ;; `item' parser requires current list's structure as its first
477 ;; element.
479 ;; An interpreter accepts two arguments: the list representation of
480 ;; the element or object, and its contents. The latter may be nil,
481 ;; depending on the element or object considered. It returns the
482 ;; appropriate Org syntax, as a string.
484 ;; Parsing functions must follow the naming convention:
485 ;; org-element-TYPE-parser, where TYPE is greater element's type, as
486 ;; defined in `org-element-greater-elements'.
488 ;; Similarly, interpreting functions must follow the naming
489 ;; convention: org-element-TYPE-interpreter.
491 ;; With the exception of `headline' and `item' types, greater elements
492 ;; cannot contain other greater elements of their own type.
494 ;; Beside implementing a parser and an interpreter, adding a new
495 ;; greater element requires to tweak `org-element--current-element'.
496 ;; Moreover, the newly defined type must be added to both
497 ;; `org-element-all-elements' and `org-element-greater-elements'.
500 ;;;; Center Block
502 (defun org-element-center-block-parser (limit affiliated)
503 "Parse a center block.
505 LIMIT bounds the search. AFFILIATED is a list of which CAR is
506 the buffer position at the beginning of the first affiliated
507 keyword and CDR is a plist of affiliated keywords along with
508 their value.
510 Return a list whose CAR is `center-block' and CDR is a plist
511 containing `:begin', `:end', `:hiddenp', `:contents-begin',
512 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
514 Assume point is at the beginning of the block."
515 (let ((case-fold-search t))
516 (if (not (save-excursion
517 (re-search-forward "^[ \t]*#\\+END_CENTER[ \t]*$" limit t)))
518 ;; Incomplete block: parse it as a paragraph.
519 (org-element-paragraph-parser limit affiliated)
520 (let ((block-end-line (match-beginning 0)))
521 (let* ((begin (car affiliated))
522 (post-affiliated (point))
523 ;; Empty blocks have no contents.
524 (contents-begin (progn (forward-line)
525 (and (< (point) block-end-line)
526 (point))))
527 (contents-end (and contents-begin block-end-line))
528 (hidden (org-invisible-p2))
529 (pos-before-blank (progn (goto-char block-end-line)
530 (forward-line)
531 (point)))
532 (end (save-excursion
533 (skip-chars-forward " \r\t\n" limit)
534 (if (eobp) (point) (line-beginning-position)))))
535 (list 'center-block
536 (nconc
537 (list :begin begin
538 :end end
539 :hiddenp hidden
540 :contents-begin contents-begin
541 :contents-end contents-end
542 :post-blank (count-lines pos-before-blank end)
543 :post-affiliated post-affiliated)
544 (cdr affiliated))))))))
546 (defun org-element-center-block-interpreter (center-block contents)
547 "Interpret CENTER-BLOCK element as Org syntax.
548 CONTENTS is the contents of the element."
549 (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents))
552 ;;;; Drawer
554 (defun org-element-drawer-parser (limit affiliated)
555 "Parse a drawer.
557 LIMIT bounds the search. AFFILIATED is a list of which CAR is
558 the buffer position at the beginning of the first affiliated
559 keyword and CDR is a plist of affiliated keywords along with
560 their value.
562 Return a list whose CAR is `drawer' and CDR is a plist containing
563 `:drawer-name', `:begin', `:end', `:hiddenp', `:contents-begin',
564 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
566 Assume point is at beginning of drawer."
567 (let ((case-fold-search t))
568 (if (not (save-excursion (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
569 ;; Incomplete drawer: parse it as a paragraph.
570 (org-element-paragraph-parser limit affiliated)
571 (save-excursion
572 (let* ((drawer-end-line (match-beginning 0))
573 (name (progn (looking-at org-drawer-regexp)
574 (org-match-string-no-properties 1)))
575 (begin (car affiliated))
576 (post-affiliated (point))
577 ;; Empty drawers have no contents.
578 (contents-begin (progn (forward-line)
579 (and (< (point) drawer-end-line)
580 (point))))
581 (contents-end (and contents-begin drawer-end-line))
582 (hidden (org-invisible-p2))
583 (pos-before-blank (progn (goto-char drawer-end-line)
584 (forward-line)
585 (point)))
586 (end (progn (skip-chars-forward " \r\t\n" limit)
587 (if (eobp) (point) (line-beginning-position)))))
588 (list 'drawer
589 (nconc
590 (list :begin begin
591 :end end
592 :drawer-name name
593 :hiddenp hidden
594 :contents-begin contents-begin
595 :contents-end contents-end
596 :post-blank (count-lines pos-before-blank end)
597 :post-affiliated post-affiliated)
598 (cdr affiliated))))))))
600 (defun org-element-drawer-interpreter (drawer contents)
601 "Interpret DRAWER element as Org syntax.
602 CONTENTS is the contents of the element."
603 (format ":%s:\n%s:END:"
604 (org-element-property :drawer-name drawer)
605 contents))
608 ;;;; Dynamic Block
610 (defun org-element-dynamic-block-parser (limit affiliated)
611 "Parse a dynamic block.
613 LIMIT bounds the search. AFFILIATED is a list of which CAR is
614 the buffer position at the beginning of the first affiliated
615 keyword and CDR is a plist of affiliated keywords along with
616 their value.
618 Return a list whose CAR is `dynamic-block' and CDR is a plist
619 containing `:block-name', `:begin', `:end', `:hiddenp',
620 `:contents-begin', `:contents-end', `:arguments', `:post-blank'
621 and `:post-affiliated' keywords.
623 Assume point is at beginning of dynamic block."
624 (let ((case-fold-search t))
625 (if (not (save-excursion
626 (re-search-forward "^[ \t]*#\\+END:?[ \t]*$" limit t)))
627 ;; Incomplete block: parse it as a paragraph.
628 (org-element-paragraph-parser limit affiliated)
629 (let ((block-end-line (match-beginning 0)))
630 (save-excursion
631 (let* ((name (progn (looking-at org-dblock-start-re)
632 (org-match-string-no-properties 1)))
633 (arguments (org-match-string-no-properties 3))
634 (begin (car affiliated))
635 (post-affiliated (point))
636 ;; Empty blocks have no contents.
637 (contents-begin (progn (forward-line)
638 (and (< (point) block-end-line)
639 (point))))
640 (contents-end (and contents-begin block-end-line))
641 (hidden (org-invisible-p2))
642 (pos-before-blank (progn (goto-char block-end-line)
643 (forward-line)
644 (point)))
645 (end (progn (skip-chars-forward " \r\t\n" limit)
646 (if (eobp) (point) (line-beginning-position)))))
647 (list 'dynamic-block
648 (nconc
649 (list :begin begin
650 :end end
651 :block-name name
652 :arguments arguments
653 :hiddenp hidden
654 :contents-begin contents-begin
655 :contents-end contents-end
656 :post-blank (count-lines pos-before-blank end)
657 :post-affiliated post-affiliated)
658 (cdr affiliated)))))))))
660 (defun org-element-dynamic-block-interpreter (dynamic-block contents)
661 "Interpret DYNAMIC-BLOCK element as Org syntax.
662 CONTENTS is the contents of the element."
663 (format "#+BEGIN: %s%s\n%s#+END:"
664 (org-element-property :block-name dynamic-block)
665 (let ((args (org-element-property :arguments dynamic-block)))
666 (and args (concat " " args)))
667 contents))
670 ;;;; Footnote Definition
672 (defun org-element-footnote-definition-parser (limit affiliated)
673 "Parse a footnote definition.
675 LIMIT bounds the search. AFFILIATED is a list of which CAR is
676 the buffer position at the beginning of the first affiliated
677 keyword and CDR is a plist of affiliated keywords along with
678 their value.
680 Return a list whose CAR is `footnote-definition' and CDR is
681 a plist containing `:label', `:begin' `:end', `:contents-begin',
682 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
684 Assume point is at the beginning of the footnote definition."
685 (save-excursion
686 (let* ((label (progn (looking-at org-footnote-definition-re)
687 (org-match-string-no-properties 1)))
688 (begin (car affiliated))
689 (post-affiliated (point))
690 (ending (save-excursion
691 (if (progn
692 (end-of-line)
693 (re-search-forward
694 (concat org-outline-regexp-bol "\\|"
695 org-footnote-definition-re "\\|"
696 "^\\([ \t]*\n\\)\\{2,\\}") limit 'move))
697 (match-beginning 0)
698 (point))))
699 (contents-begin (progn
700 (search-forward "]")
701 (skip-chars-forward " \r\t\n" ending)
702 (cond ((= (point) ending) nil)
703 ((= (line-beginning-position) begin) (point))
704 (t (line-beginning-position)))))
705 (contents-end (and contents-begin ending))
706 (end (progn (goto-char ending)
707 (skip-chars-forward " \r\t\n" limit)
708 (if (eobp) (point) (line-beginning-position)))))
709 (list 'footnote-definition
710 (nconc
711 (list :label label
712 :begin begin
713 :end end
714 :contents-begin contents-begin
715 :contents-end contents-end
716 :post-blank (count-lines ending end)
717 :post-affiliated post-affiliated)
718 (cdr affiliated))))))
720 (defun org-element-footnote-definition-interpreter (footnote-definition contents)
721 "Interpret FOOTNOTE-DEFINITION element as Org syntax.
722 CONTENTS is the contents of the footnote-definition."
723 (concat (format "[%s]" (org-element-property :label footnote-definition))
725 contents))
728 ;;;; Headline
730 (defun org-element-headline-parser (limit &optional raw-secondary-p)
731 "Parse a headline.
733 Return a list whose CAR is `headline' and CDR is a plist
734 containing `:raw-value', `:title', `:alt-title', `:begin',
735 `:end', `:pre-blank', `:hiddenp', `:contents-begin' and
736 `:contents-end', `:level', `:priority', `:tags',
737 `:todo-keyword',`:todo-type', `:scheduled', `:deadline',
738 `:closed', `:quotedp', `:archivedp', `:commentedp' and
739 `:footnote-section-p' keywords.
741 The plist also contains any property set in the property drawer,
742 with its name in upper cases and colons added at the
743 beginning (e.g., `:CUSTOM_ID').
745 When RAW-SECONDARY-P is non-nil, headline's title will not be
746 parsed as a secondary string, but as a plain string instead.
748 Assume point is at beginning of the headline."
749 (save-excursion
750 (let* ((components (org-heading-components))
751 (level (nth 1 components))
752 (todo (nth 2 components))
753 (todo-type
754 (and todo (if (member todo org-done-keywords) 'done 'todo)))
755 (tags (let ((raw-tags (nth 5 components)))
756 (and raw-tags (org-split-string raw-tags ":"))))
757 (raw-value (or (nth 4 components) ""))
758 (quotedp
759 (let ((case-fold-search nil))
760 (string-match (format "^%s\\( \\|$\\)" org-quote-string)
761 raw-value)))
762 (commentedp
763 (let ((case-fold-search nil))
764 (string-match (format "^%s\\( \\|$\\)" org-comment-string)
765 raw-value)))
766 (archivedp (member org-archive-tag tags))
767 (footnote-section-p (and org-footnote-section
768 (string= org-footnote-section raw-value)))
769 ;; Upcase property names. It avoids confusion between
770 ;; properties obtained through property drawer and default
771 ;; properties from the parser (e.g. `:end' and :END:)
772 (standard-props
773 (let (plist)
774 (mapc
775 (lambda (p)
776 (setq plist
777 (plist-put plist
778 (intern (concat ":" (upcase (car p))))
779 (cdr p))))
780 (org-entry-properties nil 'standard))
781 plist))
782 (time-props
783 ;; Read time properties on the line below the headline.
784 (save-excursion
785 (when (progn (forward-line)
786 (looking-at org-planning-or-clock-line-re))
787 (let ((end (line-end-position)) plist)
788 (while (re-search-forward
789 org-keyword-time-not-clock-regexp end t)
790 (goto-char (match-end 1))
791 (skip-chars-forward " \t")
792 (let ((keyword (match-string 1))
793 (time (org-element-timestamp-parser)))
794 (cond ((equal keyword org-scheduled-string)
795 (setq plist (plist-put plist :scheduled time)))
796 ((equal keyword org-deadline-string)
797 (setq plist (plist-put plist :deadline time)))
798 (t (setq plist (plist-put plist :closed time))))))
799 plist))))
800 (begin (point))
801 (end (save-excursion (goto-char (org-end-of-subtree t t))))
802 (pos-after-head (progn (forward-line) (point)))
803 (contents-begin (save-excursion
804 (skip-chars-forward " \r\t\n" end)
805 (and (/= (point) end) (line-beginning-position))))
806 (hidden (org-invisible-p2))
807 (contents-end (and contents-begin
808 (progn (goto-char end)
809 (skip-chars-backward " \r\t\n")
810 (forward-line)
811 (point)))))
812 ;; Clean RAW-VALUE from any quote or comment string.
813 (when (or quotedp commentedp)
814 (let ((case-fold-search nil))
815 (setq raw-value
816 (replace-regexp-in-string
817 (concat
818 (regexp-opt (list org-quote-string org-comment-string))
819 "\\(?: \\|$\\)")
821 raw-value))))
822 ;; Clean TAGS from archive tag, if any.
823 (when archivedp (setq tags (delete org-archive-tag tags)))
824 (let ((headline
825 (list 'headline
826 (nconc
827 (list :raw-value raw-value
828 :begin begin
829 :end end
830 :pre-blank
831 (if (not contents-begin) 0
832 (count-lines pos-after-head contents-begin))
833 :hiddenp hidden
834 :contents-begin contents-begin
835 :contents-end contents-end
836 :level level
837 :priority (nth 3 components)
838 :tags tags
839 :todo-keyword todo
840 :todo-type todo-type
841 :post-blank (count-lines
842 (if (not contents-end) pos-after-head
843 (goto-char contents-end)
844 (forward-line)
845 (point))
846 end)
847 :footnote-section-p footnote-section-p
848 :archivedp archivedp
849 :commentedp commentedp
850 :quotedp quotedp)
851 time-props
852 standard-props))))
853 (let ((alt-title (org-element-property :ALT_TITLE headline)))
854 (when alt-title
855 (org-element-put-property
856 headline :alt-title
857 (if raw-secondary-p alt-title
858 (org-element-parse-secondary-string
859 alt-title (org-element-restriction 'headline) headline)))))
860 (org-element-put-property
861 headline :title
862 (if raw-secondary-p raw-value
863 (org-element-parse-secondary-string
864 raw-value (org-element-restriction 'headline) headline)))))))
866 (defun org-element-headline-interpreter (headline contents)
867 "Interpret HEADLINE element as Org syntax.
868 CONTENTS is the contents of the element."
869 (let* ((level (org-element-property :level headline))
870 (todo (org-element-property :todo-keyword headline))
871 (priority (org-element-property :priority headline))
872 (title (org-element-interpret-data
873 (org-element-property :title headline)))
874 (tags (let ((tag-list (if (org-element-property :archivedp headline)
875 (cons org-archive-tag
876 (org-element-property :tags headline))
877 (org-element-property :tags headline))))
878 (and tag-list
879 (format ":%s:" (mapconcat 'identity tag-list ":")))))
880 (commentedp (org-element-property :commentedp headline))
881 (quotedp (org-element-property :quotedp headline))
882 (pre-blank (or (org-element-property :pre-blank headline) 0))
883 (heading (concat (make-string (org-reduced-level level) ?*)
884 (and todo (concat " " todo))
885 (and quotedp (concat " " org-quote-string))
886 (and commentedp (concat " " org-comment-string))
887 (and priority
888 (format " [#%s]" (char-to-string priority)))
889 (cond ((and org-footnote-section
890 (org-element-property
891 :footnote-section-p headline))
892 (concat " " org-footnote-section))
893 (title (concat " " title))))))
894 (concat heading
895 ;; Align tags.
896 (when tags
897 (cond
898 ((zerop org-tags-column) (format " %s" tags))
899 ((< org-tags-column 0)
900 (concat
901 (make-string
902 (max (- (+ org-tags-column (length heading) (length tags))) 1)
904 tags))
906 (concat
907 (make-string (max (- org-tags-column (length heading)) 1) ? )
908 tags))))
909 (make-string (1+ pre-blank) 10)
910 contents)))
913 ;;;; Inlinetask
915 (defun org-element-inlinetask-parser (limit &optional raw-secondary-p)
916 "Parse an inline task.
918 Return a list whose CAR is `inlinetask' and CDR is a plist
919 containing `:title', `:begin', `:end', `:hiddenp',
920 `:contents-begin' and `:contents-end', `:level', `:priority',
921 `:raw-value', `:tags', `:todo-keyword', `:todo-type',
922 `:scheduled', `:deadline', `:closed' and `:post-blank' keywords.
924 The plist also contains any property set in the property drawer,
925 with its name in upper cases and colons added at the
926 beginning (e.g., `:CUSTOM_ID').
928 When optional argument RAW-SECONDARY-P is non-nil, inline-task's
929 title will not be parsed as a secondary string, but as a plain
930 string instead.
932 Assume point is at beginning of the inline task."
933 (save-excursion
934 (let* ((begin (point))
935 (components (org-heading-components))
936 (todo (nth 2 components))
937 (todo-type (and todo
938 (if (member todo org-done-keywords) 'done 'todo)))
939 (tags (let ((raw-tags (nth 5 components)))
940 (and raw-tags (org-split-string raw-tags ":"))))
941 (raw-value (or (nth 4 components) ""))
942 ;; Upcase property names. It avoids confusion between
943 ;; properties obtained through property drawer and default
944 ;; properties from the parser (e.g. `:end' and :END:)
945 (standard-props
946 (let (plist)
947 (mapc
948 (lambda (p)
949 (setq plist
950 (plist-put plist
951 (intern (concat ":" (upcase (car p))))
952 (cdr p))))
953 (org-entry-properties nil 'standard))
954 plist))
955 (time-props
956 ;; Read time properties on the line below the inlinetask
957 ;; opening string.
958 (save-excursion
959 (when (progn (forward-line)
960 (looking-at org-planning-or-clock-line-re))
961 (let ((end (line-end-position)) plist)
962 (while (re-search-forward
963 org-keyword-time-not-clock-regexp end t)
964 (goto-char (match-end 1))
965 (skip-chars-forward " \t")
966 (let ((keyword (match-string 1))
967 (time (org-element-timestamp-parser)))
968 (cond ((equal keyword org-scheduled-string)
969 (setq plist (plist-put plist :scheduled time)))
970 ((equal keyword org-deadline-string)
971 (setq plist (plist-put plist :deadline time)))
972 (t (setq plist (plist-put plist :closed time))))))
973 plist))))
974 (task-end (save-excursion
975 (end-of-line)
976 (and (re-search-forward org-outline-regexp-bol limit t)
977 (org-looking-at-p "END[ \t]*$")
978 (line-beginning-position))))
979 (contents-begin (progn (forward-line)
980 (and task-end (< (point) task-end) (point))))
981 (hidden (and contents-begin (org-invisible-p2)))
982 (contents-end (and contents-begin task-end))
983 (before-blank (if (not task-end) (point)
984 (goto-char task-end)
985 (forward-line)
986 (point)))
987 (end (progn (skip-chars-forward " \r\t\n" limit)
988 (if (eobp) (point) (line-beginning-position))))
989 (inlinetask
990 (list 'inlinetask
991 (nconc
992 (list :raw-value raw-value
993 :begin begin
994 :end end
995 :hiddenp hidden
996 :contents-begin contents-begin
997 :contents-end contents-end
998 :level (nth 1 components)
999 :priority (nth 3 components)
1000 :tags tags
1001 :todo-keyword todo
1002 :todo-type todo-type
1003 :post-blank (count-lines before-blank end))
1004 time-props
1005 standard-props))))
1006 (org-element-put-property
1007 inlinetask :title
1008 (if raw-secondary-p raw-value
1009 (org-element-parse-secondary-string
1010 raw-value
1011 (org-element-restriction 'inlinetask)
1012 inlinetask))))))
1014 (defun org-element-inlinetask-interpreter (inlinetask contents)
1015 "Interpret INLINETASK element as Org syntax.
1016 CONTENTS is the contents of inlinetask."
1017 (let* ((level (org-element-property :level inlinetask))
1018 (todo (org-element-property :todo-keyword inlinetask))
1019 (priority (org-element-property :priority inlinetask))
1020 (title (org-element-interpret-data
1021 (org-element-property :title inlinetask)))
1022 (tags (let ((tag-list (org-element-property :tags inlinetask)))
1023 (and tag-list
1024 (format ":%s:" (mapconcat 'identity tag-list ":")))))
1025 (task (concat (make-string level ?*)
1026 (and todo (concat " " todo))
1027 (and priority
1028 (format " [#%s]" (char-to-string priority)))
1029 (and title (concat " " title)))))
1030 (concat task
1031 ;; Align tags.
1032 (when tags
1033 (cond
1034 ((zerop org-tags-column) (format " %s" tags))
1035 ((< org-tags-column 0)
1036 (concat
1037 (make-string
1038 (max (- (+ org-tags-column (length task) (length tags))) 1)
1040 tags))
1042 (concat
1043 (make-string (max (- org-tags-column (length task)) 1) ? )
1044 tags))))
1045 ;; Prefer degenerate inlinetasks when there are no
1046 ;; contents.
1047 (when contents
1048 (concat "\n"
1049 contents
1050 (make-string level ?*) " END")))))
1053 ;;;; Item
1055 (defun org-element-item-parser (limit struct &optional raw-secondary-p)
1056 "Parse an item.
1058 STRUCT is the structure of the plain list.
1060 Return a list whose CAR is `item' and CDR is a plist containing
1061 `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
1062 `:checkbox', `:counter', `:tag', `:structure', `:hiddenp' and
1063 `:post-blank' keywords.
1065 When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
1066 any, will not be parsed as a secondary string, but as a plain
1067 string instead.
1069 Assume point is at the beginning of the item."
1070 (save-excursion
1071 (beginning-of-line)
1072 (looking-at org-list-full-item-re)
1073 (let* ((begin (point))
1074 (bullet (org-match-string-no-properties 1))
1075 (checkbox (let ((box (org-match-string-no-properties 3)))
1076 (cond ((equal "[ ]" box) 'off)
1077 ((equal "[X]" box) 'on)
1078 ((equal "[-]" box) 'trans))))
1079 (counter (let ((c (org-match-string-no-properties 2)))
1080 (save-match-data
1081 (cond
1082 ((not c) nil)
1083 ((string-match "[A-Za-z]" c)
1084 (- (string-to-char (upcase (match-string 0 c)))
1085 64))
1086 ((string-match "[0-9]+" c)
1087 (string-to-number (match-string 0 c)))))))
1088 (end (save-excursion (goto-char (org-list-get-item-end begin struct))
1089 (unless (bolp) (forward-line))
1090 (point)))
1091 (contents-begin
1092 (progn (goto-char
1093 ;; Ignore tags in un-ordered lists: they are just
1094 ;; a part of item's body.
1095 (if (and (match-beginning 4)
1096 (save-match-data (string-match "[.)]" bullet)))
1097 (match-beginning 4)
1098 (match-end 0)))
1099 (skip-chars-forward " \r\t\n" limit)
1100 ;; If first line isn't empty, contents really start
1101 ;; at the text after item's meta-data.
1102 (if (= (point-at-bol) begin) (point) (point-at-bol))))
1103 (hidden (progn (forward-line)
1104 (and (not (= (point) end)) (org-invisible-p2))))
1105 (contents-end (progn (goto-char end)
1106 (skip-chars-backward " \r\t\n")
1107 (forward-line)
1108 (point)))
1109 (item
1110 (list 'item
1111 (list :bullet bullet
1112 :begin begin
1113 :end end
1114 ;; CONTENTS-BEGIN and CONTENTS-END may be
1115 ;; mixed up in the case of an empty item
1116 ;; separated from the next by a blank line.
1117 ;; Thus ensure the former is always the
1118 ;; smallest.
1119 :contents-begin (min contents-begin contents-end)
1120 :contents-end (max contents-begin contents-end)
1121 :checkbox checkbox
1122 :counter counter
1123 :hiddenp hidden
1124 :structure struct
1125 :post-blank (count-lines contents-end end)))))
1126 (org-element-put-property
1127 item :tag
1128 (let ((raw-tag (org-list-get-tag begin struct)))
1129 (and raw-tag
1130 (if raw-secondary-p raw-tag
1131 (org-element-parse-secondary-string
1132 raw-tag (org-element-restriction 'item) item))))))))
1134 (defun org-element-item-interpreter (item contents)
1135 "Interpret ITEM element as Org syntax.
1136 CONTENTS is the contents of the element."
1137 (let* ((bullet (let ((bullet (org-element-property :bullet item)))
1138 (org-list-bullet-string
1139 (cond ((not (string-match "[0-9a-zA-Z]" bullet)) "- ")
1140 ((eq org-plain-list-ordered-item-terminator ?\)) "1)")
1141 (t "1.")))))
1142 (checkbox (org-element-property :checkbox item))
1143 (counter (org-element-property :counter item))
1144 (tag (let ((tag (org-element-property :tag item)))
1145 (and tag (org-element-interpret-data tag))))
1146 ;; Compute indentation.
1147 (ind (make-string (length bullet) 32))
1148 (item-starts-with-par-p
1149 (eq (org-element-type (car (org-element-contents item)))
1150 'paragraph)))
1151 ;; Indent contents.
1152 (concat
1153 bullet
1154 (and counter (format "[@%d] " counter))
1155 (case checkbox
1156 (on "[X] ")
1157 (off "[ ] ")
1158 (trans "[-] "))
1159 (and tag (format "%s :: " tag))
1160 (when contents
1161 (let ((contents (replace-regexp-in-string
1162 "\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
1163 (if item-starts-with-par-p (org-trim contents)
1164 (concat "\n" contents)))))))
1167 ;;;; Plain List
1169 (defun org-element--list-struct (limit)
1170 ;; Return structure of list at point. Internal function. See
1171 ;; `org-list-struct' for details.
1172 (let ((case-fold-search t)
1173 (top-ind limit)
1174 (item-re (org-item-re))
1175 (drawers-re (concat ":\\("
1176 (mapconcat 'regexp-quote org-drawers "\\|")
1177 "\\):[ \t]*$"))
1178 (inlinetask-re (and (featurep 'org-inlinetask) "^\\*+ "))
1179 items struct)
1180 (save-excursion
1181 (catch 'exit
1182 (while t
1183 (cond
1184 ;; At limit: end all items.
1185 ((>= (point) limit)
1186 (throw 'exit
1187 (let ((end (progn (skip-chars-backward " \r\t\n")
1188 (forward-line)
1189 (point))))
1190 (dolist (item items (sort (nconc items struct)
1191 'car-less-than-car))
1192 (setcar (nthcdr 6 item) end)))))
1193 ;; At list end: end all items.
1194 ((looking-at org-list-end-re)
1195 (throw 'exit (dolist (item items (sort (nconc items struct)
1196 'car-less-than-car))
1197 (setcar (nthcdr 6 item) (point)))))
1198 ;; At a new item: end previous sibling.
1199 ((looking-at item-re)
1200 (let ((ind (save-excursion (skip-chars-forward " \t")
1201 (current-column))))
1202 (setq top-ind (min top-ind ind))
1203 (while (and items (<= ind (nth 1 (car items))))
1204 (let ((item (pop items)))
1205 (setcar (nthcdr 6 item) (point))
1206 (push item struct)))
1207 (push (progn (looking-at org-list-full-item-re)
1208 (let ((bullet (match-string-no-properties 1)))
1209 (list (point)
1211 bullet
1212 (match-string-no-properties 2) ; counter
1213 (match-string-no-properties 3) ; checkbox
1214 ;; Description tag.
1215 (and (save-match-data
1216 (string-match "[-+*]" bullet))
1217 (match-string-no-properties 4))
1218 ;; Ending position, unknown so far.
1219 nil)))
1220 items))
1221 (forward-line 1))
1222 ;; Skip empty lines.
1223 ((looking-at "^[ \t]*$") (forward-line))
1224 ;; Skip inline tasks and blank lines along the way.
1225 ((and inlinetask-re (looking-at inlinetask-re))
1226 (forward-line)
1227 (let ((origin (point)))
1228 (when (re-search-forward inlinetask-re limit t)
1229 (if (org-looking-at-p "END[ \t]*$") (forward-line)
1230 (goto-char origin)))))
1231 ;; At some text line. Check if it ends any previous item.
1233 (let ((ind (progn (skip-chars-forward " \t") (current-column))))
1234 (when (<= ind top-ind)
1235 (skip-chars-backward " \r\t\n")
1236 (forward-line))
1237 (while (<= ind (nth 1 (car items)))
1238 (let ((item (pop items)))
1239 (setcar (nthcdr 6 item) (line-beginning-position))
1240 (push item struct)
1241 (unless items
1242 (throw 'exit (sort struct 'car-less-than-car))))))
1243 ;; Skip blocks (any type) and drawers contents.
1244 (cond
1245 ((and (looking-at "#\\+BEGIN\\(:\\|_\\S-+\\)")
1246 (re-search-forward
1247 (format "^[ \t]*#\\+END%s[ \t]*$"
1248 (org-match-string-no-properties 1))
1249 limit t)))
1250 ((and (looking-at drawers-re)
1251 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t))))
1252 (forward-line))))))))
1254 (defun org-element-plain-list-parser (limit affiliated structure)
1255 "Parse a plain list.
1257 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1258 the buffer position at the beginning of the first affiliated
1259 keyword and CDR is a plist of affiliated keywords along with
1260 their value. STRUCTURE is the structure of the plain list being
1261 parsed.
1263 Return a list whose CAR is `plain-list' and CDR is a plist
1264 containing `:type', `:begin', `:end', `:contents-begin' and
1265 `:contents-end', `:structure', `:post-blank' and
1266 `:post-affiliated' keywords.
1268 Assume point is at the beginning of the list."
1269 (save-excursion
1270 (let* ((struct (or structure (org-element--list-struct limit)))
1271 (prevs (org-list-prevs-alist struct))
1272 (type (org-list-get-list-type (point) struct prevs))
1273 (contents-begin (point))
1274 (begin (car affiliated))
1275 (contents-end
1276 (progn (goto-char (org-list-get-list-end (point) struct prevs))
1277 (unless (bolp) (forward-line))
1278 (point)))
1279 (end (progn (skip-chars-forward " \r\t\n" limit)
1280 (if (= (point) limit) limit (line-beginning-position)))))
1281 ;; Return value.
1282 (list 'plain-list
1283 (nconc
1284 (list :type type
1285 :begin begin
1286 :end end
1287 :contents-begin contents-begin
1288 :contents-end contents-end
1289 :structure struct
1290 :post-blank (count-lines contents-end end)
1291 :post-affiliated contents-begin)
1292 (cdr affiliated))))))
1294 (defun org-element-plain-list-interpreter (plain-list contents)
1295 "Interpret PLAIN-LIST element as Org syntax.
1296 CONTENTS is the contents of the element."
1297 (with-temp-buffer
1298 (insert contents)
1299 (goto-char (point-min))
1300 (org-list-repair)
1301 (buffer-string)))
1304 ;;;; Property Drawer
1306 (defun org-element-property-drawer-parser (limit affiliated)
1307 "Parse a property drawer.
1309 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1310 the buffer position at the beginning of the first affiliated
1311 keyword and CDR is a plist of affiliated keywords along with
1312 their value.
1314 Return a list whose CAR is `property-drawer' and CDR is a plist
1315 containing `:begin', `:end', `:hiddenp', `:contents-begin',
1316 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
1318 Assume point is at the beginning of the property drawer."
1319 (save-excursion
1320 (let ((case-fold-search t))
1321 (if (not (save-excursion
1322 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
1323 ;; Incomplete drawer: parse it as a paragraph.
1324 (org-element-paragraph-parser limit affiliated)
1325 (save-excursion
1326 (let* ((drawer-end-line (match-beginning 0))
1327 (begin (car affiliated))
1328 (post-affiliated (point))
1329 (contents-begin (progn (forward-line)
1330 (and (< (point) drawer-end-line)
1331 (point))))
1332 (contents-end (and contents-begin drawer-end-line))
1333 (hidden (org-invisible-p2))
1334 (pos-before-blank (progn (goto-char drawer-end-line)
1335 (forward-line)
1336 (point)))
1337 (end (progn (skip-chars-forward " \r\t\n" limit)
1338 (if (eobp) (point) (line-beginning-position)))))
1339 (list 'property-drawer
1340 (nconc
1341 (list :begin begin
1342 :end end
1343 :hiddenp hidden
1344 :contents-begin contents-begin
1345 :contents-end contents-end
1346 :post-blank (count-lines pos-before-blank end)
1347 :post-affiliated post-affiliated)
1348 (cdr affiliated)))))))))
1350 (defun org-element-property-drawer-interpreter (property-drawer contents)
1351 "Interpret PROPERTY-DRAWER element as Org syntax.
1352 CONTENTS is the properties within the drawer."
1353 (format ":PROPERTIES:\n%s:END:" contents))
1356 ;;;; Quote Block
1358 (defun org-element-quote-block-parser (limit affiliated)
1359 "Parse a quote block.
1361 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1362 the buffer position at the beginning of the first affiliated
1363 keyword and CDR is a plist of affiliated keywords along with
1364 their value.
1366 Return a list whose CAR is `quote-block' and CDR is a plist
1367 containing `:begin', `:end', `:hiddenp', `:contents-begin',
1368 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
1370 Assume point is at the beginning of the block."
1371 (let ((case-fold-search t))
1372 (if (not (save-excursion
1373 (re-search-forward "^[ \t]*#\\+END_QUOTE[ \t]*$" limit t)))
1374 ;; Incomplete block: parse it as a paragraph.
1375 (org-element-paragraph-parser limit affiliated)
1376 (let ((block-end-line (match-beginning 0)))
1377 (save-excursion
1378 (let* ((begin (car affiliated))
1379 (post-affiliated (point))
1380 ;; Empty blocks have no contents.
1381 (contents-begin (progn (forward-line)
1382 (and (< (point) block-end-line)
1383 (point))))
1384 (contents-end (and contents-begin block-end-line))
1385 (hidden (org-invisible-p2))
1386 (pos-before-blank (progn (goto-char block-end-line)
1387 (forward-line)
1388 (point)))
1389 (end (progn (skip-chars-forward " \r\t\n" limit)
1390 (if (eobp) (point) (line-beginning-position)))))
1391 (list 'quote-block
1392 (nconc
1393 (list :begin begin
1394 :end end
1395 :hiddenp hidden
1396 :contents-begin contents-begin
1397 :contents-end contents-end
1398 :post-blank (count-lines pos-before-blank end)
1399 :post-affiliated post-affiliated)
1400 (cdr affiliated)))))))))
1402 (defun org-element-quote-block-interpreter (quote-block contents)
1403 "Interpret QUOTE-BLOCK element as Org syntax.
1404 CONTENTS is the contents of the element."
1405 (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents))
1408 ;;;; Section
1410 (defun org-element-section-parser (limit)
1411 "Parse a section.
1413 LIMIT bounds the search.
1415 Return a list whose CAR is `section' and CDR is a plist
1416 containing `:begin', `:end', `:contents-begin', `contents-end'
1417 and `:post-blank' keywords."
1418 (save-excursion
1419 ;; Beginning of section is the beginning of the first non-blank
1420 ;; line after previous headline.
1421 (let ((begin (point))
1422 (end (progn (org-with-limited-levels (outline-next-heading))
1423 (point)))
1424 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1425 (forward-line)
1426 (point))))
1427 (list 'section
1428 (list :begin begin
1429 :end end
1430 :contents-begin begin
1431 :contents-end pos-before-blank
1432 :post-blank (count-lines pos-before-blank end))))))
1434 (defun org-element-section-interpreter (section contents)
1435 "Interpret SECTION element as Org syntax.
1436 CONTENTS is the contents of the element."
1437 contents)
1440 ;;;; Special Block
1442 (defun org-element-special-block-parser (limit affiliated)
1443 "Parse a special block.
1445 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1446 the buffer position at the beginning of the first affiliated
1447 keyword and CDR is a plist of affiliated keywords along with
1448 their value.
1450 Return a list whose CAR is `special-block' and CDR is a plist
1451 containing `:type', `:begin', `:end', `:hiddenp',
1452 `:contents-begin', `:contents-end', `:post-blank' and
1453 `:post-affiliated' keywords.
1455 Assume point is at the beginning of the block."
1456 (let* ((case-fold-search t)
1457 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1458 (upcase (match-string-no-properties 1)))))
1459 (if (not (save-excursion
1460 (re-search-forward
1461 (format "^[ \t]*#\\+END_%s[ \t]*$" (regexp-quote type))
1462 limit t)))
1463 ;; Incomplete block: parse it as a paragraph.
1464 (org-element-paragraph-parser limit affiliated)
1465 (let ((block-end-line (match-beginning 0)))
1466 (save-excursion
1467 (let* ((begin (car affiliated))
1468 (post-affiliated (point))
1469 ;; Empty blocks have no contents.
1470 (contents-begin (progn (forward-line)
1471 (and (< (point) block-end-line)
1472 (point))))
1473 (contents-end (and contents-begin block-end-line))
1474 (hidden (org-invisible-p2))
1475 (pos-before-blank (progn (goto-char block-end-line)
1476 (forward-line)
1477 (point)))
1478 (end (progn (skip-chars-forward " \r\t\n" limit)
1479 (if (eobp) (point) (line-beginning-position)))))
1480 (list 'special-block
1481 (nconc
1482 (list :type type
1483 :begin begin
1484 :end end
1485 :hiddenp hidden
1486 :contents-begin contents-begin
1487 :contents-end contents-end
1488 :post-blank (count-lines pos-before-blank end)
1489 :post-affiliated post-affiliated)
1490 (cdr affiliated)))))))))
1492 (defun org-element-special-block-interpreter (special-block contents)
1493 "Interpret SPECIAL-BLOCK element as Org syntax.
1494 CONTENTS is the contents of the element."
1495 (let ((block-type (org-element-property :type special-block)))
1496 (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type)))
1500 ;;; Elements
1502 ;; For each element, a parser and an interpreter are also defined.
1503 ;; Both follow the same naming convention used for greater elements.
1505 ;; Also, as for greater elements, adding a new element type is done
1506 ;; through the following steps: implement a parser and an interpreter,
1507 ;; tweak `org-element--current-element' so that it recognizes the new
1508 ;; type and add that new type to `org-element-all-elements'.
1510 ;; As a special case, when the newly defined type is a block type,
1511 ;; `org-element-block-name-alist' has to be modified accordingly.
1514 ;;;; Babel Call
1516 (defun org-element-babel-call-parser (limit affiliated)
1517 "Parse a babel call.
1519 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1520 the buffer position at the beginning of the first affiliated
1521 keyword and CDR is a plist of affiliated keywords along with
1522 their value.
1524 Return a list whose CAR is `babel-call' and CDR is a plist
1525 containing `:begin', `:end', `:info', `:post-blank' and
1526 `:post-affiliated' as keywords."
1527 (save-excursion
1528 (let ((case-fold-search t)
1529 (info (progn (looking-at org-babel-block-lob-one-liner-regexp)
1530 (org-babel-lob-get-info)))
1531 (begin (car affiliated))
1532 (post-affiliated (point))
1533 (pos-before-blank (progn (forward-line) (point)))
1534 (end (progn (skip-chars-forward " \r\t\n" limit)
1535 (if (eobp) (point) (line-beginning-position)))))
1536 (list 'babel-call
1537 (nconc
1538 (list :begin begin
1539 :end end
1540 :info info
1541 :post-blank (count-lines pos-before-blank end)
1542 :post-affiliated post-affiliated)
1543 (cdr affiliated))))))
1545 (defun org-element-babel-call-interpreter (babel-call contents)
1546 "Interpret BABEL-CALL element as Org syntax.
1547 CONTENTS is nil."
1548 (let* ((babel-info (org-element-property :info babel-call))
1549 (main (car babel-info))
1550 (post-options (nth 1 babel-info)))
1551 (concat "#+CALL: "
1552 (if (not (string-match "\\[\\(\\[.*?\\]\\)\\]" main)) main
1553 ;; Remove redundant square brackets.
1554 (replace-match (match-string 1 main) nil nil main))
1555 (and post-options (format "[%s]" post-options)))))
1558 ;;;; Clock
1560 (defun org-element-clock-parser (limit)
1561 "Parse a clock.
1563 LIMIT bounds the search.
1565 Return a list whose CAR is `clock' and CDR is a plist containing
1566 `:status', `:value', `:time', `:begin', `:end' and `:post-blank'
1567 as keywords."
1568 (save-excursion
1569 (let* ((case-fold-search nil)
1570 (begin (point))
1571 (value (progn (search-forward org-clock-string (line-end-position) t)
1572 (skip-chars-forward " \t")
1573 (org-element-timestamp-parser)))
1574 (duration (and (search-forward " => " (line-end-position) t)
1575 (progn (skip-chars-forward " \t")
1576 (looking-at "\\(\\S-+\\)[ \t]*$"))
1577 (org-match-string-no-properties 1)))
1578 (status (if duration 'closed 'running))
1579 (post-blank (let ((before-blank (progn (forward-line) (point))))
1580 (skip-chars-forward " \r\t\n" limit)
1581 (skip-chars-backward " \t")
1582 (unless (bolp) (end-of-line))
1583 (count-lines before-blank (point))))
1584 (end (point)))
1585 (list 'clock
1586 (list :status status
1587 :value value
1588 :duration duration
1589 :begin begin
1590 :end end
1591 :post-blank post-blank)))))
1593 (defun org-element-clock-interpreter (clock contents)
1594 "Interpret CLOCK element as Org syntax.
1595 CONTENTS is nil."
1596 (concat org-clock-string " "
1597 (org-element-timestamp-interpreter
1598 (org-element-property :value clock) nil)
1599 (let ((duration (org-element-property :duration clock)))
1600 (and duration
1601 (concat " => "
1602 (apply 'format
1603 "%2s:%02s"
1604 (org-split-string duration ":")))))))
1607 ;;;; Comment
1609 (defun org-element-comment-parser (limit affiliated)
1610 "Parse a comment.
1612 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1613 the buffer position at the beginning of the first affiliated
1614 keyword and CDR is a plist of affiliated keywords along with
1615 their value.
1617 Return a list whose CAR is `comment' and CDR is a plist
1618 containing `:begin', `:end', `:value', `:post-blank',
1619 `:post-affiliated' keywords.
1621 Assume point is at comment beginning."
1622 (save-excursion
1623 (let* ((begin (car affiliated))
1624 (post-affiliated (point))
1625 (value (prog2 (looking-at "[ \t]*# ?")
1626 (buffer-substring-no-properties
1627 (match-end 0) (line-end-position))
1628 (forward-line)))
1629 (com-end
1630 ;; Get comments ending.
1631 (progn
1632 (while (and (< (point) limit) (looking-at "[ \t]*#\\( \\|$\\)"))
1633 ;; Accumulate lines without leading hash and first
1634 ;; whitespace.
1635 (setq value
1636 (concat value
1637 "\n"
1638 (buffer-substring-no-properties
1639 (match-end 0) (line-end-position))))
1640 (forward-line))
1641 (point)))
1642 (end (progn (goto-char com-end)
1643 (skip-chars-forward " \r\t\n" limit)
1644 (if (eobp) (point) (line-beginning-position)))))
1645 (list 'comment
1646 (nconc
1647 (list :begin begin
1648 :end end
1649 :value value
1650 :post-blank (count-lines com-end end)
1651 :post-affiliated post-affiliated)
1652 (cdr affiliated))))))
1654 (defun org-element-comment-interpreter (comment contents)
1655 "Interpret COMMENT element as Org syntax.
1656 CONTENTS is nil."
1657 (replace-regexp-in-string "^" "# " (org-element-property :value comment)))
1660 ;;;; Comment Block
1662 (defun org-element-comment-block-parser (limit affiliated)
1663 "Parse an export block.
1665 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1666 the buffer position at the beginning of the first affiliated
1667 keyword and CDR is a plist of affiliated keywords along with
1668 their value.
1670 Return a list whose CAR is `comment-block' and CDR is a plist
1671 containing `:begin', `:end', `:hiddenp', `:value', `:post-blank'
1672 and `:post-affiliated' keywords.
1674 Assume point is at comment block beginning."
1675 (let ((case-fold-search t))
1676 (if (not (save-excursion
1677 (re-search-forward "^[ \t]*#\\+END_COMMENT[ \t]*$" limit t)))
1678 ;; Incomplete block: parse it as a paragraph.
1679 (org-element-paragraph-parser limit affiliated)
1680 (let ((contents-end (match-beginning 0)))
1681 (save-excursion
1682 (let* ((begin (car affiliated))
1683 (post-affiliated (point))
1684 (contents-begin (progn (forward-line) (point)))
1685 (hidden (org-invisible-p2))
1686 (pos-before-blank (progn (goto-char contents-end)
1687 (forward-line)
1688 (point)))
1689 (end (progn (skip-chars-forward " \r\t\n" limit)
1690 (if (eobp) (point) (line-beginning-position))))
1691 (value (buffer-substring-no-properties
1692 contents-begin contents-end)))
1693 (list 'comment-block
1694 (nconc
1695 (list :begin begin
1696 :end end
1697 :value value
1698 :hiddenp hidden
1699 :post-blank (count-lines pos-before-blank end)
1700 :post-affiliated post-affiliated)
1701 (cdr affiliated)))))))))
1703 (defun org-element-comment-block-interpreter (comment-block contents)
1704 "Interpret COMMENT-BLOCK element as Org syntax.
1705 CONTENTS is nil."
1706 (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
1707 (org-remove-indentation (org-element-property :value comment-block))))
1710 ;;;; Diary Sexp
1712 (defun org-element-diary-sexp-parser (limit affiliated)
1713 "Parse a diary sexp.
1715 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1716 the buffer position at the beginning of the first affiliated
1717 keyword and CDR is a plist of affiliated keywords along with
1718 their value.
1720 Return a list whose CAR is `diary-sexp' and CDR is a plist
1721 containing `:begin', `:end', `:value', `:post-blank' and
1722 `:post-affiliated' keywords."
1723 (save-excursion
1724 (let ((begin (car affiliated))
1725 (post-affiliated (point))
1726 (value (progn (looking-at "\\(%%(.*\\)[ \t]*$")
1727 (org-match-string-no-properties 1)))
1728 (pos-before-blank (progn (forward-line) (point)))
1729 (end (progn (skip-chars-forward " \r\t\n" limit)
1730 (if (eobp) (point) (line-beginning-position)))))
1731 (list 'diary-sexp
1732 (nconc
1733 (list :value value
1734 :begin begin
1735 :end end
1736 :post-blank (count-lines pos-before-blank end)
1737 :post-affiliated post-affiliated)
1738 (cdr affiliated))))))
1740 (defun org-element-diary-sexp-interpreter (diary-sexp contents)
1741 "Interpret DIARY-SEXP as Org syntax.
1742 CONTENTS is nil."
1743 (org-element-property :value diary-sexp))
1746 ;;;; Example Block
1748 (defun org-element--remove-indentation (s &optional n)
1749 "Remove maximum common indentation in string S and return it.
1750 When optional argument N is a positive integer, remove exactly
1751 that much characters from indentation, if possible, or return
1752 S as-is otherwise. Unlike to `org-remove-indentation', this
1753 function doesn't call `untabify' on S."
1754 (catch 'exit
1755 (with-temp-buffer
1756 (insert s)
1757 (goto-char (point-min))
1758 ;; Find maximum common indentation, if not specified.
1759 (setq n (or n
1760 (let ((min-ind (point-max)))
1761 (save-excursion
1762 (while (re-search-forward "^[ \t]*\\S-" nil t)
1763 (let ((ind (1- (current-column))))
1764 (if (zerop ind) (throw 'exit s)
1765 (setq min-ind (min min-ind ind))))))
1766 min-ind)))
1767 (if (zerop n) s
1768 ;; Remove exactly N indentation, but give up if not possible.
1769 (while (not (eobp))
1770 (let ((ind (progn (skip-chars-forward " \t") (current-column))))
1771 (cond ((eolp) (delete-region (line-beginning-position) (point)))
1772 ((< ind n) (throw 'exit s))
1773 (t (org-indent-line-to (- ind n))))
1774 (forward-line)))
1775 (buffer-string)))))
1777 (defun org-element-example-block-parser (limit affiliated)
1778 "Parse an example block.
1780 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1781 the buffer position at the beginning of the first affiliated
1782 keyword and CDR is a plist of affiliated keywords along with
1783 their value.
1785 Return a list whose CAR is `example-block' and CDR is a plist
1786 containing `:begin', `:end', `:number-lines', `:preserve-indent',
1787 `:retain-labels', `:use-labels', `:label-fmt', `:hiddenp',
1788 `:switches', `:value', `:post-blank' and `:post-affiliated'
1789 keywords."
1790 (let ((case-fold-search t))
1791 (if (not (save-excursion
1792 (re-search-forward "^[ \t]*#\\+END_EXAMPLE[ \t]*$" limit t)))
1793 ;; Incomplete block: parse it as a paragraph.
1794 (org-element-paragraph-parser limit affiliated)
1795 (let ((contents-end (match-beginning 0)))
1796 (save-excursion
1797 (let* ((switches
1798 (progn
1799 (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
1800 (org-match-string-no-properties 1)))
1801 ;; Switches analysis
1802 (number-lines
1803 (cond ((not switches) nil)
1804 ((string-match "-n\\>" switches) 'new)
1805 ((string-match "+n\\>" switches) 'continued)))
1806 (preserve-indent
1807 (or org-src-preserve-indentation
1808 (and switches (string-match "-i\\>" switches))))
1809 ;; Should labels be retained in (or stripped from) example
1810 ;; blocks?
1811 (retain-labels
1812 (or (not switches)
1813 (not (string-match "-r\\>" switches))
1814 (and number-lines (string-match "-k\\>" switches))))
1815 ;; What should code-references use - labels or
1816 ;; line-numbers?
1817 (use-labels
1818 (or (not switches)
1819 (and retain-labels
1820 (not (string-match "-k\\>" switches)))))
1821 (label-fmt
1822 (and switches
1823 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
1824 (match-string 1 switches)))
1825 ;; Standard block parsing.
1826 (begin (car affiliated))
1827 (post-affiliated (point))
1828 (block-ind (progn (skip-chars-forward " \t") (current-column)))
1829 (contents-begin (progn (forward-line) (point)))
1830 (hidden (org-invisible-p2))
1831 (value (org-element--remove-indentation
1832 (org-unescape-code-in-string
1833 (buffer-substring-no-properties
1834 contents-begin contents-end))
1835 (and preserve-indent block-ind)))
1836 (pos-before-blank (progn (goto-char contents-end)
1837 (forward-line)
1838 (point)))
1839 (end (progn (skip-chars-forward " \r\t\n" limit)
1840 (if (eobp) (point) (line-beginning-position)))))
1841 (list 'example-block
1842 (nconc
1843 (list :begin begin
1844 :end end
1845 :value value
1846 :switches switches
1847 :number-lines number-lines
1848 :preserve-indent preserve-indent
1849 :retain-labels retain-labels
1850 :use-labels use-labels
1851 :label-fmt label-fmt
1852 :hiddenp hidden
1853 :post-blank (count-lines pos-before-blank end)
1854 :post-affiliated post-affiliated)
1855 (cdr affiliated)))))))))
1857 (defun org-element-example-block-interpreter (example-block contents)
1858 "Interpret EXAMPLE-BLOCK element as Org syntax.
1859 CONTENTS is nil."
1860 (let ((switches (org-element-property :switches example-block)))
1861 (concat "#+BEGIN_EXAMPLE" (and switches (concat " " switches)) "\n"
1862 (org-escape-code-in-string
1863 (org-element-property :value example-block))
1864 "#+END_EXAMPLE")))
1867 ;;;; Export Block
1869 (defun org-element-export-block-parser (limit affiliated)
1870 "Parse an export block.
1872 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1873 the buffer position at the beginning of the first affiliated
1874 keyword and CDR is a plist of affiliated keywords along with
1875 their value.
1877 Return a list whose CAR is `export-block' and CDR is a plist
1878 containing `:begin', `:end', `:type', `:hiddenp', `:value',
1879 `:post-blank' and `:post-affiliated' keywords.
1881 Assume point is at export-block beginning."
1882 (let* ((case-fold-search t)
1883 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1884 (upcase (org-match-string-no-properties 1)))))
1885 (if (not (save-excursion
1886 (re-search-forward
1887 (format "^[ \t]*#\\+END_%s[ \t]*$" type) limit t)))
1888 ;; Incomplete block: parse it as a paragraph.
1889 (org-element-paragraph-parser limit affiliated)
1890 (let ((contents-end (match-beginning 0)))
1891 (save-excursion
1892 (let* ((begin (car affiliated))
1893 (post-affiliated (point))
1894 (contents-begin (progn (forward-line) (point)))
1895 (hidden (org-invisible-p2))
1896 (pos-before-blank (progn (goto-char contents-end)
1897 (forward-line)
1898 (point)))
1899 (end (progn (skip-chars-forward " \r\t\n" limit)
1900 (if (eobp) (point) (line-beginning-position))))
1901 (value (buffer-substring-no-properties contents-begin
1902 contents-end)))
1903 (list 'export-block
1904 (nconc
1905 (list :begin begin
1906 :end end
1907 :type type
1908 :value value
1909 :hiddenp hidden
1910 :post-blank (count-lines pos-before-blank end)
1911 :post-affiliated post-affiliated)
1912 (cdr affiliated)))))))))
1914 (defun org-element-export-block-interpreter (export-block contents)
1915 "Interpret EXPORT-BLOCK element as Org syntax.
1916 CONTENTS is nil."
1917 (let ((type (org-element-property :type export-block)))
1918 (concat (format "#+BEGIN_%s\n" type)
1919 (org-element-property :value export-block)
1920 (format "#+END_%s" type))))
1923 ;;;; Fixed-width
1925 (defun org-element-fixed-width-parser (limit affiliated)
1926 "Parse a fixed-width section.
1928 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1929 the buffer position at the beginning of the first affiliated
1930 keyword and CDR is a plist of affiliated keywords along with
1931 their value.
1933 Return a list whose CAR is `fixed-width' and CDR is a plist
1934 containing `:begin', `:end', `:value', `:post-blank' and
1935 `:post-affiliated' keywords.
1937 Assume point is at the beginning of the fixed-width area."
1938 (save-excursion
1939 (let* ((begin (car affiliated))
1940 (post-affiliated (point))
1941 value
1942 (end-area
1943 (progn
1944 (while (and (< (point) limit)
1945 (looking-at "[ \t]*:\\( \\|$\\)"))
1946 ;; Accumulate text without starting colons.
1947 (setq value
1948 (concat value
1949 (buffer-substring-no-properties
1950 (match-end 0) (point-at-eol))
1951 "\n"))
1952 (forward-line))
1953 (point)))
1954 (end (progn (skip-chars-forward " \r\t\n" limit)
1955 (if (eobp) (point) (line-beginning-position)))))
1956 (list 'fixed-width
1957 (nconc
1958 (list :begin begin
1959 :end end
1960 :value value
1961 :post-blank (count-lines end-area end)
1962 :post-affiliated post-affiliated)
1963 (cdr affiliated))))))
1965 (defun org-element-fixed-width-interpreter (fixed-width contents)
1966 "Interpret FIXED-WIDTH element as Org syntax.
1967 CONTENTS is nil."
1968 (let ((value (org-element-property :value fixed-width)))
1969 (and value
1970 (replace-regexp-in-string
1971 "^" ": "
1972 (if (string-match "\n\\'" value) (substring value 0 -1) value)))))
1975 ;;;; Horizontal Rule
1977 (defun org-element-horizontal-rule-parser (limit affiliated)
1978 "Parse an horizontal rule.
1980 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1981 the buffer position at the beginning of the first affiliated
1982 keyword and CDR is a plist of affiliated keywords along with
1983 their value.
1985 Return a list whose CAR is `horizontal-rule' and CDR is a plist
1986 containing `:begin', `:end', `:post-blank' and `:post-affiliated'
1987 keywords."
1988 (save-excursion
1989 (let ((begin (car affiliated))
1990 (post-affiliated (point))
1991 (post-hr (progn (forward-line) (point)))
1992 (end (progn (skip-chars-forward " \r\t\n" limit)
1993 (if (eobp) (point) (line-beginning-position)))))
1994 (list 'horizontal-rule
1995 (nconc
1996 (list :begin begin
1997 :end end
1998 :post-blank (count-lines post-hr end)
1999 :post-affiliated post-affiliated)
2000 (cdr affiliated))))))
2002 (defun org-element-horizontal-rule-interpreter (horizontal-rule contents)
2003 "Interpret HORIZONTAL-RULE element as Org syntax.
2004 CONTENTS is nil."
2005 "-----")
2008 ;;;; Keyword
2010 (defun org-element-keyword-parser (limit affiliated)
2011 "Parse a keyword at point.
2013 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2014 the buffer position at the beginning of the first affiliated
2015 keyword and CDR is a plist of affiliated keywords along with
2016 their value.
2018 Return a list whose CAR is `keyword' and CDR is a plist
2019 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2020 `:post-affiliated' keywords."
2021 (save-excursion
2022 (let ((begin (car affiliated))
2023 (post-affiliated (point))
2024 (key (progn (looking-at "[ \t]*#\\+\\(\\S-+*\\):")
2025 (upcase (org-match-string-no-properties 1))))
2026 (value (org-trim (buffer-substring-no-properties
2027 (match-end 0) (point-at-eol))))
2028 (pos-before-blank (progn (forward-line) (point)))
2029 (end (progn (skip-chars-forward " \r\t\n" limit)
2030 (if (eobp) (point) (line-beginning-position)))))
2031 (list 'keyword
2032 (nconc
2033 (list :key key
2034 :value value
2035 :begin begin
2036 :end end
2037 :post-blank (count-lines pos-before-blank end)
2038 :post-affiliated post-affiliated)
2039 (cdr affiliated))))))
2041 (defun org-element-keyword-interpreter (keyword contents)
2042 "Interpret KEYWORD element as Org syntax.
2043 CONTENTS is nil."
2044 (format "#+%s: %s"
2045 (org-element-property :key keyword)
2046 (org-element-property :value keyword)))
2049 ;;;; Latex Environment
2051 (defun org-element-latex-environment-parser (limit affiliated)
2052 "Parse a LaTeX environment.
2054 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2055 the buffer position at the beginning of the first affiliated
2056 keyword and CDR is a plist of affiliated keywords along with
2057 their value.
2059 Return a list whose CAR is `latex-environment' and CDR is a plist
2060 containing `:begin', `:end', `:value', `:post-blank' and
2061 `:post-affiliated' keywords.
2063 Assume point is at the beginning of the latex environment."
2064 (save-excursion
2065 (let ((case-fold-search t)
2066 (code-begin (point)))
2067 (looking-at "[ \t]*\\\\begin{\\([A-Za-z0-9]+\\*?\\)}")
2068 (if (not (re-search-forward (format "^[ \t]*\\\\end{%s}[ \t]*$"
2069 (regexp-quote (match-string 1)))
2070 limit t))
2071 ;; Incomplete latex environment: parse it as a paragraph.
2072 (org-element-paragraph-parser limit affiliated)
2073 (let* ((code-end (progn (forward-line) (point)))
2074 (begin (car affiliated))
2075 (value (buffer-substring-no-properties code-begin code-end))
2076 (end (progn (skip-chars-forward " \r\t\n" limit)
2077 (if (eobp) (point) (line-beginning-position)))))
2078 (list 'latex-environment
2079 (nconc
2080 (list :begin begin
2081 :end end
2082 :value value
2083 :post-blank (count-lines code-end end)
2084 :post-affiliated code-begin)
2085 (cdr affiliated))))))))
2087 (defun org-element-latex-environment-interpreter (latex-environment contents)
2088 "Interpret LATEX-ENVIRONMENT element as Org syntax.
2089 CONTENTS is nil."
2090 (org-element-property :value latex-environment))
2093 ;;;; Node Property
2095 (defun org-element-node-property-parser (limit)
2096 "Parse a node-property at point.
2098 LIMIT bounds the search.
2100 Return a list whose CAR is `node-property' and CDR is a plist
2101 containing `:key', `:value', `:begin', `:end' and `:post-blank'
2102 keywords."
2103 (save-excursion
2104 (looking-at org-property-re)
2105 (let ((case-fold-search t)
2106 (begin (point))
2107 (key (org-match-string-no-properties 2))
2108 (value (org-match-string-no-properties 3))
2109 (pos-before-blank (progn (forward-line) (point)))
2110 (end (progn (skip-chars-forward " \r\t\n" limit)
2111 (if (eobp) (point) (point-at-bol)))))
2112 (list 'node-property
2113 (list :key key
2114 :value value
2115 :begin begin
2116 :end end
2117 :post-blank (count-lines pos-before-blank end))))))
2119 (defun org-element-node-property-interpreter (node-property contents)
2120 "Interpret NODE-PROPERTY element as Org syntax.
2121 CONTENTS is nil."
2122 (format org-property-format
2123 (format ":%s:" (org-element-property :key node-property))
2124 (org-element-property :value node-property)))
2127 ;;;; Paragraph
2129 (defun org-element-paragraph-parser (limit affiliated)
2130 "Parse a paragraph.
2132 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2133 the buffer position at the beginning of the first affiliated
2134 keyword and CDR is a plist of affiliated keywords along with
2135 their value.
2137 Return a list whose CAR is `paragraph' and CDR is a plist
2138 containing `:begin', `:end', `:contents-begin' and
2139 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
2141 Assume point is at the beginning of the paragraph."
2142 (save-excursion
2143 (let* ((begin (car affiliated))
2144 (contents-begin (point))
2145 (before-blank
2146 (let ((case-fold-search t))
2147 (end-of-line)
2148 (if (not (re-search-forward
2149 org-element-paragraph-separate limit 'm))
2150 limit
2151 ;; A matching `org-element-paragraph-separate' is not
2152 ;; necessarily the end of the paragraph. In
2153 ;; particular, lines starting with # or : as a first
2154 ;; non-space character are ambiguous. We have to
2155 ;; check if they are valid Org syntax (e.g., not an
2156 ;; incomplete keyword).
2157 (beginning-of-line)
2158 (while (not
2160 ;; There's no ambiguity for other symbols or
2161 ;; empty lines: stop here.
2162 (looking-at "[ \t]*\\(?:[^:#]\\|$\\)")
2163 ;; Stop at valid fixed-width areas.
2164 (looking-at "[ \t]*:\\(?: \\|$\\)")
2165 ;; Stop at drawers.
2166 (and (looking-at org-drawer-regexp)
2167 (save-excursion
2168 (re-search-forward
2169 "^[ \t]*:END:[ \t]*$" limit t)))
2170 ;; Stop at valid comments.
2171 (looking-at "[ \t]*#\\(?: \\|$\\)")
2172 ;; Stop at valid dynamic blocks.
2173 (and (looking-at org-dblock-start-re)
2174 (save-excursion
2175 (re-search-forward
2176 "^[ \t]*#\\+END:?[ \t]*$" limit t)))
2177 ;; Stop at valid blocks.
2178 (and (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
2179 (save-excursion
2180 (re-search-forward
2181 (format "^[ \t]*#\\+END_%s[ \t]*$"
2182 (regexp-quote
2183 (org-match-string-no-properties 1)))
2184 limit t)))
2185 ;; Stop at valid latex environments.
2186 (and (looking-at
2187 "[ \t]*\\\\begin{\\([A-Za-z0-9]+\\*?\\)}")
2188 (save-excursion
2189 (re-search-forward
2190 (format "^[ \t]*\\\\end{%s}[ \t]*$"
2191 (regexp-quote
2192 (org-match-string-no-properties 1)))
2193 limit t)))
2194 ;; Stop at valid keywords.
2195 (looking-at "[ \t]*#\\+\\S-+:")
2196 ;; Skip everything else.
2197 (not
2198 (progn
2199 (end-of-line)
2200 (re-search-forward org-element-paragraph-separate
2201 limit 'm)))))
2202 (beginning-of-line)))
2203 (if (= (point) limit) limit
2204 (goto-char (line-beginning-position)))))
2205 (contents-end (progn (skip-chars-backward " \r\t\n" contents-begin)
2206 (forward-line)
2207 (point)))
2208 (end (progn (skip-chars-forward " \r\t\n" limit)
2209 (if (eobp) (point) (line-beginning-position)))))
2210 (list 'paragraph
2211 (nconc
2212 (list :begin begin
2213 :end end
2214 :contents-begin contents-begin
2215 :contents-end contents-end
2216 :post-blank (count-lines before-blank end)
2217 :post-affiliated contents-begin)
2218 (cdr affiliated))))))
2220 (defun org-element-paragraph-interpreter (paragraph contents)
2221 "Interpret PARAGRAPH element as Org syntax.
2222 CONTENTS is the contents of the element."
2223 contents)
2226 ;;;; Planning
2228 (defun org-element-planning-parser (limit)
2229 "Parse a planning.
2231 LIMIT bounds the search.
2233 Return a list whose CAR is `planning' and CDR is a plist
2234 containing `:closed', `:deadline', `:scheduled', `:begin', `:end'
2235 and `:post-blank' keywords."
2236 (save-excursion
2237 (let* ((case-fold-search nil)
2238 (begin (point))
2239 (post-blank (let ((before-blank (progn (forward-line) (point))))
2240 (skip-chars-forward " \r\t\n" limit)
2241 (skip-chars-backward " \t")
2242 (unless (bolp) (end-of-line))
2243 (count-lines before-blank (point))))
2244 (end (point))
2245 closed deadline scheduled)
2246 (goto-char begin)
2247 (while (re-search-forward org-keyword-time-not-clock-regexp end t)
2248 (goto-char (match-end 1))
2249 (skip-chars-forward " \t" end)
2250 (let ((keyword (match-string 1))
2251 (time (org-element-timestamp-parser)))
2252 (cond ((equal keyword org-closed-string) (setq closed time))
2253 ((equal keyword org-deadline-string) (setq deadline time))
2254 (t (setq scheduled time)))))
2255 (list 'planning
2256 (list :closed closed
2257 :deadline deadline
2258 :scheduled scheduled
2259 :begin begin
2260 :end end
2261 :post-blank post-blank)))))
2263 (defun org-element-planning-interpreter (planning contents)
2264 "Interpret PLANNING element as Org syntax.
2265 CONTENTS is nil."
2266 (mapconcat
2267 'identity
2268 (delq nil
2269 (list (let ((deadline (org-element-property :deadline planning)))
2270 (when deadline
2271 (concat org-deadline-string " "
2272 (org-element-timestamp-interpreter deadline nil))))
2273 (let ((scheduled (org-element-property :scheduled planning)))
2274 (when scheduled
2275 (concat org-scheduled-string " "
2276 (org-element-timestamp-interpreter scheduled nil))))
2277 (let ((closed (org-element-property :closed planning)))
2278 (when closed
2279 (concat org-closed-string " "
2280 (org-element-timestamp-interpreter closed nil))))))
2281 " "))
2284 ;;;; Quote Section
2286 (defun org-element-quote-section-parser (limit)
2287 "Parse a quote section.
2289 LIMIT bounds the search.
2291 Return a list whose CAR is `quote-section' and CDR is a plist
2292 containing `:begin', `:end', `:value' and `:post-blank' keywords.
2294 Assume point is at beginning of the section."
2295 (save-excursion
2296 (let* ((begin (point))
2297 (end (progn (org-with-limited-levels (outline-next-heading))
2298 (point)))
2299 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
2300 (forward-line)
2301 (point)))
2302 (value (buffer-substring-no-properties begin pos-before-blank)))
2303 (list 'quote-section
2304 (list :begin begin
2305 :end end
2306 :value value
2307 :post-blank (count-lines pos-before-blank end))))))
2309 (defun org-element-quote-section-interpreter (quote-section contents)
2310 "Interpret QUOTE-SECTION element as Org syntax.
2311 CONTENTS is nil."
2312 (org-element-property :value quote-section))
2315 ;;;; Src Block
2317 (defun org-element-src-block-parser (limit affiliated)
2318 "Parse a src block.
2320 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2321 the buffer position at the beginning of the first affiliated
2322 keyword and CDR is a plist of affiliated keywords along with
2323 their value.
2325 Return a list whose CAR is `src-block' and CDR is a plist
2326 containing `:language', `:switches', `:parameters', `:begin',
2327 `:end', `:hiddenp', `:number-lines', `:retain-labels',
2328 `:use-labels', `:label-fmt', `:preserve-indent', `:value',
2329 `:post-blank' and `:post-affiliated' keywords.
2331 Assume point is at the beginning of the block."
2332 (let ((case-fold-search t))
2333 (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC[ \t]*$"
2334 limit t)))
2335 ;; Incomplete block: parse it as a paragraph.
2336 (org-element-paragraph-parser limit affiliated)
2337 (let ((contents-end (match-beginning 0)))
2338 (save-excursion
2339 (let* ((begin (car affiliated))
2340 (post-affiliated (point))
2341 ;; Get language as a string.
2342 (language
2343 (progn
2344 (looking-at
2345 (concat "^[ \t]*#\\+BEGIN_SRC"
2346 "\\(?: +\\(\\S-+\\)\\)?"
2347 "\\(\\(?: +\\(?:-l \".*?\"\\|[-+][A-Za-z]\\)\\)+\\)?"
2348 "\\(.*\\)[ \t]*$"))
2349 (org-match-string-no-properties 1)))
2350 ;; Get switches.
2351 (switches (org-match-string-no-properties 2))
2352 ;; Get parameters.
2353 (parameters (org-match-string-no-properties 3))
2354 ;; Switches analysis
2355 (number-lines
2356 (cond ((not switches) nil)
2357 ((string-match "-n\\>" switches) 'new)
2358 ((string-match "+n\\>" switches) 'continued)))
2359 (preserve-indent (or org-src-preserve-indentation
2360 (and switches
2361 (string-match "-i\\>" switches))))
2362 (label-fmt
2363 (and switches
2364 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
2365 (match-string 1 switches)))
2366 ;; Should labels be retained in (or stripped from)
2367 ;; src blocks?
2368 (retain-labels
2369 (or (not switches)
2370 (not (string-match "-r\\>" switches))
2371 (and number-lines (string-match "-k\\>" switches))))
2372 ;; What should code-references use - labels or
2373 ;; line-numbers?
2374 (use-labels
2375 (or (not switches)
2376 (and retain-labels
2377 (not (string-match "-k\\>" switches)))))
2378 ;; Indentation.
2379 (block-ind (progn (skip-chars-forward " \t") (current-column)))
2380 ;; Get visibility status.
2381 (hidden (progn (forward-line) (org-invisible-p2)))
2382 ;; Retrieve code.
2383 (value (org-element--remove-indentation
2384 (org-unescape-code-in-string
2385 (buffer-substring-no-properties
2386 (point) contents-end))
2387 (and preserve-indent block-ind)))
2388 (pos-before-blank (progn (goto-char contents-end)
2389 (forward-line)
2390 (point)))
2391 ;; Get position after ending blank lines.
2392 (end (progn (skip-chars-forward " \r\t\n" limit)
2393 (if (eobp) (point) (line-beginning-position)))))
2394 (list 'src-block
2395 (nconc
2396 (list :language language
2397 :switches (and (org-string-nw-p switches)
2398 (org-trim switches))
2399 :parameters (and (org-string-nw-p parameters)
2400 (org-trim parameters))
2401 :begin begin
2402 :end end
2403 :number-lines number-lines
2404 :preserve-indent preserve-indent
2405 :retain-labels retain-labels
2406 :use-labels use-labels
2407 :label-fmt label-fmt
2408 :hiddenp hidden
2409 :value value
2410 :post-blank (count-lines pos-before-blank end)
2411 :post-affiliated post-affiliated)
2412 (cdr affiliated)))))))))
2414 (defun org-element-src-block-interpreter (src-block contents)
2415 "Interpret SRC-BLOCK element as Org syntax.
2416 CONTENTS is nil."
2417 (let ((lang (org-element-property :language src-block))
2418 (switches (org-element-property :switches src-block))
2419 (params (org-element-property :parameters src-block))
2420 (value (let ((val (org-element-property :value src-block)))
2421 (cond
2422 ((org-element-property :preserve-indent src-block) val)
2423 ((zerop org-edit-src-content-indentation) val)
2425 (let ((ind (make-string
2426 org-edit-src-content-indentation 32)))
2427 (replace-regexp-in-string
2428 "\\(^\\)[ \t]*\\S-" ind val nil nil 1)))))))
2429 (concat (format "#+BEGIN_SRC%s\n"
2430 (concat (and lang (concat " " lang))
2431 (and switches (concat " " switches))
2432 (and params (concat " " params))))
2433 (org-escape-code-in-string value)
2434 "#+END_SRC")))
2437 ;;;; Table
2439 (defun org-element-table-parser (limit affiliated)
2440 "Parse a table at point.
2442 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2443 the buffer position at the beginning of the first affiliated
2444 keyword and CDR is a plist of affiliated keywords along with
2445 their value.
2447 Return a list whose CAR is `table' and CDR is a plist containing
2448 `:begin', `:end', `:tblfm', `:type', `:contents-begin',
2449 `:contents-end', `:value', `:post-blank' and `:post-affiliated'
2450 keywords.
2452 Assume point is at the beginning of the table."
2453 (save-excursion
2454 (let* ((case-fold-search t)
2455 (table-begin (point))
2456 (type (if (org-at-table.el-p) 'table.el 'org))
2457 (begin (car affiliated))
2458 (table-end
2459 (if (re-search-forward org-table-any-border-regexp limit 'm)
2460 (goto-char (match-beginning 0))
2461 (point)))
2462 (tblfm (let (acc)
2463 (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
2464 (push (org-match-string-no-properties 1) acc)
2465 (forward-line))
2466 acc))
2467 (pos-before-blank (point))
2468 (end (progn (skip-chars-forward " \r\t\n" limit)
2469 (if (eobp) (point) (line-beginning-position)))))
2470 (list 'table
2471 (nconc
2472 (list :begin begin
2473 :end end
2474 :type type
2475 :tblfm tblfm
2476 ;; Only `org' tables have contents. `table.el' tables
2477 ;; use a `:value' property to store raw table as
2478 ;; a string.
2479 :contents-begin (and (eq type 'org) table-begin)
2480 :contents-end (and (eq type 'org) table-end)
2481 :value (and (eq type 'table.el)
2482 (buffer-substring-no-properties
2483 table-begin table-end))
2484 :post-blank (count-lines pos-before-blank end)
2485 :post-affiliated table-begin)
2486 (cdr affiliated))))))
2488 (defun org-element-table-interpreter (table contents)
2489 "Interpret TABLE element as Org syntax.
2490 CONTENTS is nil."
2491 (if (eq (org-element-property :type table) 'table.el)
2492 (org-remove-indentation (org-element-property :value table))
2493 (concat (with-temp-buffer (insert contents)
2494 (org-table-align)
2495 (buffer-string))
2496 (mapconcat (lambda (fm) (concat "#+TBLFM: " fm))
2497 (reverse (org-element-property :tblfm table))
2498 "\n"))))
2501 ;;;; Table Row
2503 (defun org-element-table-row-parser (limit)
2504 "Parse table row at point.
2506 LIMIT bounds the search.
2508 Return a list whose CAR is `table-row' and CDR is a plist
2509 containing `:begin', `:end', `:contents-begin', `:contents-end',
2510 `:type' and `:post-blank' keywords."
2511 (save-excursion
2512 (let* ((type (if (looking-at "^[ \t]*|-") 'rule 'standard))
2513 (begin (point))
2514 ;; A table rule has no contents. In that case, ensure
2515 ;; CONTENTS-BEGIN matches CONTENTS-END.
2516 (contents-begin (and (eq type 'standard)
2517 (search-forward "|")
2518 (point)))
2519 (contents-end (and (eq type 'standard)
2520 (progn
2521 (end-of-line)
2522 (skip-chars-backward " \t")
2523 (point))))
2524 (end (progn (forward-line) (point))))
2525 (list 'table-row
2526 (list :type type
2527 :begin begin
2528 :end end
2529 :contents-begin contents-begin
2530 :contents-end contents-end
2531 :post-blank 0)))))
2533 (defun org-element-table-row-interpreter (table-row contents)
2534 "Interpret TABLE-ROW element as Org syntax.
2535 CONTENTS is the contents of the table row."
2536 (if (eq (org-element-property :type table-row) 'rule) "|-"
2537 (concat "| " contents)))
2540 ;;;; Verse Block
2542 (defun org-element-verse-block-parser (limit affiliated)
2543 "Parse a verse block.
2545 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2546 the buffer position at the beginning of the first affiliated
2547 keyword and CDR is a plist of affiliated keywords along with
2548 their value.
2550 Return a list whose CAR is `verse-block' and CDR is a plist
2551 containing `:begin', `:end', `:contents-begin', `:contents-end',
2552 `:hiddenp', `:post-blank' and `:post-affiliated' keywords.
2554 Assume point is at beginning of the block."
2555 (let ((case-fold-search t))
2556 (if (not (save-excursion
2557 (re-search-forward "^[ \t]*#\\+END_VERSE[ \t]*$" limit t)))
2558 ;; Incomplete block: parse it as a paragraph.
2559 (org-element-paragraph-parser limit affiliated)
2560 (let ((contents-end (match-beginning 0)))
2561 (save-excursion
2562 (let* ((begin (car affiliated))
2563 (post-affiliated (point))
2564 (hidden (progn (forward-line) (org-invisible-p2)))
2565 (contents-begin (point))
2566 (pos-before-blank (progn (goto-char contents-end)
2567 (forward-line)
2568 (point)))
2569 (end (progn (skip-chars-forward " \r\t\n" limit)
2570 (if (eobp) (point) (line-beginning-position)))))
2571 (list 'verse-block
2572 (nconc
2573 (list :begin begin
2574 :end end
2575 :contents-begin contents-begin
2576 :contents-end contents-end
2577 :hiddenp hidden
2578 :post-blank (count-lines pos-before-blank end)
2579 :post-affiliated post-affiliated)
2580 (cdr affiliated)))))))))
2582 (defun org-element-verse-block-interpreter (verse-block contents)
2583 "Interpret VERSE-BLOCK element as Org syntax.
2584 CONTENTS is verse block contents."
2585 (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents))
2589 ;;; Objects
2591 ;; Unlike to elements, interstices can be found between objects.
2592 ;; That's why, along with the parser, successor functions are provided
2593 ;; for each object. Some objects share the same successor (e.g.,
2594 ;; `code' and `verbatim' objects).
2596 ;; A successor must accept a single argument bounding the search. It
2597 ;; will return either a cons cell whose CAR is the object's type, as
2598 ;; a symbol, and CDR the position of its next occurrence, or nil.
2600 ;; Successors follow the naming convention:
2601 ;; org-element-NAME-successor, where NAME is the name of the
2602 ;; successor, as defined in `org-element-all-successors'.
2604 ;; Some object types (e.g., `italic') are recursive. Restrictions on
2605 ;; object types they can contain will be specified in
2606 ;; `org-element-object-restrictions'.
2608 ;; Adding a new type of object is simple. Implement a successor,
2609 ;; a parser, and an interpreter for it, all following the naming
2610 ;; convention. Register type in `org-element-all-objects' and
2611 ;; successor in `org-element-all-successors'. Maybe tweak
2612 ;; restrictions about it, and that's it.
2615 ;;;; Bold
2617 (defun org-element-bold-parser ()
2618 "Parse bold object at point.
2620 Return a list whose CAR is `bold' and CDR is a plist with
2621 `:begin', `:end', `:contents-begin' and `:contents-end' and
2622 `:post-blank' keywords.
2624 Assume point is at the first star marker."
2625 (save-excursion
2626 (unless (bolp) (backward-char 1))
2627 (looking-at org-emph-re)
2628 (let ((begin (match-beginning 2))
2629 (contents-begin (match-beginning 4))
2630 (contents-end (match-end 4))
2631 (post-blank (progn (goto-char (match-end 2))
2632 (skip-chars-forward " \t")))
2633 (end (point)))
2634 (list 'bold
2635 (list :begin begin
2636 :end end
2637 :contents-begin contents-begin
2638 :contents-end contents-end
2639 :post-blank post-blank)))))
2641 (defun org-element-bold-interpreter (bold contents)
2642 "Interpret BOLD object as Org syntax.
2643 CONTENTS is the contents of the object."
2644 (format "*%s*" contents))
2646 (defun org-element-text-markup-successor ()
2647 "Search for the next text-markup object.
2649 Return value is a cons cell whose CAR is a symbol among `bold',
2650 `italic', `underline', `strike-through', `code' and `verbatim'
2651 and CDR is beginning position."
2652 (save-excursion
2653 (unless (bolp) (backward-char))
2654 (when (re-search-forward org-emph-re nil t)
2655 (let ((marker (match-string 3)))
2656 (cons (cond
2657 ((equal marker "*") 'bold)
2658 ((equal marker "/") 'italic)
2659 ((equal marker "_") 'underline)
2660 ((equal marker "+") 'strike-through)
2661 ((equal marker "~") 'code)
2662 ((equal marker "=") 'verbatim)
2663 (t (error "Unknown marker at %d" (match-beginning 3))))
2664 (match-beginning 2))))))
2667 ;;;; Code
2669 (defun org-element-code-parser ()
2670 "Parse code object at point.
2672 Return a list whose CAR is `code' and CDR is a plist with
2673 `:value', `:begin', `:end' and `:post-blank' keywords.
2675 Assume point is at the first tilde marker."
2676 (save-excursion
2677 (unless (bolp) (backward-char 1))
2678 (looking-at org-emph-re)
2679 (let ((begin (match-beginning 2))
2680 (value (org-match-string-no-properties 4))
2681 (post-blank (progn (goto-char (match-end 2))
2682 (skip-chars-forward " \t")))
2683 (end (point)))
2684 (list 'code
2685 (list :value value
2686 :begin begin
2687 :end end
2688 :post-blank post-blank)))))
2690 (defun org-element-code-interpreter (code contents)
2691 "Interpret CODE object as Org syntax.
2692 CONTENTS is nil."
2693 (format "~%s~" (org-element-property :value code)))
2696 ;;;; Entity
2698 (defun org-element-entity-parser ()
2699 "Parse entity at point.
2701 Return a list whose CAR is `entity' and CDR a plist with
2702 `:begin', `:end', `:latex', `:latex-math-p', `:html', `:latin1',
2703 `:utf-8', `:ascii', `:use-brackets-p' and `:post-blank' as
2704 keywords.
2706 Assume point is at the beginning of the entity."
2707 (save-excursion
2708 (looking-at "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)")
2709 (let* ((value (org-entity-get (match-string 1)))
2710 (begin (match-beginning 0))
2711 (bracketsp (string= (match-string 2) "{}"))
2712 (post-blank (progn (goto-char (match-end 1))
2713 (when bracketsp (forward-char 2))
2714 (skip-chars-forward " \t")))
2715 (end (point)))
2716 (list 'entity
2717 (list :name (car value)
2718 :latex (nth 1 value)
2719 :latex-math-p (nth 2 value)
2720 :html (nth 3 value)
2721 :ascii (nth 4 value)
2722 :latin1 (nth 5 value)
2723 :utf-8 (nth 6 value)
2724 :begin begin
2725 :end end
2726 :use-brackets-p bracketsp
2727 :post-blank post-blank)))))
2729 (defun org-element-entity-interpreter (entity contents)
2730 "Interpret ENTITY object as Org syntax.
2731 CONTENTS is nil."
2732 (concat "\\"
2733 (org-element-property :name entity)
2734 (when (org-element-property :use-brackets-p entity) "{}")))
2736 (defun org-element-latex-or-entity-successor ()
2737 "Search for the next latex-fragment or entity object.
2739 Return value is a cons cell whose CAR is `entity' or
2740 `latex-fragment' and CDR is beginning position."
2741 (save-excursion
2742 (unless (bolp) (backward-char))
2743 (let ((matchers (cdr org-latex-regexps))
2744 ;; ENTITY-RE matches both LaTeX commands and Org entities.
2745 (entity-re
2746 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))
2747 (when (re-search-forward
2748 (concat (mapconcat #'cadr matchers "\\|") "\\|" entity-re) nil t)
2749 (goto-char (match-beginning 0))
2750 (if (looking-at entity-re)
2751 ;; Determine if it's a real entity or a LaTeX command.
2752 (cons (if (org-entity-get (match-string 1)) 'entity 'latex-fragment)
2753 (match-beginning 0))
2754 ;; No entity nor command: point is at a LaTeX fragment.
2755 ;; Determine its type to get the correct beginning position.
2756 (cons 'latex-fragment
2757 (catch 'return
2758 (dolist (e matchers)
2759 (when (looking-at (nth 1 e))
2760 (throw 'return (match-beginning (nth 2 e)))))
2761 (point))))))))
2764 ;;;; Export Snippet
2766 (defun org-element-export-snippet-parser ()
2767 "Parse export snippet at point.
2769 Return a list whose CAR is `export-snippet' and CDR a plist with
2770 `:begin', `:end', `:back-end', `:value' and `:post-blank' as
2771 keywords.
2773 Assume point is at the beginning of the snippet."
2774 (save-excursion
2775 (re-search-forward "@@\\([-A-Za-z0-9]+\\):" nil t)
2776 (let* ((begin (match-beginning 0))
2777 (back-end (org-match-string-no-properties 1))
2778 (value (buffer-substring-no-properties
2779 (point)
2780 (progn (re-search-forward "@@" nil t) (match-beginning 0))))
2781 (post-blank (skip-chars-forward " \t"))
2782 (end (point)))
2783 (list 'export-snippet
2784 (list :back-end back-end
2785 :value value
2786 :begin begin
2787 :end end
2788 :post-blank post-blank)))))
2790 (defun org-element-export-snippet-interpreter (export-snippet contents)
2791 "Interpret EXPORT-SNIPPET object as Org syntax.
2792 CONTENTS is nil."
2793 (format "@@%s:%s@@"
2794 (org-element-property :back-end export-snippet)
2795 (org-element-property :value export-snippet)))
2797 (defun org-element-export-snippet-successor ()
2798 "Search for the next export-snippet object.
2800 Return value is a cons cell whose CAR is `export-snippet' and CDR
2801 its beginning position."
2802 (save-excursion
2803 (let (beg)
2804 (when (and (re-search-forward "@@[-A-Za-z0-9]+:" nil t)
2805 (setq beg (match-beginning 0))
2806 (search-forward "@@" nil t))
2807 (cons 'export-snippet beg)))))
2810 ;;;; Footnote Reference
2812 (defun org-element-footnote-reference-parser ()
2813 "Parse footnote reference at point.
2815 Return a list whose CAR is `footnote-reference' and CDR a plist
2816 with `:label', `:type', `:inline-definition', `:begin', `:end'
2817 and `:post-blank' as keywords."
2818 (save-excursion
2819 (looking-at org-footnote-re)
2820 (let* ((begin (point))
2821 (label (or (org-match-string-no-properties 2)
2822 (org-match-string-no-properties 3)
2823 (and (match-string 1)
2824 (concat "fn:" (org-match-string-no-properties 1)))))
2825 (type (if (or (not label) (match-string 1)) 'inline 'standard))
2826 (inner-begin (match-end 0))
2827 (inner-end
2828 (let ((count 1))
2829 (forward-char)
2830 (while (and (> count 0) (re-search-forward "[][]" nil t))
2831 (if (equal (match-string 0) "[") (incf count) (decf count)))
2832 (1- (point))))
2833 (post-blank (progn (goto-char (1+ inner-end))
2834 (skip-chars-forward " \t")))
2835 (end (point))
2836 (footnote-reference
2837 (list 'footnote-reference
2838 (list :label label
2839 :type type
2840 :begin begin
2841 :end end
2842 :post-blank post-blank))))
2843 (org-element-put-property
2844 footnote-reference :inline-definition
2845 (and (eq type 'inline)
2846 (org-element-parse-secondary-string
2847 (buffer-substring inner-begin inner-end)
2848 (org-element-restriction 'footnote-reference)
2849 footnote-reference))))))
2851 (defun org-element-footnote-reference-interpreter (footnote-reference contents)
2852 "Interpret FOOTNOTE-REFERENCE object as Org syntax.
2853 CONTENTS is nil."
2854 (let ((label (or (org-element-property :label footnote-reference) "fn:"))
2855 (def
2856 (let ((inline-def
2857 (org-element-property :inline-definition footnote-reference)))
2858 (if (not inline-def) ""
2859 (concat ":" (org-element-interpret-data inline-def))))))
2860 (format "[%s]" (concat label def))))
2862 (defun org-element-footnote-reference-successor ()
2863 "Search for the next footnote-reference object.
2865 Return value is a cons cell whose CAR is `footnote-reference' and
2866 CDR is beginning position."
2867 (save-excursion
2868 (catch 'exit
2869 (while (re-search-forward org-footnote-re nil t)
2870 (save-excursion
2871 (let ((beg (match-beginning 0))
2872 (count 1))
2873 (backward-char)
2874 (while (re-search-forward "[][]" nil t)
2875 (if (equal (match-string 0) "[") (incf count) (decf count))
2876 (when (zerop count)
2877 (throw 'exit (cons 'footnote-reference beg))))))))))
2880 ;;;; Inline Babel Call
2882 (defun org-element-inline-babel-call-parser ()
2883 "Parse inline babel call at point.
2885 Return a list whose CAR is `inline-babel-call' and CDR a plist
2886 with `:begin', `:end', `:info' and `:post-blank' as keywords.
2888 Assume point is at the beginning of the babel call."
2889 (save-excursion
2890 (unless (bolp) (backward-char))
2891 (looking-at org-babel-inline-lob-one-liner-regexp)
2892 (let ((info (save-match-data (org-babel-lob-get-info)))
2893 (begin (match-end 1))
2894 (post-blank (progn (goto-char (match-end 0))
2895 (skip-chars-forward " \t")))
2896 (end (point)))
2897 (list 'inline-babel-call
2898 (list :begin begin
2899 :end end
2900 :info info
2901 :post-blank post-blank)))))
2903 (defun org-element-inline-babel-call-interpreter (inline-babel-call contents)
2904 "Interpret INLINE-BABEL-CALL object as Org syntax.
2905 CONTENTS is nil."
2906 (let* ((babel-info (org-element-property :info inline-babel-call))
2907 (main-source (car babel-info))
2908 (post-options (nth 1 babel-info)))
2909 (concat "call_"
2910 (if (string-match "\\[\\(\\[.*?\\]\\)\\]" main-source)
2911 ;; Remove redundant square brackets.
2912 (replace-match
2913 (match-string 1 main-source) nil nil main-source)
2914 main-source)
2915 (and post-options (format "[%s]" post-options)))))
2917 (defun org-element-inline-babel-call-successor ()
2918 "Search for the next inline-babel-call object.
2920 Return value is a cons cell whose CAR is `inline-babel-call' and
2921 CDR is beginning position."
2922 (save-excursion
2923 (when (re-search-forward org-babel-inline-lob-one-liner-regexp nil t)
2924 (cons 'inline-babel-call (match-end 1)))))
2927 ;;;; Inline Src Block
2929 (defun org-element-inline-src-block-parser ()
2930 "Parse inline source block at point.
2932 Return a list whose CAR is `inline-src-block' and CDR a plist
2933 with `:begin', `:end', `:language', `:value', `:parameters' and
2934 `:post-blank' as keywords.
2936 Assume point is at the beginning of the inline src block."
2937 (save-excursion
2938 (unless (bolp) (backward-char))
2939 (looking-at org-babel-inline-src-block-regexp)
2940 (let ((begin (match-beginning 1))
2941 (language (org-match-string-no-properties 2))
2942 (parameters (org-match-string-no-properties 4))
2943 (value (org-match-string-no-properties 5))
2944 (post-blank (progn (goto-char (match-end 0))
2945 (skip-chars-forward " \t")))
2946 (end (point)))
2947 (list 'inline-src-block
2948 (list :language language
2949 :value value
2950 :parameters parameters
2951 :begin begin
2952 :end end
2953 :post-blank post-blank)))))
2955 (defun org-element-inline-src-block-interpreter (inline-src-block contents)
2956 "Interpret INLINE-SRC-BLOCK object as Org syntax.
2957 CONTENTS is nil."
2958 (let ((language (org-element-property :language inline-src-block))
2959 (arguments (org-element-property :parameters inline-src-block))
2960 (body (org-element-property :value inline-src-block)))
2961 (format "src_%s%s{%s}"
2962 language
2963 (if arguments (format "[%s]" arguments) "")
2964 body)))
2966 (defun org-element-inline-src-block-successor ()
2967 "Search for the next inline-babel-call element.
2969 Return value is a cons cell whose CAR is `inline-babel-call' and
2970 CDR is beginning position."
2971 (save-excursion
2972 (unless (bolp) (backward-char))
2973 (when (re-search-forward org-babel-inline-src-block-regexp nil t)
2974 (cons 'inline-src-block (match-beginning 1)))))
2976 ;;;; Italic
2978 (defun org-element-italic-parser ()
2979 "Parse italic object at point.
2981 Return a list whose CAR is `italic' and CDR is a plist with
2982 `:begin', `:end', `:contents-begin' and `:contents-end' and
2983 `:post-blank' keywords.
2985 Assume point is at the first slash marker."
2986 (save-excursion
2987 (unless (bolp) (backward-char 1))
2988 (looking-at org-emph-re)
2989 (let ((begin (match-beginning 2))
2990 (contents-begin (match-beginning 4))
2991 (contents-end (match-end 4))
2992 (post-blank (progn (goto-char (match-end 2))
2993 (skip-chars-forward " \t")))
2994 (end (point)))
2995 (list 'italic
2996 (list :begin begin
2997 :end end
2998 :contents-begin contents-begin
2999 :contents-end contents-end
3000 :post-blank post-blank)))))
3002 (defun org-element-italic-interpreter (italic contents)
3003 "Interpret ITALIC object as Org syntax.
3004 CONTENTS is the contents of the object."
3005 (format "/%s/" contents))
3008 ;;;; Latex Fragment
3010 (defun org-element-latex-fragment-parser ()
3011 "Parse LaTeX fragment at point.
3013 Return a list whose CAR is `latex-fragment' and CDR a plist with
3014 `:value', `:begin', `:end', and `:post-blank' as keywords.
3016 Assume point is at the beginning of the LaTeX fragment."
3017 (save-excursion
3018 (let* ((begin (point))
3019 (substring-match
3020 (catch 'exit
3021 (dolist (e (cdr org-latex-regexps))
3022 (let ((latex-regexp (nth 1 e)))
3023 (when (or (looking-at latex-regexp)
3024 (and (not (bobp))
3025 (save-excursion
3026 (backward-char)
3027 (looking-at latex-regexp))))
3028 (throw 'exit (nth 2 e)))))
3029 ;; None found: it's a macro.
3030 (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")
3032 (value (org-match-string-no-properties substring-match))
3033 (post-blank (progn (goto-char (match-end substring-match))
3034 (skip-chars-forward " \t")))
3035 (end (point)))
3036 (list 'latex-fragment
3037 (list :value value
3038 :begin begin
3039 :end end
3040 :post-blank post-blank)))))
3042 (defun org-element-latex-fragment-interpreter (latex-fragment contents)
3043 "Interpret LATEX-FRAGMENT object as Org syntax.
3044 CONTENTS is nil."
3045 (org-element-property :value latex-fragment))
3047 ;;;; Line Break
3049 (defun org-element-line-break-parser ()
3050 "Parse line break at point.
3052 Return a list whose CAR is `line-break', and CDR a plist with
3053 `:begin', `:end' and `:post-blank' keywords.
3055 Assume point is at the beginning of the line break."
3056 (list 'line-break
3057 (list :begin (point)
3058 :end (progn (forward-line) (point))
3059 :post-blank 0)))
3061 (defun org-element-line-break-interpreter (line-break contents)
3062 "Interpret LINE-BREAK object as Org syntax.
3063 CONTENTS is nil."
3064 "\\\\\n")
3066 (defun org-element-line-break-successor ()
3067 "Search for the next line-break object.
3069 Return value is a cons cell whose CAR is `line-break' and CDR is
3070 beginning position."
3071 (save-excursion
3072 (let ((beg (and (re-search-forward "[^\\\\]\\(\\\\\\\\\\)[ \t]*$" nil t)
3073 (goto-char (match-beginning 1)))))
3074 ;; A line break can only happen on a non-empty line.
3075 (when (and beg (re-search-backward "\\S-" (point-at-bol) t))
3076 (cons 'line-break beg)))))
3079 ;;;; Link
3081 (defun org-element-link-parser ()
3082 "Parse link at point.
3084 Return a list whose CAR is `link' and CDR a plist with `:type',
3085 `:path', `:raw-link', `:application', `:search-option', `:begin',
3086 `:end', `:contents-begin', `:contents-end' and `:post-blank' as
3087 keywords.
3089 Assume point is at the beginning of the link."
3090 (save-excursion
3091 (let ((begin (point))
3092 end contents-begin contents-end link-end post-blank path type
3093 raw-link link search-option application)
3094 (cond
3095 ;; Type 1: Text targeted from a radio target.
3096 ((and org-target-link-regexp (looking-at org-target-link-regexp))
3097 (setq type "radio"
3098 link-end (match-end 0)
3099 path (org-match-string-no-properties 0)
3100 contents-begin (match-beginning 0)
3101 contents-end (match-end 0)))
3102 ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
3103 ((looking-at org-bracket-link-regexp)
3104 (setq contents-begin (match-beginning 3)
3105 contents-end (match-end 3)
3106 link-end (match-end 0)
3107 ;; RAW-LINK is the original link. Expand any
3108 ;; abbreviation in it.
3109 raw-link (org-translate-link
3110 (org-link-expand-abbrev
3111 (org-match-string-no-properties 1))))
3112 ;; Determine TYPE of link and set PATH accordingly.
3113 (cond
3114 ;; File type.
3115 ((or (file-name-absolute-p raw-link)
3116 (string-match "^\\.\\.?/" raw-link))
3117 (setq type "file" path raw-link))
3118 ;; Explicit type (http, irc, bbdb...). See `org-link-types'.
3119 ((string-match org-link-re-with-space3 raw-link)
3120 (setq type (match-string 1 raw-link) path (match-string 2 raw-link)))
3121 ;; Id type: PATH is the id.
3122 ((string-match "^id:\\([-a-f0-9]+\\)" raw-link)
3123 (setq type "id" path (match-string 1 raw-link)))
3124 ;; Code-ref type: PATH is the name of the reference.
3125 ((string-match "^(\\(.*\\))$" raw-link)
3126 (setq type "coderef" path (match-string 1 raw-link)))
3127 ;; Custom-id type: PATH is the name of the custom id.
3128 ((= (aref raw-link 0) ?#)
3129 (setq type "custom-id" path (substring raw-link 1)))
3130 ;; Fuzzy type: Internal link either matches a target, an
3131 ;; headline name or nothing. PATH is the target or
3132 ;; headline's name.
3133 (t (setq type "fuzzy" path raw-link))))
3134 ;; Type 3: Plain link, e.g., http://orgmode.org
3135 ((looking-at org-plain-link-re)
3136 (setq raw-link (org-match-string-no-properties 0)
3137 type (org-match-string-no-properties 1)
3138 link-end (match-end 0)
3139 path (org-match-string-no-properties 2)))
3140 ;; Type 4: Angular link, e.g., <http://orgmode.org>
3141 ((looking-at org-angle-link-re)
3142 (setq raw-link (buffer-substring-no-properties
3143 (match-beginning 1) (match-end 2))
3144 type (org-match-string-no-properties 1)
3145 link-end (match-end 0)
3146 path (org-match-string-no-properties 2))))
3147 ;; In any case, deduce end point after trailing white space from
3148 ;; LINK-END variable.
3149 (setq post-blank (progn (goto-char link-end) (skip-chars-forward " \t"))
3150 end (point))
3151 ;; Extract search option and opening application out of
3152 ;; "file"-type links.
3153 (when (member type org-element-link-type-is-file)
3154 ;; Application.
3155 (cond ((string-match "^file\\+\\(.*\\)$" type)
3156 (setq application (match-string 1 type)))
3157 ((not (string-match "^file" type))
3158 (setq application type)))
3159 ;; Extract search option from PATH.
3160 (when (string-match "::\\(.*\\)$" path)
3161 (setq search-option (match-string 1 path)
3162 path (replace-match "" nil nil path)))
3163 ;; Make sure TYPE always reports "file".
3164 (setq type "file"))
3165 (list 'link
3166 (list :type type
3167 :path path
3168 :raw-link (or raw-link path)
3169 :application application
3170 :search-option search-option
3171 :begin begin
3172 :end end
3173 :contents-begin contents-begin
3174 :contents-end contents-end
3175 :post-blank post-blank)))))
3177 (defun org-element-link-interpreter (link contents)
3178 "Interpret LINK object as Org syntax.
3179 CONTENTS is the contents of the object, or nil."
3180 (let ((type (org-element-property :type link))
3181 (raw-link (org-element-property :raw-link link)))
3182 (if (string= type "radio") raw-link
3183 (format "[[%s]%s]"
3184 raw-link
3185 (if contents (format "[%s]" contents) "")))))
3187 (defun org-element-link-successor ()
3188 "Search for the next link object.
3190 Return value is a cons cell whose CAR is `link' and CDR is
3191 beginning position."
3192 (save-excursion
3193 (let ((link-regexp
3194 (if (not org-target-link-regexp) org-any-link-re
3195 (concat org-any-link-re "\\|" org-target-link-regexp))))
3196 (when (re-search-forward link-regexp nil t)
3197 (cons 'link (match-beginning 0))))))
3199 (defun org-element-plain-link-successor ()
3200 "Search for the next plain link object.
3202 Return value is a cons cell whose CAR is `link' and CDR is
3203 beginning position."
3204 (and (save-excursion (re-search-forward org-plain-link-re nil t))
3205 (cons 'link (match-beginning 0))))
3208 ;;;; Macro
3210 (defun org-element-macro-parser ()
3211 "Parse macro at point.
3213 Return a list whose CAR is `macro' and CDR a plist with `:key',
3214 `:args', `:begin', `:end', `:value' and `:post-blank' as
3215 keywords.
3217 Assume point is at the macro."
3218 (save-excursion
3219 (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
3220 (let ((begin (point))
3221 (key (downcase (org-match-string-no-properties 1)))
3222 (value (org-match-string-no-properties 0))
3223 (post-blank (progn (goto-char (match-end 0))
3224 (skip-chars-forward " \t")))
3225 (end (point))
3226 (args (let ((args (org-match-string-no-properties 3)))
3227 (when args
3228 ;; Do not use `org-split-string' since empty
3229 ;; strings are meaningful here.
3230 (split-string
3231 (replace-regexp-in-string
3232 "\\(\\\\*\\)\\(,\\)"
3233 (lambda (str)
3234 (let ((len (length (match-string 1 str))))
3235 (concat (make-string (/ len 2) ?\\)
3236 (if (zerop (mod len 2)) "\000" ","))))
3237 args nil t)
3238 "\000")))))
3239 (list 'macro
3240 (list :key key
3241 :value value
3242 :args args
3243 :begin begin
3244 :end end
3245 :post-blank post-blank)))))
3247 (defun org-element-macro-interpreter (macro contents)
3248 "Interpret MACRO object as Org syntax.
3249 CONTENTS is nil."
3250 (org-element-property :value macro))
3252 (defun org-element-macro-successor ()
3253 "Search for the next macro object.
3255 Return value is cons cell whose CAR is `macro' and CDR is
3256 beginning position."
3257 (save-excursion
3258 (when (re-search-forward
3259 "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}"
3260 nil t)
3261 (cons 'macro (match-beginning 0)))))
3264 ;;;; Radio-target
3266 (defun org-element-radio-target-parser ()
3267 "Parse radio target at point.
3269 Return a list whose CAR is `radio-target' and CDR a plist with
3270 `:begin', `:end', `:contents-begin', `:contents-end', `:value'
3271 and `:post-blank' as keywords.
3273 Assume point is at the radio target."
3274 (save-excursion
3275 (looking-at org-radio-target-regexp)
3276 (let ((begin (point))
3277 (contents-begin (match-beginning 1))
3278 (contents-end (match-end 1))
3279 (value (org-match-string-no-properties 1))
3280 (post-blank (progn (goto-char (match-end 0))
3281 (skip-chars-forward " \t")))
3282 (end (point)))
3283 (list 'radio-target
3284 (list :begin begin
3285 :end end
3286 :contents-begin contents-begin
3287 :contents-end contents-end
3288 :post-blank post-blank
3289 :value value)))))
3291 (defun org-element-radio-target-interpreter (target contents)
3292 "Interpret TARGET object as Org syntax.
3293 CONTENTS is the contents of the object."
3294 (concat "<<<" contents ">>>"))
3296 (defun org-element-radio-target-successor ()
3297 "Search for the next radio-target object.
3299 Return value is a cons cell whose CAR is `radio-target' and CDR
3300 is beginning position."
3301 (save-excursion
3302 (when (re-search-forward org-radio-target-regexp nil t)
3303 (cons 'radio-target (match-beginning 0)))))
3306 ;;;; Statistics Cookie
3308 (defun org-element-statistics-cookie-parser ()
3309 "Parse statistics cookie at point.
3311 Return a list whose CAR is `statistics-cookie', and CDR a plist
3312 with `:begin', `:end', `:value' and `:post-blank' keywords.
3314 Assume point is at the beginning of the statistics-cookie."
3315 (save-excursion
3316 (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
3317 (let* ((begin (point))
3318 (value (buffer-substring-no-properties
3319 (match-beginning 0) (match-end 0)))
3320 (post-blank (progn (goto-char (match-end 0))
3321 (skip-chars-forward " \t")))
3322 (end (point)))
3323 (list 'statistics-cookie
3324 (list :begin begin
3325 :end end
3326 :value value
3327 :post-blank post-blank)))))
3329 (defun org-element-statistics-cookie-interpreter (statistics-cookie contents)
3330 "Interpret STATISTICS-COOKIE object as Org syntax.
3331 CONTENTS is nil."
3332 (org-element-property :value statistics-cookie))
3334 (defun org-element-statistics-cookie-successor ()
3335 "Search for the next statistics cookie object.
3337 Return value is a cons cell whose CAR is `statistics-cookie' and
3338 CDR is beginning position."
3339 (save-excursion
3340 (when (re-search-forward "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]" nil t)
3341 (cons 'statistics-cookie (match-beginning 0)))))
3344 ;;;; Strike-Through
3346 (defun org-element-strike-through-parser ()
3347 "Parse strike-through object at point.
3349 Return a list whose CAR is `strike-through' and CDR is a plist
3350 with `:begin', `:end', `:contents-begin' and `:contents-end' and
3351 `:post-blank' keywords.
3353 Assume point is at the first plus sign marker."
3354 (save-excursion
3355 (unless (bolp) (backward-char 1))
3356 (looking-at org-emph-re)
3357 (let ((begin (match-beginning 2))
3358 (contents-begin (match-beginning 4))
3359 (contents-end (match-end 4))
3360 (post-blank (progn (goto-char (match-end 2))
3361 (skip-chars-forward " \t")))
3362 (end (point)))
3363 (list 'strike-through
3364 (list :begin begin
3365 :end end
3366 :contents-begin contents-begin
3367 :contents-end contents-end
3368 :post-blank post-blank)))))
3370 (defun org-element-strike-through-interpreter (strike-through contents)
3371 "Interpret STRIKE-THROUGH object as Org syntax.
3372 CONTENTS is the contents of the object."
3373 (format "+%s+" contents))
3376 ;;;; Subscript
3378 (defun org-element-subscript-parser ()
3379 "Parse subscript at point.
3381 Return a list whose CAR is `subscript' and CDR a plist with
3382 `:begin', `:end', `:contents-begin', `:contents-end',
3383 `:use-brackets-p' and `:post-blank' as keywords.
3385 Assume point is at the underscore."
3386 (save-excursion
3387 (unless (bolp) (backward-char))
3388 (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp)
3390 (not (looking-at org-match-substring-regexp))))
3391 (begin (match-beginning 2))
3392 (contents-begin (or (match-beginning 5)
3393 (match-beginning 3)))
3394 (contents-end (or (match-end 5) (match-end 3)))
3395 (post-blank (progn (goto-char (match-end 0))
3396 (skip-chars-forward " \t")))
3397 (end (point)))
3398 (list 'subscript
3399 (list :begin begin
3400 :end end
3401 :use-brackets-p bracketsp
3402 :contents-begin contents-begin
3403 :contents-end contents-end
3404 :post-blank post-blank)))))
3406 (defun org-element-subscript-interpreter (subscript contents)
3407 "Interpret SUBSCRIPT object as Org syntax.
3408 CONTENTS is the contents of the object."
3409 (format
3410 (if (org-element-property :use-brackets-p subscript) "_{%s}" "_%s")
3411 contents))
3413 (defun org-element-sub/superscript-successor ()
3414 "Search for the next sub/superscript object.
3416 Return value is a cons cell whose CAR is either `subscript' or
3417 `superscript' and CDR is beginning position."
3418 (save-excursion
3419 (unless (bolp) (backward-char))
3420 (when (re-search-forward org-match-substring-regexp nil t)
3421 (cons (if (string= (match-string 2) "_") 'subscript 'superscript)
3422 (match-beginning 2)))))
3425 ;;;; Superscript
3427 (defun org-element-superscript-parser ()
3428 "Parse superscript at point.
3430 Return a list whose CAR is `superscript' and CDR a plist with
3431 `:begin', `:end', `:contents-begin', `:contents-end',
3432 `:use-brackets-p' and `:post-blank' as keywords.
3434 Assume point is at the caret."
3435 (save-excursion
3436 (unless (bolp) (backward-char))
3437 (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp) t
3438 (not (looking-at org-match-substring-regexp))))
3439 (begin (match-beginning 2))
3440 (contents-begin (or (match-beginning 5)
3441 (match-beginning 3)))
3442 (contents-end (or (match-end 5) (match-end 3)))
3443 (post-blank (progn (goto-char (match-end 0))
3444 (skip-chars-forward " \t")))
3445 (end (point)))
3446 (list 'superscript
3447 (list :begin begin
3448 :end end
3449 :use-brackets-p bracketsp
3450 :contents-begin contents-begin
3451 :contents-end contents-end
3452 :post-blank post-blank)))))
3454 (defun org-element-superscript-interpreter (superscript contents)
3455 "Interpret SUPERSCRIPT object as Org syntax.
3456 CONTENTS is the contents of the object."
3457 (format
3458 (if (org-element-property :use-brackets-p superscript) "^{%s}" "^%s")
3459 contents))
3462 ;;;; Table Cell
3464 (defun org-element-table-cell-parser ()
3465 "Parse table cell at point.
3467 Return a list whose CAR is `table-cell' and CDR is a plist
3468 containing `:begin', `:end', `:contents-begin', `:contents-end'
3469 and `:post-blank' keywords."
3470 (looking-at "[ \t]*\\(.*?\\)[ \t]*|")
3471 (let* ((begin (match-beginning 0))
3472 (end (match-end 0))
3473 (contents-begin (match-beginning 1))
3474 (contents-end (match-end 1)))
3475 (list 'table-cell
3476 (list :begin begin
3477 :end end
3478 :contents-begin contents-begin
3479 :contents-end contents-end
3480 :post-blank 0))))
3482 (defun org-element-table-cell-interpreter (table-cell contents)
3483 "Interpret TABLE-CELL element as Org syntax.
3484 CONTENTS is the contents of the cell, or nil."
3485 (concat " " contents " |"))
3487 (defun org-element-table-cell-successor ()
3488 "Search for the next table-cell object.
3490 Return value is a cons cell whose CAR is `table-cell' and CDR is
3491 beginning position."
3492 (when (looking-at "[ \t]*.*?[ \t]*|") (cons 'table-cell (point))))
3495 ;;;; Target
3497 (defun org-element-target-parser ()
3498 "Parse target at point.
3500 Return a list whose CAR is `target' and CDR a plist with
3501 `:begin', `:end', `:value' and `:post-blank' as keywords.
3503 Assume point is at the target."
3504 (save-excursion
3505 (looking-at org-target-regexp)
3506 (let ((begin (point))
3507 (value (org-match-string-no-properties 1))
3508 (post-blank (progn (goto-char (match-end 0))
3509 (skip-chars-forward " \t")))
3510 (end (point)))
3511 (list 'target
3512 (list :begin begin
3513 :end end
3514 :value value
3515 :post-blank post-blank)))))
3517 (defun org-element-target-interpreter (target contents)
3518 "Interpret TARGET object as Org syntax.
3519 CONTENTS is nil."
3520 (format "<<%s>>" (org-element-property :value target)))
3522 (defun org-element-target-successor ()
3523 "Search for the next target object.
3525 Return value is a cons cell whose CAR is `target' and CDR is
3526 beginning position."
3527 (save-excursion
3528 (when (re-search-forward org-target-regexp nil t)
3529 (cons 'target (match-beginning 0)))))
3532 ;;;; Timestamp
3534 (defun org-element-timestamp-parser ()
3535 "Parse time stamp at point.
3537 Return a list whose CAR is `timestamp', and CDR a plist with
3538 `:type', `:raw-value', `:year-start', `:month-start',
3539 `:day-start', `:hour-start', `:minute-start', `:year-end',
3540 `:month-end', `:day-end', `:hour-end', `:minute-end',
3541 `:repeater-type', `:repeater-value', `:repeater-unit',
3542 `:warning-type', `:warning-value', `:warning-unit', `:begin',
3543 `:end', `:value' and `:post-blank' keywords.
3545 Assume point is at the beginning of the timestamp."
3546 (save-excursion
3547 (let* ((begin (point))
3548 (activep (eq (char-after) ?<))
3549 (raw-value
3550 (progn
3551 (looking-at "\\([<[]\\(%%\\)?.*?\\)[]>]\\(?:--\\([<[].*?[]>]\\)\\)?")
3552 (match-string-no-properties 0)))
3553 (date-start (match-string-no-properties 1))
3554 (date-end (match-string 3))
3555 (diaryp (match-beginning 2))
3556 (post-blank (progn (goto-char (match-end 0))
3557 (skip-chars-forward " \t")))
3558 (end (point))
3559 (time-range
3560 (and (not diaryp)
3561 (string-match
3562 "[012]?[0-9]:[0-5][0-9]\\(-\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)"
3563 date-start)
3564 (cons (string-to-number (match-string 2 date-start))
3565 (string-to-number (match-string 3 date-start)))))
3566 (type (cond (diaryp 'diary)
3567 ((and activep (or date-end time-range)) 'active-range)
3568 (activep 'active)
3569 ((or date-end time-range) 'inactive-range)
3570 (t 'inactive)))
3571 (repeater-props
3572 (and (not diaryp)
3573 (string-match "\\([.+]?\\+\\)\\([0-9]+\\)\\([hdwmy]\\)"
3574 raw-value)
3575 (list
3576 :repeater-type
3577 (let ((type (match-string 1 raw-value)))
3578 (cond ((equal "++" type) 'catch-up)
3579 ((equal ".+" type) 'restart)
3580 (t 'cumulate)))
3581 :repeater-value (string-to-number (match-string 2 raw-value))
3582 :repeater-unit
3583 (case (string-to-char (match-string 3 raw-value))
3584 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (t 'year)))))
3585 (warning-props
3586 (and (not diaryp)
3587 (string-match "\\(-\\)?-\\([0-9]+\\)\\([hdwmy]\\)" raw-value)
3588 (list
3589 :warning-type (if (match-string 1 raw-value) 'first 'all)
3590 :warning-value (string-to-number (match-string 2 raw-value))
3591 :warning-unit
3592 (case (string-to-char (match-string 3 raw-value))
3593 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (t 'year)))))
3594 year-start month-start day-start hour-start minute-start year-end
3595 month-end day-end hour-end minute-end)
3596 ;; Parse date-start.
3597 (unless diaryp
3598 (let ((date (org-parse-time-string date-start t)))
3599 (setq year-start (nth 5 date)
3600 month-start (nth 4 date)
3601 day-start (nth 3 date)
3602 hour-start (nth 2 date)
3603 minute-start (nth 1 date))))
3604 ;; Compute date-end. It can be provided directly in time-stamp,
3605 ;; or extracted from time range. Otherwise, it defaults to the
3606 ;; same values as date-start.
3607 (unless diaryp
3608 (let ((date (and date-end (org-parse-time-string date-end t))))
3609 (setq year-end (or (nth 5 date) year-start)
3610 month-end (or (nth 4 date) month-start)
3611 day-end (or (nth 3 date) day-start)
3612 hour-end (or (nth 2 date) (car time-range) hour-start)
3613 minute-end (or (nth 1 date) (cdr time-range) minute-start))))
3614 (list 'timestamp
3615 (nconc (list :type type
3616 :raw-value raw-value
3617 :year-start year-start
3618 :month-start month-start
3619 :day-start day-start
3620 :hour-start hour-start
3621 :minute-start minute-start
3622 :year-end year-end
3623 :month-end month-end
3624 :day-end day-end
3625 :hour-end hour-end
3626 :minute-end minute-end
3627 :begin begin
3628 :end end
3629 :post-blank post-blank)
3630 repeater-props
3631 warning-props)))))
3633 (defun org-element-timestamp-interpreter (timestamp contents)
3634 "Interpret TIMESTAMP object as Org syntax.
3635 CONTENTS is nil."
3636 ;; Use `:raw-value' if specified.
3637 (or (org-element-property :raw-value timestamp)
3638 ;; Otherwise, build timestamp string.
3639 (let* ((repeat-string
3640 (concat
3641 (case (org-element-property :repeater-type timestamp)
3642 (cumulate "+") (catch-up "++") (restart ".+"))
3643 (let ((val (org-element-property :repeater-value timestamp)))
3644 (and val (number-to-string val)))
3645 (case (org-element-property :repeater-unit timestamp)
3646 (hour "h") (day "d") (week "w") (month "m") (year "y"))))
3647 (warning-string
3648 (concat
3649 (case (org-element-property :warning-type timestamp)
3650 (first "--")
3651 (all "-"))
3652 (let ((val (org-element-property :warning-value timestamp)))
3653 (and val (number-to-string val)))
3654 (case (org-element-property :warning-unit timestamp)
3655 (hour "h") (day "d") (week "w") (month "m") (year "y"))))
3656 (build-ts-string
3657 ;; Build an Org timestamp string from TIME. ACTIVEP is
3658 ;; non-nil when time stamp is active. If WITH-TIME-P is
3659 ;; non-nil, add a time part. HOUR-END and MINUTE-END
3660 ;; specify a time range in the timestamp. REPEAT-STRING
3661 ;; is the repeater string, if any.
3662 (lambda (time activep &optional with-time-p hour-end minute-end)
3663 (let ((ts (format-time-string
3664 (funcall (if with-time-p 'cdr 'car)
3665 org-time-stamp-formats)
3666 time)))
3667 (when (and hour-end minute-end)
3668 (string-match "[012]?[0-9]:[0-5][0-9]" ts)
3669 (setq ts
3670 (replace-match
3671 (format "\\&-%02d:%02d" hour-end minute-end)
3672 nil nil ts)))
3673 (unless activep (setq ts (format "[%s]" (substring ts 1 -1))))
3674 (dolist (s (list repeat-string warning-string))
3675 (when (org-string-nw-p s)
3676 (setq ts (concat (substring ts 0 -1)
3679 (substring ts -1)))))
3680 ;; Return value.
3681 ts)))
3682 (type (org-element-property :type timestamp)))
3683 (case type
3684 ((active inactive)
3685 (let* ((minute-start (org-element-property :minute-start timestamp))
3686 (minute-end (org-element-property :minute-end timestamp))
3687 (hour-start (org-element-property :hour-start timestamp))
3688 (hour-end (org-element-property :hour-end timestamp))
3689 (time-range-p (and hour-start hour-end minute-start minute-end
3690 (or (/= hour-start hour-end)
3691 (/= minute-start minute-end)))))
3692 (funcall
3693 build-ts-string
3694 (encode-time 0
3695 (or minute-start 0)
3696 (or hour-start 0)
3697 (org-element-property :day-start timestamp)
3698 (org-element-property :month-start timestamp)
3699 (org-element-property :year-start timestamp))
3700 (eq type 'active)
3701 (and hour-start minute-start)
3702 (and time-range-p hour-end)
3703 (and time-range-p minute-end))))
3704 ((active-range inactive-range)
3705 (let ((minute-start (org-element-property :minute-start timestamp))
3706 (minute-end (org-element-property :minute-end timestamp))
3707 (hour-start (org-element-property :hour-start timestamp))
3708 (hour-end (org-element-property :hour-end timestamp)))
3709 (concat
3710 (funcall
3711 build-ts-string (encode-time
3713 (or minute-start 0)
3714 (or hour-start 0)
3715 (org-element-property :day-start timestamp)
3716 (org-element-property :month-start timestamp)
3717 (org-element-property :year-start timestamp))
3718 (eq type 'active-range)
3719 (and hour-start minute-start))
3720 "--"
3721 (funcall build-ts-string
3722 (encode-time 0
3723 (or minute-end 0)
3724 (or hour-end 0)
3725 (org-element-property :day-end timestamp)
3726 (org-element-property :month-end timestamp)
3727 (org-element-property :year-end timestamp))
3728 (eq type 'active-range)
3729 (and hour-end minute-end)))))))))
3731 (defun org-element-timestamp-successor ()
3732 "Search for the next timestamp object.
3734 Return value is a cons cell whose CAR is `timestamp' and CDR is
3735 beginning position."
3736 (save-excursion
3737 (when (re-search-forward
3738 (concat org-ts-regexp-both
3739 "\\|"
3740 "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
3741 "\\|"
3742 "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
3743 nil t)
3744 (cons 'timestamp (match-beginning 0)))))
3747 ;;;; Underline
3749 (defun org-element-underline-parser ()
3750 "Parse underline object at point.
3752 Return a list whose CAR is `underline' and CDR is a plist with
3753 `:begin', `:end', `:contents-begin' and `:contents-end' and
3754 `:post-blank' keywords.
3756 Assume point is at the first underscore marker."
3757 (save-excursion
3758 (unless (bolp) (backward-char 1))
3759 (looking-at org-emph-re)
3760 (let ((begin (match-beginning 2))
3761 (contents-begin (match-beginning 4))
3762 (contents-end (match-end 4))
3763 (post-blank (progn (goto-char (match-end 2))
3764 (skip-chars-forward " \t")))
3765 (end (point)))
3766 (list 'underline
3767 (list :begin begin
3768 :end end
3769 :contents-begin contents-begin
3770 :contents-end contents-end
3771 :post-blank post-blank)))))
3773 (defun org-element-underline-interpreter (underline contents)
3774 "Interpret UNDERLINE object as Org syntax.
3775 CONTENTS is the contents of the object."
3776 (format "_%s_" contents))
3779 ;;;; Verbatim
3781 (defun org-element-verbatim-parser ()
3782 "Parse verbatim object at point.
3784 Return a list whose CAR is `verbatim' and CDR is a plist with
3785 `:value', `:begin', `:end' and `:post-blank' keywords.
3787 Assume point is at the first equal sign marker."
3788 (save-excursion
3789 (unless (bolp) (backward-char 1))
3790 (looking-at org-emph-re)
3791 (let ((begin (match-beginning 2))
3792 (value (org-match-string-no-properties 4))
3793 (post-blank (progn (goto-char (match-end 2))
3794 (skip-chars-forward " \t")))
3795 (end (point)))
3796 (list 'verbatim
3797 (list :value value
3798 :begin begin
3799 :end end
3800 :post-blank post-blank)))))
3802 (defun org-element-verbatim-interpreter (verbatim contents)
3803 "Interpret VERBATIM object as Org syntax.
3804 CONTENTS is nil."
3805 (format "=%s=" (org-element-property :value verbatim)))
3809 ;;; Parsing Element Starting At Point
3811 ;; `org-element--current-element' is the core function of this section.
3812 ;; It returns the Lisp representation of the element starting at
3813 ;; point.
3815 ;; `org-element--current-element' makes use of special modes. They
3816 ;; are activated for fixed element chaining (e.g., `plain-list' >
3817 ;; `item') or fixed conditional element chaining (e.g., `headline' >
3818 ;; `section'). Special modes are: `first-section', `item',
3819 ;; `node-property', `quote-section', `section' and `table-row'.
3821 (defun org-element--current-element
3822 (limit &optional granularity special structure)
3823 "Parse the element starting at point.
3825 Return value is a list like (TYPE PROPS) where TYPE is the type
3826 of the element and PROPS a plist of properties associated to the
3827 element.
3829 Possible types are defined in `org-element-all-elements'.
3831 LIMIT bounds the search.
3833 Optional argument GRANULARITY determines the depth of the
3834 recursion. Allowed values are `headline', `greater-element',
3835 `element', `object' or nil. When it is broader than `object' (or
3836 nil), secondary values will not be parsed, since they only
3837 contain objects.
3839 Optional argument SPECIAL, when non-nil, can be either
3840 `first-section', `item', `node-property', `quote-section',
3841 `section', and `table-row'.
3843 If STRUCTURE isn't provided but SPECIAL is set to `item', it will
3844 be computed.
3846 This function assumes point is always at the beginning of the
3847 element it has to parse."
3848 (save-excursion
3849 (let ((case-fold-search t)
3850 ;; Determine if parsing depth allows for secondary strings
3851 ;; parsing. It only applies to elements referenced in
3852 ;; `org-element-secondary-value-alist'.
3853 (raw-secondary-p (and granularity (not (eq granularity 'object)))))
3854 (cond
3855 ;; Item.
3856 ((eq special 'item)
3857 (org-element-item-parser limit structure raw-secondary-p))
3858 ;; Table Row.
3859 ((eq special 'table-row) (org-element-table-row-parser limit))
3860 ;; Node Property.
3861 ((eq special 'node-property) (org-element-node-property-parser limit))
3862 ;; Headline.
3863 ((org-with-limited-levels (org-at-heading-p))
3864 (org-element-headline-parser limit raw-secondary-p))
3865 ;; Sections (must be checked after headline).
3866 ((eq special 'section) (org-element-section-parser limit))
3867 ((eq special 'quote-section) (org-element-quote-section-parser limit))
3868 ((eq special 'first-section)
3869 (org-element-section-parser
3870 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
3871 limit)))
3872 ;; When not at bol, point is at the beginning of an item or
3873 ;; a footnote definition: next item is always a paragraph.
3874 ((not (bolp)) (org-element-paragraph-parser limit (list (point))))
3875 ;; Planning and Clock.
3876 ((looking-at org-planning-or-clock-line-re)
3877 (if (equal (match-string 1) org-clock-string)
3878 (org-element-clock-parser limit)
3879 (org-element-planning-parser limit)))
3880 ;; Inlinetask.
3881 ((org-at-heading-p)
3882 (org-element-inlinetask-parser limit raw-secondary-p))
3883 ;; From there, elements can have affiliated keywords.
3884 (t (let ((affiliated (org-element--collect-affiliated-keywords limit)))
3885 (cond
3886 ;; Jumping over affiliated keywords put point off-limits.
3887 ;; Parse them as regular keywords.
3888 ((and (cdr affiliated) (>= (point) limit))
3889 (goto-char (car affiliated))
3890 (org-element-keyword-parser limit nil))
3891 ;; LaTeX Environment.
3892 ((looking-at
3893 "[ \t]*\\\\begin{[A-Za-z0-9*]+}\\(\\[.*?\\]\\|{.*?}\\)*[ \t]*$")
3894 (org-element-latex-environment-parser limit affiliated))
3895 ;; Drawer and Property Drawer.
3896 ((looking-at org-drawer-regexp)
3897 (if (equal (match-string 1) "PROPERTIES")
3898 (org-element-property-drawer-parser limit affiliated)
3899 (org-element-drawer-parser limit affiliated)))
3900 ;; Fixed Width
3901 ((looking-at "[ \t]*:\\( \\|$\\)")
3902 (org-element-fixed-width-parser limit affiliated))
3903 ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
3904 ;; Keywords.
3905 ((looking-at "[ \t]*#")
3906 (goto-char (match-end 0))
3907 (cond ((looking-at "\\(?: \\|$\\)")
3908 (beginning-of-line)
3909 (org-element-comment-parser limit affiliated))
3910 ((looking-at "\\+BEGIN_\\(\\S-+\\)")
3911 (beginning-of-line)
3912 (let ((parser (assoc (upcase (match-string 1))
3913 org-element-block-name-alist)))
3914 (if parser (funcall (cdr parser) limit affiliated)
3915 (org-element-special-block-parser limit affiliated))))
3916 ((looking-at "\\+CALL:")
3917 (beginning-of-line)
3918 (org-element-babel-call-parser limit affiliated))
3919 ((looking-at "\\+BEGIN:? ")
3920 (beginning-of-line)
3921 (org-element-dynamic-block-parser limit affiliated))
3922 ((looking-at "\\+\\S-+:")
3923 (beginning-of-line)
3924 (org-element-keyword-parser limit affiliated))
3926 (beginning-of-line)
3927 (org-element-paragraph-parser limit affiliated))))
3928 ;; Footnote Definition.
3929 ((looking-at org-footnote-definition-re)
3930 (org-element-footnote-definition-parser limit affiliated))
3931 ;; Horizontal Rule.
3932 ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
3933 (org-element-horizontal-rule-parser limit affiliated))
3934 ;; Diary Sexp.
3935 ((looking-at "%%(")
3936 (org-element-diary-sexp-parser limit affiliated))
3937 ;; Table.
3938 ((org-at-table-p t) (org-element-table-parser limit affiliated))
3939 ;; List.
3940 ((looking-at (org-item-re))
3941 (org-element-plain-list-parser
3942 limit affiliated
3943 (or structure (org-element--list-struct limit))))
3944 ;; Default element: Paragraph.
3945 (t (org-element-paragraph-parser limit affiliated)))))))))
3948 ;; Most elements can have affiliated keywords. When looking for an
3949 ;; element beginning, we want to move before them, as they belong to
3950 ;; that element, and, in the meantime, collect information they give
3951 ;; into appropriate properties. Hence the following function.
3953 (defun org-element--collect-affiliated-keywords (limit)
3954 "Collect affiliated keywords from point down to LIMIT.
3956 Return a list whose CAR is the position at the first of them and
3957 CDR a plist of keywords and values and move point to the
3958 beginning of the first line after them.
3960 As a special case, if element doesn't start at the beginning of
3961 the line (e.g., a paragraph starting an item), CAR is current
3962 position of point and CDR is nil."
3963 (if (not (bolp)) (list (point))
3964 (let ((case-fold-search t)
3965 (origin (point))
3966 ;; RESTRICT is the list of objects allowed in parsed
3967 ;; keywords value.
3968 (restrict (org-element-restriction 'keyword))
3969 output)
3970 (while (and (< (point) limit) (looking-at org-element--affiliated-re))
3971 (let* ((raw-kwd (upcase (match-string 1)))
3972 ;; Apply translation to RAW-KWD. From there, KWD is
3973 ;; the official keyword.
3974 (kwd (or (cdr (assoc raw-kwd
3975 org-element-keyword-translation-alist))
3976 raw-kwd))
3977 ;; Find main value for any keyword.
3978 (value
3979 (save-match-data
3980 (org-trim
3981 (buffer-substring-no-properties
3982 (match-end 0) (point-at-eol)))))
3983 ;; PARSEDP is non-nil when keyword should have its
3984 ;; value parsed.
3985 (parsedp (member kwd org-element-parsed-keywords))
3986 ;; If KWD is a dual keyword, find its secondary
3987 ;; value. Maybe parse it.
3988 (dualp (member kwd org-element-dual-keywords))
3989 (dual-value
3990 (and dualp
3991 (let ((sec (org-match-string-no-properties 2)))
3992 (if (or (not sec) (not parsedp)) sec
3993 (org-element-parse-secondary-string sec restrict)))))
3994 ;; Attribute a property name to KWD.
3995 (kwd-sym (and kwd (intern (concat ":" (downcase kwd))))))
3996 ;; Now set final shape for VALUE.
3997 (when parsedp
3998 (setq value (org-element-parse-secondary-string value restrict)))
3999 (when dualp
4000 (setq value (and (or value dual-value) (cons value dual-value))))
4001 (when (or (member kwd org-element-multiple-keywords)
4002 ;; Attributes can always appear on multiple lines.
4003 (string-match "^ATTR_" kwd))
4004 (setq value (cons value (plist-get output kwd-sym))))
4005 ;; Eventually store the new value in OUTPUT.
4006 (setq output (plist-put output kwd-sym value))
4007 ;; Move to next keyword.
4008 (forward-line)))
4009 ;; If affiliated keywords are orphaned: move back to first one.
4010 ;; They will be parsed as a paragraph.
4011 (when (looking-at "[ \t]*$") (goto-char origin) (setq output nil))
4012 ;; Return value.
4013 (cons origin output))))
4017 ;;; The Org Parser
4019 ;; The two major functions here are `org-element-parse-buffer', which
4020 ;; parses Org syntax inside the current buffer, taking into account
4021 ;; region, narrowing, or even visibility if specified, and
4022 ;; `org-element-parse-secondary-string', which parses objects within
4023 ;; a given string.
4025 ;; The (almost) almighty `org-element-map' allows to apply a function
4026 ;; on elements or objects matching some type, and accumulate the
4027 ;; resulting values. In an export situation, it also skips unneeded
4028 ;; parts of the parse tree.
4030 (defun org-element-parse-buffer (&optional granularity visible-only)
4031 "Recursively parse the buffer and return structure.
4032 If narrowing is in effect, only parse the visible part of the
4033 buffer.
4035 Optional argument GRANULARITY determines the depth of the
4036 recursion. It can be set to the following symbols:
4038 `headline' Only parse headlines.
4039 `greater-element' Don't recurse into greater elements excepted
4040 headlines and sections. Thus, elements
4041 parsed are the top-level ones.
4042 `element' Parse everything but objects and plain text.
4043 `object' Parse the complete buffer (default).
4045 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4046 elements.
4048 An element or an objects is represented as a list with the
4049 pattern (TYPE PROPERTIES CONTENTS), where :
4051 TYPE is a symbol describing the element or object. See
4052 `org-element-all-elements' and `org-element-all-objects' for an
4053 exhaustive list of such symbols. One can retrieve it with
4054 `org-element-type' function.
4056 PROPERTIES is the list of attributes attached to the element or
4057 object, as a plist. Although most of them are specific to the
4058 element or object type, all types share `:begin', `:end',
4059 `:post-blank' and `:parent' properties, which respectively
4060 refer to buffer position where the element or object starts,
4061 ends, the number of white spaces or blank lines after it, and
4062 the element or object containing it. Properties values can be
4063 obtained by using `org-element-property' function.
4065 CONTENTS is a list of elements, objects or raw strings
4066 contained in the current element or object, when applicable.
4067 One can access them with `org-element-contents' function.
4069 The Org buffer has `org-data' as type and nil as properties.
4070 `org-element-map' function can be used to find specific elements
4071 or objects within the parse tree.
4073 This function assumes that current major mode is `org-mode'."
4074 (save-excursion
4075 (goto-char (point-min))
4076 (org-skip-whitespace)
4077 (org-element--parse-elements
4078 (point-at-bol) (point-max)
4079 ;; Start in `first-section' mode so text before the first
4080 ;; headline belongs to a section.
4081 'first-section nil granularity visible-only (list 'org-data nil))))
4083 (defun org-element-parse-secondary-string (string restriction &optional parent)
4084 "Recursively parse objects in STRING and return structure.
4086 RESTRICTION is a symbol limiting the object types that will be
4087 looked after.
4089 Optional argument PARENT, when non-nil, is the element or object
4090 containing the secondary string. It is used to set correctly
4091 `:parent' property within the string."
4092 ;; Copy buffer-local variables listed in
4093 ;; `org-element-object-variables' into temporary buffer. This is
4094 ;; required since object parsing is dependent on these variables.
4095 (let ((pairs (delq nil (mapcar (lambda (var)
4096 (when (boundp var)
4097 (cons var (symbol-value var))))
4098 org-element-object-variables))))
4099 (with-temp-buffer
4100 (mapc (lambda (pair) (org-set-local (car pair) (cdr pair))) pairs)
4101 (insert string)
4102 (let ((secondary (org-element--parse-objects
4103 (point-min) (point-max) nil restriction)))
4104 (when parent
4105 (mapc (lambda (obj) (org-element-put-property obj :parent parent))
4106 secondary))
4107 secondary))))
4109 (defun org-element-map
4110 (data types fun &optional info first-match no-recursion with-affiliated)
4111 "Map a function on selected elements or objects.
4113 DATA is a parse tree, an element, an object, a string, or a list
4114 of such constructs. TYPES is a symbol or list of symbols of
4115 elements or objects types (see `org-element-all-elements' and
4116 `org-element-all-objects' for a complete list of types). FUN is
4117 the function called on the matching element or object. It has to
4118 accept one argument: the element or object itself.
4120 When optional argument INFO is non-nil, it should be a plist
4121 holding export options. In that case, parts of the parse tree
4122 not exportable according to that property list will be skipped.
4124 When optional argument FIRST-MATCH is non-nil, stop at the first
4125 match for which FUN doesn't return nil, and return that value.
4127 Optional argument NO-RECURSION is a symbol or a list of symbols
4128 representing elements or objects types. `org-element-map' won't
4129 enter any recursive element or object whose type belongs to that
4130 list. Though, FUN can still be applied on them.
4132 When optional argument WITH-AFFILIATED is non-nil, FUN will also
4133 apply to matching objects within parsed affiliated keywords (see
4134 `org-element-parsed-keywords').
4136 Nil values returned from FUN do not appear in the results.
4139 Examples:
4140 ---------
4142 Assuming TREE is a variable containing an Org buffer parse tree,
4143 the following example will return a flat list of all `src-block'
4144 and `example-block' elements in it:
4146 \(org-element-map tree '(example-block src-block) 'identity)
4148 The following snippet will find the first headline with a level
4149 of 1 and a \"phone\" tag, and will return its beginning position:
4151 \(org-element-map tree 'headline
4152 \(lambda (hl)
4153 \(and (= (org-element-property :level hl) 1)
4154 \(member \"phone\" (org-element-property :tags hl))
4155 \(org-element-property :begin hl)))
4156 nil t)
4158 The next example will return a flat list of all `plain-list' type
4159 elements in TREE that are not a sub-list themselves:
4161 \(org-element-map tree 'plain-list 'identity nil nil 'plain-list)
4163 Eventually, this example will return a flat list of all `bold'
4164 type objects containing a `latex-snippet' type object, even
4165 looking into captions:
4167 \(org-element-map tree 'bold
4168 \(lambda (b)
4169 \(and (org-element-map b 'latex-snippet 'identity nil t) b))
4170 nil nil nil t)"
4171 ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
4172 (unless (listp types) (setq types (list types)))
4173 (unless (listp no-recursion) (setq no-recursion (list no-recursion)))
4174 ;; Recursion depth is determined by --CATEGORY.
4175 (let* ((--category
4176 (catch 'found
4177 (let ((category 'greater-elements))
4178 (mapc (lambda (type)
4179 (cond ((or (memq type org-element-all-objects)
4180 (eq type 'plain-text))
4181 ;; If one object is found, the function
4182 ;; has to recurse into every object.
4183 (throw 'found 'objects))
4184 ((not (memq type org-element-greater-elements))
4185 ;; If one regular element is found, the
4186 ;; function has to recurse, at least,
4187 ;; into every element it encounters.
4188 (and (not (eq category 'elements))
4189 (setq category 'elements)))))
4190 types)
4191 category)))
4192 ;; Compute properties for affiliated keywords if necessary.
4193 (--affiliated-alist
4194 (and with-affiliated
4195 (mapcar (lambda (kwd)
4196 (cons kwd (intern (concat ":" (downcase kwd)))))
4197 org-element-affiliated-keywords)))
4198 --acc
4199 --walk-tree
4200 (--walk-tree
4201 (function
4202 (lambda (--data)
4203 ;; Recursively walk DATA. INFO, if non-nil, is a plist
4204 ;; holding contextual information.
4205 (let ((--type (org-element-type --data)))
4206 (cond
4207 ((not --data))
4208 ;; Ignored element in an export context.
4209 ((and info (memq --data (plist-get info :ignore-list))))
4210 ;; List of elements or objects.
4211 ((not --type) (mapc --walk-tree --data))
4212 ;; Unconditionally enter parse trees.
4213 ((eq --type 'org-data)
4214 (mapc --walk-tree (org-element-contents --data)))
4216 ;; Check if TYPE is matching among TYPES. If so,
4217 ;; apply FUN to --DATA and accumulate return value
4218 ;; into --ACC (or exit if FIRST-MATCH is non-nil).
4219 (when (memq --type types)
4220 (let ((result (funcall fun --data)))
4221 (cond ((not result))
4222 (first-match (throw '--map-first-match result))
4223 (t (push result --acc)))))
4224 ;; If --DATA has a secondary string that can contain
4225 ;; objects with their type among TYPES, look into it.
4226 (when (and (eq --category 'objects) (not (stringp --data)))
4227 (let ((sec-prop
4228 (assq --type org-element-secondary-value-alist)))
4229 (when sec-prop
4230 (funcall --walk-tree
4231 (org-element-property (cdr sec-prop) --data)))))
4232 ;; If --DATA has any affiliated keywords and
4233 ;; WITH-AFFILIATED is non-nil, look for objects in
4234 ;; them.
4235 (when (and with-affiliated
4236 (eq --category 'objects)
4237 (memq --type org-element-all-elements))
4238 (mapc (lambda (kwd-pair)
4239 (let ((kwd (car kwd-pair))
4240 (value (org-element-property
4241 (cdr kwd-pair) --data)))
4242 ;; Pay attention to the type of value.
4243 ;; Preserve order for multiple keywords.
4244 (cond
4245 ((not value))
4246 ((and (member kwd org-element-multiple-keywords)
4247 (member kwd org-element-dual-keywords))
4248 (mapc (lambda (line)
4249 (funcall --walk-tree (cdr line))
4250 (funcall --walk-tree (car line)))
4251 (reverse value)))
4252 ((member kwd org-element-multiple-keywords)
4253 (mapc (lambda (line) (funcall --walk-tree line))
4254 (reverse value)))
4255 ((member kwd org-element-dual-keywords)
4256 (funcall --walk-tree (cdr value))
4257 (funcall --walk-tree (car value)))
4258 (t (funcall --walk-tree value)))))
4259 --affiliated-alist))
4260 ;; Determine if a recursion into --DATA is possible.
4261 (cond
4262 ;; --TYPE is explicitly removed from recursion.
4263 ((memq --type no-recursion))
4264 ;; --DATA has no contents.
4265 ((not (org-element-contents --data)))
4266 ;; Looking for greater elements but --DATA is simply
4267 ;; an element or an object.
4268 ((and (eq --category 'greater-elements)
4269 (not (memq --type org-element-greater-elements))))
4270 ;; Looking for elements but --DATA is an object.
4271 ((and (eq --category 'elements)
4272 (memq --type org-element-all-objects)))
4273 ;; In any other case, map contents.
4274 (t (mapc --walk-tree (org-element-contents --data)))))))))))
4275 (catch '--map-first-match
4276 (funcall --walk-tree data)
4277 ;; Return value in a proper order.
4278 (nreverse --acc))))
4279 (put 'org-element-map 'lisp-indent-function 2)
4281 ;; The following functions are internal parts of the parser.
4283 ;; The first one, `org-element--parse-elements' acts at the element's
4284 ;; level.
4286 ;; The second one, `org-element--parse-objects' applies on all objects
4287 ;; of a paragraph or a secondary string. It uses
4288 ;; `org-element--get-next-object-candidates' to optimize the search of
4289 ;; the next object in the buffer.
4291 ;; More precisely, that function looks for every allowed object type
4292 ;; first. Then, it discards failed searches, keeps further matches,
4293 ;; and searches again types matched behind point, for subsequent
4294 ;; calls. Thus, searching for a given type fails only once, and every
4295 ;; object is searched only once at top level (but sometimes more for
4296 ;; nested types).
4298 (defun org-element--parse-elements
4299 (beg end special structure granularity visible-only acc)
4300 "Parse elements between BEG and END positions.
4302 SPECIAL prioritize some elements over the others. It can be set
4303 to `first-section', `quote-section', `section' `item' or
4304 `table-row'.
4306 When value is `item', STRUCTURE will be used as the current list
4307 structure.
4309 GRANULARITY determines the depth of the recursion. See
4310 `org-element-parse-buffer' for more information.
4312 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4313 elements.
4315 Elements are accumulated into ACC."
4316 (save-excursion
4317 (goto-char beg)
4318 ;; Visible only: skip invisible parts at the beginning of the
4319 ;; element.
4320 (when (and visible-only (org-invisible-p2))
4321 (goto-char (min (1+ (org-find-visible)) end)))
4322 ;; When parsing only headlines, skip any text before first one.
4323 (when (and (eq granularity 'headline) (not (org-at-heading-p)))
4324 (org-with-limited-levels (outline-next-heading)))
4325 ;; Main loop start.
4326 (while (< (point) end)
4327 ;; Find current element's type and parse it accordingly to
4328 ;; its category.
4329 (let* ((element (org-element--current-element
4330 end granularity special structure))
4331 (type (org-element-type element))
4332 (cbeg (org-element-property :contents-begin element)))
4333 (goto-char (org-element-property :end element))
4334 ;; Visible only: skip invisible parts between siblings.
4335 (when (and visible-only (org-invisible-p2))
4336 (goto-char (min (1+ (org-find-visible)) end)))
4337 ;; Fill ELEMENT contents by side-effect.
4338 (cond
4339 ;; If element has no contents, don't modify it.
4340 ((not cbeg))
4341 ;; Greater element: parse it between `contents-begin' and
4342 ;; `contents-end'. Make sure GRANULARITY allows the
4343 ;; recursion, or ELEMENT is a headline, in which case going
4344 ;; inside is mandatory, in order to get sub-level headings.
4345 ((and (memq type org-element-greater-elements)
4346 (or (memq granularity '(element object nil))
4347 (and (eq granularity 'greater-element)
4348 (eq type 'section))
4349 (eq type 'headline)))
4350 (org-element--parse-elements
4351 cbeg (org-element-property :contents-end element)
4352 ;; Possibly switch to a special mode.
4353 (case type
4354 (headline
4355 (if (org-element-property :quotedp element) 'quote-section
4356 'section))
4357 (plain-list 'item)
4358 (property-drawer 'node-property)
4359 (table 'table-row))
4360 (and (memq type '(item plain-list))
4361 (org-element-property :structure element))
4362 granularity visible-only element))
4363 ;; ELEMENT has contents. Parse objects inside, if
4364 ;; GRANULARITY allows it.
4365 ((memq granularity '(object nil))
4366 (org-element--parse-objects
4367 cbeg (org-element-property :contents-end element) element
4368 (org-element-restriction type))))
4369 (org-element-adopt-elements acc element)))
4370 ;; Return result.
4371 acc))
4373 (defun org-element--parse-objects (beg end acc restriction)
4374 "Parse objects between BEG and END and return recursive structure.
4376 Objects are accumulated in ACC.
4378 RESTRICTION is a list of object successors which are allowed in
4379 the current object."
4380 (let ((candidates 'initial))
4381 (save-excursion
4382 (save-restriction
4383 (narrow-to-region beg end)
4384 (goto-char (point-min))
4385 (while (and (not (eobp))
4386 (setq candidates
4387 (org-element--get-next-object-candidates
4388 restriction candidates)))
4389 (let ((next-object
4390 (let ((pos (apply 'min (mapcar 'cdr candidates))))
4391 (save-excursion
4392 (goto-char pos)
4393 (funcall (intern (format "org-element-%s-parser"
4394 (car (rassq pos candidates)))))))))
4395 ;; 1. Text before any object. Untabify it.
4396 (let ((obj-beg (org-element-property :begin next-object)))
4397 (unless (= (point) obj-beg)
4398 (setq acc
4399 (org-element-adopt-elements
4401 (replace-regexp-in-string
4402 "\t" (make-string tab-width ? )
4403 (buffer-substring-no-properties (point) obj-beg))))))
4404 ;; 2. Object...
4405 (let ((obj-end (org-element-property :end next-object))
4406 (cont-beg (org-element-property :contents-begin next-object)))
4407 ;; Fill contents of NEXT-OBJECT by side-effect, if it has
4408 ;; a recursive type.
4409 (when (and cont-beg
4410 (memq (car next-object) org-element-recursive-objects))
4411 (org-element--parse-objects
4412 cont-beg (org-element-property :contents-end next-object)
4413 next-object (org-element-restriction next-object)))
4414 (setq acc (org-element-adopt-elements acc next-object))
4415 (goto-char obj-end))))
4416 ;; 3. Text after last object. Untabify it.
4417 (unless (eobp)
4418 (setq acc
4419 (org-element-adopt-elements
4421 (replace-regexp-in-string
4422 "\t" (make-string tab-width ? )
4423 (buffer-substring-no-properties (point) end)))))
4424 ;; Result.
4425 acc))))
4427 (defun org-element--get-next-object-candidates (restriction objects)
4428 "Return an alist of candidates for the next object.
4430 RESTRICTION is a list of object types, as symbols. Only
4431 candidates with such types are looked after.
4433 OBJECTS is the previous candidates alist. If it is set to
4434 `initial', no search has been done before, and all symbols in
4435 RESTRICTION should be looked after.
4437 Return value is an alist whose CAR is the object type and CDR its
4438 beginning position."
4439 (delq
4441 (if (eq objects 'initial)
4442 ;; When searching for the first time, look for every successor
4443 ;; allowed in RESTRICTION.
4444 (mapcar
4445 (lambda (res)
4446 (funcall (intern (format "org-element-%s-successor" res))))
4447 restriction)
4448 ;; Focus on objects returned during last search. Keep those
4449 ;; still after point. Search again objects before it.
4450 (mapcar
4451 (lambda (obj)
4452 (if (>= (cdr obj) (point)) obj
4453 (let* ((type (car obj))
4454 (succ (or (cdr (assq type org-element-object-successor-alist))
4455 type)))
4456 (and succ
4457 (funcall (intern (format "org-element-%s-successor" succ)))))))
4458 objects))))
4462 ;;; Towards A Bijective Process
4464 ;; The parse tree obtained with `org-element-parse-buffer' is really
4465 ;; a snapshot of the corresponding Org buffer. Therefore, it can be
4466 ;; interpreted and expanded into a string with canonical Org syntax.
4467 ;; Hence `org-element-interpret-data'.
4469 ;; The function relies internally on
4470 ;; `org-element--interpret-affiliated-keywords'.
4472 ;;;###autoload
4473 (defun org-element-interpret-data (data &optional parent)
4474 "Interpret DATA as Org syntax.
4476 DATA is a parse tree, an element, an object or a secondary string
4477 to interpret.
4479 Optional argument PARENT is used for recursive calls. It contains
4480 the element or object containing data, or nil.
4482 Return Org syntax as a string."
4483 (let* ((type (org-element-type data))
4484 (results
4485 (cond
4486 ;; Secondary string.
4487 ((not type)
4488 (mapconcat
4489 (lambda (obj) (org-element-interpret-data obj parent))
4490 data ""))
4491 ;; Full Org document.
4492 ((eq type 'org-data)
4493 (mapconcat
4494 (lambda (obj) (org-element-interpret-data obj parent))
4495 (org-element-contents data) ""))
4496 ;; Plain text: return it.
4497 ((stringp data) data)
4498 ;; Element/Object without contents.
4499 ((not (org-element-contents data))
4500 (funcall (intern (format "org-element-%s-interpreter" type))
4501 data nil))
4502 ;; Element/Object with contents.
4504 (let* ((greaterp (memq type org-element-greater-elements))
4505 (objectp (and (not greaterp)
4506 (memq type org-element-recursive-objects)))
4507 (contents
4508 (mapconcat
4509 (lambda (obj) (org-element-interpret-data obj data))
4510 (org-element-contents
4511 (if (or greaterp objectp) data
4512 ;; Elements directly containing objects must
4513 ;; have their indentation normalized first.
4514 (org-element-normalize-contents
4515 data
4516 ;; When normalizing first paragraph of an
4517 ;; item or a footnote-definition, ignore
4518 ;; first line's indentation.
4519 (and (eq type 'paragraph)
4520 (equal data (car (org-element-contents parent)))
4521 (memq (org-element-type parent)
4522 '(footnote-definition item))))))
4523 "")))
4524 (funcall (intern (format "org-element-%s-interpreter" type))
4525 data
4526 (if greaterp (org-element-normalize-contents contents)
4527 contents)))))))
4528 (if (memq type '(org-data plain-text nil)) results
4529 ;; Build white spaces. If no `:post-blank' property is
4530 ;; specified, assume its value is 0.
4531 (let ((post-blank (or (org-element-property :post-blank data) 0)))
4532 (if (memq type org-element-all-objects)
4533 (concat results (make-string post-blank 32))
4534 (concat
4535 (org-element--interpret-affiliated-keywords data)
4536 (org-element-normalize-string results)
4537 (make-string post-blank 10)))))))
4539 (defun org-element--interpret-affiliated-keywords (element)
4540 "Return ELEMENT's affiliated keywords as Org syntax.
4541 If there is no affiliated keyword, return the empty string."
4542 (let ((keyword-to-org
4543 (function
4544 (lambda (key value)
4545 (let (dual)
4546 (when (member key org-element-dual-keywords)
4547 (setq dual (cdr value) value (car value)))
4548 (concat "#+" key
4549 (and dual
4550 (format "[%s]" (org-element-interpret-data dual)))
4551 ": "
4552 (if (member key org-element-parsed-keywords)
4553 (org-element-interpret-data value)
4554 value)
4555 "\n"))))))
4556 (mapconcat
4557 (lambda (prop)
4558 (let ((value (org-element-property prop element))
4559 (keyword (upcase (substring (symbol-name prop) 1))))
4560 (when value
4561 (if (or (member keyword org-element-multiple-keywords)
4562 ;; All attribute keywords can have multiple lines.
4563 (string-match "^ATTR_" keyword))
4564 (mapconcat (lambda (line) (funcall keyword-to-org keyword line))
4565 (reverse value)
4567 (funcall keyword-to-org keyword value)))))
4568 ;; List all ELEMENT's properties matching an attribute line or an
4569 ;; affiliated keyword, but ignore translated keywords since they
4570 ;; cannot belong to the property list.
4571 (loop for prop in (nth 1 element) by 'cddr
4572 when (let ((keyword (upcase (substring (symbol-name prop) 1))))
4573 (or (string-match "^ATTR_" keyword)
4574 (and
4575 (member keyword org-element-affiliated-keywords)
4576 (not (assoc keyword
4577 org-element-keyword-translation-alist)))))
4578 collect prop)
4579 "")))
4581 ;; Because interpretation of the parse tree must return the same
4582 ;; number of blank lines between elements and the same number of white
4583 ;; space after objects, some special care must be given to white
4584 ;; spaces.
4586 ;; The first function, `org-element-normalize-string', ensures any
4587 ;; string different from the empty string will end with a single
4588 ;; newline character.
4590 ;; The second function, `org-element-normalize-contents', removes
4591 ;; global indentation from the contents of the current element.
4593 (defun org-element-normalize-string (s)
4594 "Ensure string S ends with a single newline character.
4596 If S isn't a string return it unchanged. If S is the empty
4597 string, return it. Otherwise, return a new string with a single
4598 newline character at its end."
4599 (cond
4600 ((not (stringp s)) s)
4601 ((string= "" s) "")
4602 (t (and (string-match "\\(\n[ \t]*\\)*\\'" s)
4603 (replace-match "\n" nil nil s)))))
4605 (defun org-element-normalize-contents (element &optional ignore-first)
4606 "Normalize plain text in ELEMENT's contents.
4608 ELEMENT must only contain plain text and objects.
4610 If optional argument IGNORE-FIRST is non-nil, ignore first line's
4611 indentation to compute maximal common indentation.
4613 Return the normalized element that is element with global
4614 indentation removed from its contents. The function assumes that
4615 indentation is not done with TAB characters."
4616 (let* ((min-ind most-positive-fixnum)
4617 find-min-ind ; For byte-compiler.
4618 (find-min-ind
4619 (function
4620 ;; Return minimal common indentation within BLOB. This is
4621 ;; done by walking recursively BLOB and updating MIN-IND
4622 ;; along the way. FIRST-FLAG is non-nil when the first
4623 ;; string hasn't been seen yet. It is required as this
4624 ;; string is the only one whose indentation doesn't happen
4625 ;; after a newline character.
4626 (lambda (blob first-flag)
4627 (dolist (object (org-element-contents blob))
4628 (when (and first-flag (stringp object))
4629 (setq first-flag nil)
4630 (string-match "\\`\\( *\\)" object)
4631 (let ((len (length (match-string 1 object))))
4632 ;; An indentation of zero means no string will be
4633 ;; modified. Quit the process.
4634 (if (zerop len) (throw 'zero (setq min-ind 0))
4635 (setq min-ind (min len min-ind)))))
4636 (cond
4637 ((stringp object)
4638 (dolist (line (delq "" (cdr (org-split-string object " *\n"))))
4639 (setq min-ind (min (org-get-indentation line) min-ind))))
4640 ((memq (org-element-type object) org-element-recursive-objects)
4641 (funcall find-min-ind object first-flag))))))))
4642 ;; Find minimal indentation in ELEMENT.
4643 (catch 'zero (funcall find-min-ind element (not ignore-first)))
4644 (if (or (zerop min-ind) (= min-ind most-positive-fixnum)) element
4645 ;; Build ELEMENT back, replacing each string with the same
4646 ;; string minus common indentation.
4647 (let* (build ; For byte compiler.
4648 (build
4649 (function
4650 (lambda (blob first-flag)
4651 ;; Return BLOB with all its strings indentation
4652 ;; shortened from MIN-IND white spaces. FIRST-FLAG
4653 ;; is non-nil when the first string hasn't been seen
4654 ;; yet.
4655 (setcdr (cdr blob)
4656 (mapcar
4657 #'(lambda (object)
4658 (when (and first-flag (stringp object))
4659 (setq first-flag nil)
4660 (setq object
4661 (replace-regexp-in-string
4662 (format "\\` \\{%d\\}" min-ind)
4663 "" object)))
4664 (cond
4665 ((stringp object)
4666 (replace-regexp-in-string
4667 (format "\n \\{%d\\}" min-ind) "\n" object))
4668 ((memq (org-element-type object)
4669 org-element-recursive-objects)
4670 (funcall build object first-flag))
4671 (t object)))
4672 (org-element-contents blob)))
4673 blob))))
4674 (funcall build element (not ignore-first))))))
4678 ;;; The Toolbox
4680 ;; The first move is to implement a way to obtain the smallest element
4681 ;; containing point. This is the job of `org-element-at-point'. It
4682 ;; basically jumps back to the beginning of section containing point
4683 ;; and moves, element after element, with
4684 ;; `org-element--current-element' until the container is found. Note:
4685 ;; When using `org-element-at-point', secondary values are never
4686 ;; parsed since the function focuses on elements, not on objects.
4688 ;; At a deeper level, `org-element-context' lists all elements and
4689 ;; objects containing point.
4691 ;; `org-element-nested-p' and `org-element-swap-A-B' may be used
4692 ;; internally by navigation and manipulation tools.
4694 ;;;###autoload
4695 (defun org-element-at-point (&optional keep-trail)
4696 "Determine closest element around point.
4698 Return value is a list like (TYPE PROPS) where TYPE is the type
4699 of the element and PROPS a plist of properties associated to the
4700 element.
4702 Possible types are defined in `org-element-all-elements'.
4703 Properties depend on element or object type, but always include
4704 `:begin', `:end', `:parent' and `:post-blank' properties.
4706 As a special case, if point is at the very beginning of a list or
4707 sub-list, returned element will be that list instead of the first
4708 item. In the same way, if point is at the beginning of the first
4709 row of a table, returned element will be the table instead of the
4710 first row.
4712 If optional argument KEEP-TRAIL is non-nil, the function returns
4713 a list of elements leading to element at point. The list's CAR
4714 is always the element at point. The following positions contain
4715 element's siblings, then parents, siblings of parents, until the
4716 first element of current section."
4717 (org-with-wide-buffer
4718 ;; If at a headline, parse it. It is the sole element that
4719 ;; doesn't require to know about context. Be sure to disallow
4720 ;; secondary string parsing, though.
4721 (if (org-with-limited-levels (org-at-heading-p))
4722 (progn
4723 (beginning-of-line)
4724 (if (not keep-trail) (org-element-headline-parser (point-max) t)
4725 (list (org-element-headline-parser (point-max) t))))
4726 ;; Otherwise move at the beginning of the section containing
4727 ;; point.
4728 (catch 'exit
4729 (let ((origin (point))
4730 (end (save-excursion
4731 (org-with-limited-levels (outline-next-heading)) (point)))
4732 element type special-flag trail struct prevs parent)
4733 (org-with-limited-levels
4734 (if (org-before-first-heading-p)
4735 ;; In empty lines at buffer's beginning, return nil.
4736 (progn (goto-char (point-min))
4737 (org-skip-whitespace)
4738 (when (or (eobp) (> (line-beginning-position) origin))
4739 (throw 'exit nil)))
4740 (org-back-to-heading)
4741 (forward-line)
4742 (org-skip-whitespace)
4743 (when (or (eobp) (> (line-beginning-position) origin))
4744 ;; In blank lines just after the headline, point still
4745 ;; belongs to the headline.
4746 (throw 'exit
4747 (progn (skip-chars-backward " \r\t\n")
4748 (beginning-of-line)
4749 (if (not keep-trail)
4750 (org-element-headline-parser (point-max) t)
4751 (list (org-element-headline-parser
4752 (point-max) t))))))))
4753 (beginning-of-line)
4754 ;; Parse successively each element, skipping those ending
4755 ;; before original position.
4756 (while t
4757 (setq element
4758 (org-element--current-element end 'element special-flag struct)
4759 type (car element))
4760 (org-element-put-property element :parent parent)
4761 (when keep-trail (push element trail))
4762 (cond
4763 ;; 1. Skip any element ending before point. Also skip
4764 ;; element ending at point when we're sure that another
4765 ;; element has started.
4766 ((let ((elem-end (org-element-property :end element)))
4767 (when (or (< elem-end origin)
4768 (and (= elem-end origin) (/= elem-end end)))
4769 (goto-char elem-end))))
4770 ;; 2. An element containing point is always the element at
4771 ;; point.
4772 ((not (memq type org-element-greater-elements))
4773 (throw 'exit (if keep-trail trail element)))
4774 ;; 3. At any other greater element type, if point is
4775 ;; within contents, move into it.
4777 (let ((cbeg (org-element-property :contents-begin element))
4778 (cend (org-element-property :contents-end element)))
4779 (if (or (not cbeg) (not cend) (> cbeg origin) (< cend origin)
4780 ;; Create an anchor for tables and plain lists:
4781 ;; when point is at the very beginning of these
4782 ;; elements, ignoring affiliated keywords,
4783 ;; target them instead of their contents.
4784 (and (= cbeg origin) (memq type '(plain-list table)))
4785 ;; When point is at contents end, do not move
4786 ;; into elements with an explicit ending, but
4787 ;; return that element instead.
4788 (and (= cend origin)
4789 (or (memq type
4790 '(center-block
4791 drawer dynamic-block inlinetask
4792 property-drawer quote-block
4793 special-block))
4794 ;; Corner case: if a list ends at the
4795 ;; end of a buffer without a final new
4796 ;; line, return last element in last
4797 ;; item instead.
4798 (and (memq type '(item plain-list))
4799 (progn (goto-char cend)
4800 (or (bolp) (not (eobp))))))))
4801 (throw 'exit (if keep-trail trail element))
4802 (setq parent element)
4803 (case type
4804 (plain-list
4805 (setq special-flag 'item
4806 struct (org-element-property :structure element)))
4807 (item (setq special-flag nil))
4808 (property-drawer
4809 (setq special-flag 'node-property struct nil))
4810 (table (setq special-flag 'table-row struct nil))
4811 (otherwise (setq special-flag nil struct nil)))
4812 (setq end cend)
4813 (goto-char cbeg)))))))))))
4815 ;;;###autoload
4816 (defun org-element-context (&optional element)
4817 "Return closest element or object around point.
4819 Return value is a list like (TYPE PROPS) where TYPE is the type
4820 of the element or object and PROPS a plist of properties
4821 associated to it.
4823 Possible types are defined in `org-element-all-elements' and
4824 `org-element-all-objects'. Properties depend on element or
4825 object type, but always include `:begin', `:end', `:parent' and
4826 `:post-blank'.
4828 Optional argument ELEMENT, when non-nil, is the closest element
4829 containing point, as returned by `org-element-at-point'.
4830 Providing it allows for quicker computation."
4831 (catch 'objects-forbidden
4832 (org-with-wide-buffer
4833 (let* ((origin (point))
4834 (element (or element (org-element-at-point)))
4835 (type (org-element-type element))
4836 context)
4837 ;; Check if point is inside an element containing objects or at
4838 ;; a secondary string. In that case, narrow buffer to the
4839 ;; containing area. Otherwise, return ELEMENT.
4840 (cond
4841 ;; At a parsed affiliated keyword, check if we're inside main
4842 ;; or dual value.
4843 ((let ((post (org-element-property :post-affiliated element)))
4844 (and post (< origin post)))
4845 (beginning-of-line)
4846 (let ((case-fold-search t)) (looking-at org-element--affiliated-re))
4847 (cond
4848 ((not (member-ignore-case (match-string 1)
4849 org-element-parsed-keywords))
4850 (throw 'objects-forbidden element))
4851 ((< (match-end 0) origin)
4852 (narrow-to-region (match-end 0) (line-end-position)))
4853 ((and (match-beginning 2)
4854 (>= origin (match-beginning 2))
4855 (< origin (match-end 2)))
4856 (narrow-to-region (match-beginning 2) (match-end 2)))
4857 (t (throw 'objects-forbidden element)))
4858 ;; Also change type to retrieve correct restrictions.
4859 (setq type 'keyword))
4860 ;; At an item, objects can only be located within tag, if any.
4861 ((eq type 'item)
4862 (let ((tag (org-element-property :tag element)))
4863 (if (not tag) (throw 'objects-forbidden element)
4864 (beginning-of-line)
4865 (search-forward tag (line-end-position))
4866 (goto-char (match-beginning 0))
4867 (if (and (>= origin (point)) (< origin (match-end 0)))
4868 (narrow-to-region (point) (match-end 0))
4869 (throw 'objects-forbidden element)))))
4870 ;; At an headline or inlinetask, objects are located within
4871 ;; their title.
4872 ((memq type '(headline inlinetask))
4873 (goto-char (org-element-property :begin element))
4874 (skip-chars-forward "*")
4875 (if (and (> origin (point)) (< origin (line-end-position)))
4876 (narrow-to-region (point) (line-end-position))
4877 (throw 'objects-forbidden element)))
4878 ;; At a paragraph, a table-row or a verse block, objects are
4879 ;; located within their contents.
4880 ((memq type '(paragraph table-row verse-block))
4881 (let ((cbeg (org-element-property :contents-begin element))
4882 (cend (org-element-property :contents-end element)))
4883 ;; CBEG is nil for table rules.
4884 (if (and cbeg cend (>= origin cbeg) (< origin cend))
4885 (narrow-to-region cbeg cend)
4886 (throw 'objects-forbidden element))))
4887 ;; At a parsed keyword, objects are located within value.
4888 ((eq type 'keyword)
4889 (if (not (member (org-element-property :key element)
4890 org-element-document-properties))
4891 (throw 'objects-forbidden element)
4892 (beginning-of-line)
4893 (search-forward ":")
4894 (if (and (>= origin (point)) (< origin (line-end-position)))
4895 (narrow-to-region (point) (line-end-position))
4896 (throw 'objects-forbidden element))))
4897 ;; At a planning line, if point is at a timestamp, return it,
4898 ;; otherwise, return element.
4899 ((eq type 'planning)
4900 (dolist (p '(:closed :deadline :scheduled))
4901 (let ((timestamp (org-element-property p element)))
4902 (when (and timestamp
4903 (<= (org-element-property :begin timestamp) origin)
4904 (> (org-element-property :end timestamp) origin))
4905 (throw 'objects-forbidden timestamp))))
4906 (throw 'objects-forbidden element))
4907 (t (throw 'objects-forbidden element)))
4908 (goto-char (point-min))
4909 (let ((restriction (org-element-restriction type))
4910 (parent element)
4911 (candidates 'initial))
4912 (catch 'exit
4913 (while (setq candidates
4914 (org-element--get-next-object-candidates
4915 restriction candidates))
4916 (let ((closest-cand (rassq (apply 'min (mapcar 'cdr candidates))
4917 candidates)))
4918 ;; If ORIGIN is before next object in element, there's
4919 ;; no point in looking further.
4920 (if (> (cdr closest-cand) origin) (throw 'exit parent)
4921 (let* ((object
4922 (progn (goto-char (cdr closest-cand))
4923 (funcall (intern (format "org-element-%s-parser"
4924 (car closest-cand))))))
4925 (cbeg (org-element-property :contents-begin object))
4926 (cend (org-element-property :contents-end object))
4927 (obj-end (org-element-property :end object)))
4928 (cond
4929 ;; ORIGIN is after OBJECT, so skip it.
4930 ((<= obj-end origin) (goto-char obj-end))
4931 ;; ORIGIN is within a non-recursive object or at
4932 ;; an object boundaries: Return that object.
4933 ((or (not cbeg) (< origin cbeg) (>= origin cend))
4934 (throw 'exit
4935 (org-element-put-property object :parent parent)))
4936 ;; Otherwise, move within current object and
4937 ;; restrict search to the end of its contents.
4938 (t (goto-char cbeg)
4939 (narrow-to-region (point) cend)
4940 (org-element-put-property object :parent parent)
4941 (setq parent object
4942 restriction (org-element-restriction object)
4943 candidates 'initial)))))))
4944 parent))))))
4946 (defun org-element-nested-p (elem-A elem-B)
4947 "Non-nil when elements ELEM-A and ELEM-B are nested."
4948 (let ((beg-A (org-element-property :begin elem-A))
4949 (beg-B (org-element-property :begin elem-B))
4950 (end-A (org-element-property :end elem-A))
4951 (end-B (org-element-property :end elem-B)))
4952 (or (and (>= beg-A beg-B) (<= end-A end-B))
4953 (and (>= beg-B beg-A) (<= end-B end-A)))))
4955 (defun org-element-swap-A-B (elem-A elem-B)
4956 "Swap elements ELEM-A and ELEM-B.
4957 Assume ELEM-B is after ELEM-A in the buffer. Leave point at the
4958 end of ELEM-A."
4959 (goto-char (org-element-property :begin elem-A))
4960 ;; There are two special cases when an element doesn't start at bol:
4961 ;; the first paragraph in an item or in a footnote definition.
4962 (let ((specialp (not (bolp))))
4963 ;; Only a paragraph without any affiliated keyword can be moved at
4964 ;; ELEM-A position in such a situation. Note that the case of
4965 ;; a footnote definition is impossible: it cannot contain two
4966 ;; paragraphs in a row because it cannot contain a blank line.
4967 (if (and specialp
4968 (or (not (eq (org-element-type elem-B) 'paragraph))
4969 (/= (org-element-property :begin elem-B)
4970 (org-element-property :contents-begin elem-B))))
4971 (error "Cannot swap elements"))
4972 ;; In a special situation, ELEM-A will have no indentation. We'll
4973 ;; give it ELEM-B's (which will in, in turn, have no indentation).
4974 (let* ((ind-B (when specialp
4975 (goto-char (org-element-property :begin elem-B))
4976 (org-get-indentation)))
4977 (beg-A (org-element-property :begin elem-A))
4978 (end-A (save-excursion
4979 (goto-char (org-element-property :end elem-A))
4980 (skip-chars-backward " \r\t\n")
4981 (point-at-eol)))
4982 (beg-B (org-element-property :begin elem-B))
4983 (end-B (save-excursion
4984 (goto-char (org-element-property :end elem-B))
4985 (skip-chars-backward " \r\t\n")
4986 (point-at-eol)))
4987 ;; Store overlays responsible for visibility status. We
4988 ;; also need to store their boundaries as they will be
4989 ;; removed from buffer.
4990 (overlays
4991 (cons
4992 (mapcar (lambda (ov) (list ov (overlay-start ov) (overlay-end ov)))
4993 (overlays-in beg-A end-A))
4994 (mapcar (lambda (ov) (list ov (overlay-start ov) (overlay-end ov)))
4995 (overlays-in beg-B end-B))))
4996 ;; Get contents.
4997 (body-A (buffer-substring beg-A end-A))
4998 (body-B (delete-and-extract-region beg-B end-B)))
4999 (goto-char beg-B)
5000 (when specialp
5001 (setq body-B (replace-regexp-in-string "\\`[ \t]*" "" body-B))
5002 (org-indent-to-column ind-B))
5003 (insert body-A)
5004 ;; Restore ex ELEM-A overlays.
5005 (let ((offset (- beg-B beg-A)))
5006 (mapc (lambda (ov)
5007 (move-overlay
5008 (car ov) (+ (nth 1 ov) offset) (+ (nth 2 ov) offset)))
5009 (car overlays))
5010 (goto-char beg-A)
5011 (delete-region beg-A end-A)
5012 (insert body-B)
5013 ;; Restore ex ELEM-B overlays.
5014 (mapc (lambda (ov)
5015 (move-overlay
5016 (car ov) (- (nth 1 ov) offset) (- (nth 2 ov) offset)))
5017 (cdr overlays)))
5018 (goto-char (org-element-property :end elem-B)))))
5020 (provide 'org-element)
5022 ;; Local variables:
5023 ;; generated-autoload-file: "org-loaddefs.el"
5024 ;; End:
5026 ;;; org-element.el ends here