Variable: org-element-paragraph-separate

org-element-paragraph-separate is a variable defined in org-element.el.gz.

Value

"^\\(?:\\*+ \\|\\[fn:[-_[:word:]]+\\]\\|%%(\\|[         ]*\\(?:$\\||\\|\\+\\(?:-+\\+\\)+[       ]*$\\|#\\(?: \\|$\\|\\+\\(?:BEGIN_\\S-+\\|\\S-+\\(?:\\[.*\\]\\)?:[      ]*\\)\\)\\|:\\(?: \\|$\\|[-_[:word:]]+:[        ]*$\\)\\|-\\{5,\\}[     ]*$\\|\\\\begin{\\([A-Za-z0-9*]+\\)}\\|\\(?:^[	 ]*CLOCK: \\(?:\\[\\([[:digit:]]\\{4\\}-[[:digit:]]\\{2\\}-[[:digit:]]\\{2\\}\\(?: .*?\\)?\\)\\]\\)\\(?:--\\(?:\\[\\([[:digit:]]\\{4\\}-[[:digit:]]\\{2\\}-[[:digit:]]\\{2\\}\\(?: .*?\\)?\\)\\]\\)[	 ]+=>[	 ]+[[:digit:]]+:[[:digit:]][[:digit:]]\\)?[	 ]*$\\)\\|\\(?:[-+*]\\|\\(?:[0-9]+\\)[.)]\\)\\(?:[      ]\\|$\\)\\)\\)"

Documentation

Regexp to separate paragraphs in an Org buffer.

In the case of lines starting with "#" and ":", this regexp is not sufficient to know if point is at a paragraph ending. See org-element-paragraph-parser for more information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defvar org-element-paragraph-separate nil
  "Regexp to separate paragraphs in an Org buffer.
In the case of lines starting with \"#\" and \":\", this regexp
is not sufficient to know if point is at a paragraph ending.  See
`org-element-paragraph-parser' for more information.")