MCPcopy
hub / github.com/Python-Markdown/markdown / ShortImageReferenceInlineProcessor

Class ShortImageReferenceInlineProcessor

markdown/inlinepatterns.py:952–957  ·  view source on GitHub ↗

Short form of image reference: `![ref]`.

Source from the content-addressed store, hash-verified

950
951
952class ShortImageReferenceInlineProcessor(ImageReferenceInlineProcessor):
953 """ Short form of image reference: `![ref]`. """
954 def evalId(self, data: str, index: int, text: str) -> tuple[str, int, bool]:
955 """Evaluate the id of `[ref]`. """
956
957 return text.lower(), index, True
958
959
960class AutolinkInlineProcessor(InlineProcessor):

Callers 1

build_inlinepatternsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…