Variable: org-property-drawer-re

org-property-drawer-re is a variable defined in org.el.gz.

Value

"^[     ]*:PROPERTIES:[         ]*\n\\(?:[      ]*:\\S-+:\\(?:[         ].*\\)?[        ]*\n\\)*?[      ]*:END:[        ]*$"

Documentation

Matches an entire property drawer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-property-drawer-re
  (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
	  "\\(?:[ \t]*:\\S-+:\\(?:[ \t].*\\)?[ \t]*\n\\)*?"
	  "[ \t]*:END:[ \t]*$")
  "Matches an entire property drawer.")