Function: markdown-next-line-blank-p

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

Signature

(markdown-next-line-blank-p)

Documentation

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

If we are at the last line, then consider the next line to be blank.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-next-line-blank-p ()
  "Return t if the next line is blank and nil otherwise.
If we are at the last line, then consider the next line to be blank."
  (or (= (line-end-position) (point-max))
      (save-excursion
        (forward-line 1)
        (markdown-cur-line-blank-p))))