Function: markdown-new-baseline
markdown-new-baseline is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-new-baseline)
Documentation
Determine if the current line begins a new baseline level.
Assume point is positioned at beginning of line.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-new-baseline ()
"Determine if the current line begins a new baseline level.
Assume point is positioned at beginning of line."
(or (looking-at markdown-regex-header)
(looking-at markdown-regex-hr)
(and (= (current-indentation) 0)
(not (looking-at markdown-regex-list))
(markdown-prev-line-blank))))