Variable: org-outline-regexp-bol

org-outline-regexp-bol is a variable defined in org.el.gz.

Value

"^\\*+ "

Documentation

Regexp to match Org headlines.

This is similar to org-outline-regexp but additionally makes sure that we are at the beginning of the line.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defvar org-outline-regexp-bol "^\\*+ "
  "Regexp to match Org headlines.
This is similar to `org-outline-regexp' but additionally makes
sure that we are at the beginning of the line.")