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