Variable: org-block-regexp

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

Value

"^[     ]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\(\\(?:.\\|\n\\)+?\\)#\\+end_?\\1[      ]*$"

Documentation

Regular expression for hiding blocks.

Source Code

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

(defconst org-block-regexp
  "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\(\\(?:.\\|\n\\)+?\\)#\\+end_?\\1[ \t]*$"
  "Regular expression for hiding blocks.")