Function: markdown-cur-line-blank-p

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

Signature

(markdown-cur-line-blank-p)

Documentation

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

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;;; Markdown Parsing Functions ================================================

(defun markdown-cur-line-blank-p ()
  "Return t if the current line is blank and nil otherwise."
  (save-excursion
    (beginning-of-line)
    (looking-at-p markdown-regex-blank-line)))