Function: markdown-inline-code-at-pos-p
markdown-inline-code-at-pos-p is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-inline-code-at-pos-p POS)
Documentation
Return non-nil if there is an inline code fragment at POS.
Like `markdown-inline-code-at-pos`, but preserves match data.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-inline-code-at-pos-p (pos)
"Return non-nil if there is an inline code fragment at POS.
Like `markdown-inline-code-at-pos`, but preserves match data."
(save-match-data (markdown-inline-code-at-pos pos)))