Function: markdown-range-properties-exist

markdown-range-properties-exist is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-range-properties-exist BEGIN END PROPS)

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-range-properties-exist (begin end props)
  (cl-loop
   for loc in (number-sequence begin end)
   with result = nil
   while (not
          (setq result
                (cl-some (lambda (prop) (get-text-property loc prop)) props)))
   finally return result))