Function: markdown-search-backward-baseline
markdown-search-backward-baseline is a byte-compiled function defined
in markdown-mode.el.
Signature
(markdown-search-backward-baseline)
Documentation
Search backward baseline point with no indentation and not a list item.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-search-backward-baseline ()
"Search backward baseline point with no indentation and not a list item."
(end-of-line)
(let (stop)
(while (not (or stop (bobp)))
(re-search-backward markdown-regex-block-separator-noindent nil t)
(when (match-end 2)
(goto-char (match-end 2))
(cond
((markdown-new-baseline)
(setq stop t))
((looking-at-p markdown-regex-list)
(setq stop nil))
(t (setq stop t)))))))