Variable: org-drawer-regexp

org-drawer-regexp is a variable defined in org.el.gz.

Value

"^[     ]*:\\(\\(?:\\w\\|[-_]\\)+\\):[  ]*$"

Documentation

Matches first or last line of a hidden block.

Group 1 contains drawer's name or "END".

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;;;; Drawer

(defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
  "Matches first or last line of a hidden block.
Group 1 contains drawer's name or \"END\".")