Function: markdown-prev-line-blank

markdown-prev-line-blank is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-prev-line-blank)

Documentation

Return t if the previous line is blank and nil otherwise.

If we are at the first line, then consider the previous line to be blank.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-prev-line-blank ()
  "Return t if the previous line is blank and nil otherwise.
If we are at the first line, then consider the previous line to be blank."
  (or (= (line-beginning-position) (point-min))
      (save-excursion
        (forward-line -1)
        (looking-at markdown-regex-blank-line))))