Function: markdown-incomplete-hr-p

markdown-incomplete-hr-p is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-incomplete-hr-p)

Documentation

Return non-nil if hr is not in markdown-hr-strings and nil otherwise.

Assumes match data is available for markdown-regex-hr.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-incomplete-hr-p ()
  "Return non-nil if hr is not in `markdown-hr-strings' and nil otherwise.
Assumes match data is available for `markdown-regex-hr'."
  (not (member (match-string 0) markdown-hr-strings)))