Variable: org-element-dynamic-block-open-re
org-element-dynamic-block-open-re is a variable defined in
org-element.el.gz.
Value
"^[ ]*#\\+BEGIN:[ ]*\\([[:word:]]+\\)\\(?:[ ]+\\(.+\\)\\)?"
Documentation
Regexp matching the opening line of a dynamic block.
Dynamic block's name is located in match group 1. Parameters are in match group 2.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element-dynamic-block-open-re
(rx line-start (0+ (any ?\s ?\t))
"#+BEGIN:" (0+ (any ?\s ?\t))
(group (1+ word))
(opt
(1+ (any ?\s ?\t))
(group (1+ nonl))))
"Regexp matching the opening line of a dynamic block.
Dynamic block's name is located in match group 1.
Parameters are in match group 2.")