Function: markdown-fontify-hrs

markdown-fontify-hrs is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-fontify-hrs LAST)

Documentation

Add text properties to horizontal rules from point to LAST.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-fontify-hrs (last)
  "Add text properties to horizontal rules from point to LAST."
  (when (markdown-match-hr last)
    (let ((hr-char (markdown--first-displayable markdown-hr-display-char)))
      (if (and markdown-hide-markup hr-char)
          (markdown--fontify-hrs-view-mode hr-char)
        (add-text-properties
         (match-beginning 0) (match-end 0)
         `(face markdown-hr-face font-lock-multiline t)))
      t)))