Function: markdown-inline-code-at-point-p

markdown-inline-code-at-point-p is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-inline-code-at-point-p &optional POS)

Documentation

Return non-nil if there is inline code at the POS.

This is a predicate function counterpart to markdown-inline-code-at-point which does not modify the match data. See markdown-code-block-at-point-p for code blocks.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-inline-code-at-point-p (&optional pos)
  "Return non-nil if there is inline code at the POS.
This is a predicate function counterpart to
`markdown-inline-code-at-point' which does not modify the match
data.  See `markdown-code-block-at-point-p' for code blocks."
  (save-match-data (markdown-inline-code-at-pos (or pos (point)))))