Function: markdown-in-comment-p

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

Signature

(markdown-in-comment-p &optional POS)

Documentation

Return non-nil if POS is in a comment.

If POS is not given, use point instead.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defsubst markdown-in-comment-p (&optional pos)
  "Return non-nil if POS is in a comment.
If POS is not given, use point instead."
  (get-text-property (or pos (point)) 'markdown-comment))