Variable: org-logbook-drawer-re

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

Value

"^[	 ]*:LOGBOOK:[	 ]*\n\\(?:.*\n\\)*?[	 ]*:END:[	 ]*$"

Documentation

Matches an entire LOGBOOK drawer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-logbook-drawer-re
  (rx (seq bol (0+ (any "\t ")) ":LOGBOOK:" (0+ (any "\t ")) "\n"
	   (*? (0+ nonl) "\n")
	   (0+ (any "\t ")) ":END:" (0+ (any "\t ")) eol))
  "Matches an entire LOGBOOK drawer.")