Variable: org-element--object-regexp

org-element--object-regexp is a variable defined in org-element.el.gz.

Value

"\\(?:[_^][-{(*+.,[:alnum:]]\\)\\|[*+/=_~][^[:space:]]\\|\\<\\(?:attachment\\|b\\(?:bdb\\|ibtex\\)\\|do\\(?:cview\\|i\\)\\|e\\(?:lisp\\|shell\\|ww\\)\\|f\\(?:ile\\(?:\\+\\(?:\\(?:emac\\|sy\\)s\\)\\)?\\|tp\\)\\|gnus\\|h\\(?:elp\\(?:ful\\)?\\|ttps?\\|y\\(?:pb-msg\\)?\\)\\|i\\(?:d\\|nfo\\|rc\\)\\|m\\(?:a\\(?:ilto\\|n\\)\\|he\\)\\|news\\|r\\(?:mail\\|oam\\)\\|shell\\|w3m\\):\\|\\[\\(?:cite[:/]\\|fn:\\|\\(?:[0-9]\\|\\(?:%\\|/[0-9]*\\)\\]\\)\\|\\[\\)\\|@@\\|{{{\\|<\\(?:%%\\|<\\|[0-9]\\|\\(?:attachment\\|b\\(?:bdb\\|ibtex\\)\\|do\\(?:cview\\|i\\)\\|e\\(?:lisp\\|shell\\|ww\\)\\|f\\(?:ile\\(?:\\+\\(?:\\(?:emac\\|sy\\)s\\)\\)?\\|tp\\)\\|gnus\\|h\\(?:elp\\(?:ful\\)?\\|ttps?\\|y\\(?:pb-msg\\)?\\)\\|i\\(?:d\\|nfo\\|rc\\)\\|m\\(?:a\\(?:ilto\\|n\\)\\|he\\)\\|news\\|r\\(?:mail\\|oam\\)\\|shell\\|w3m\\)\\)\\|\\$\\|\\\\\\(?:[a-zA-Z[(]\\|\\\\[   ]*$\\|_ +\\)\\|\\(?:call\\|src\\)_"

Documentation

Regexp possibly matching the beginning of an object.

This regexp allows false positives. Dedicated parser (e.g., org-element-bold-parser) will take care of further filtering. Radio links are not matched by this regexp, as they are treated specially in org-element--object-lex.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defvar org-element--object-regexp nil
  "Regexp possibly matching the beginning of an object.
This regexp allows false positives.  Dedicated parser (e.g.,
`org-element-bold-parser') will take care of further filtering.
Radio links are not matched by this regexp, as they are treated
specially in `org-element--object-lex'.")