Function: markdown-match-html-tag
markdown-match-html-tag is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-match-html-tag LAST)
Documentation
Match HTML tags from point to LAST.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-html-tag (last)
"Match HTML tags from point to LAST."
(when (and markdown-enable-html
(markdown-match-inline-generic markdown-regex-html-tag last t))
(set-match-data (list (match-beginning 0) (match-end 0)
(match-beginning 1) (match-end 1)
(match-beginning 2) (match-end 2)
(match-beginning 9) (match-end 9)))
t))