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

Method makeTag

markdown/inlinepatterns.py:942–949  ·  view source on GitHub ↗

Return an `img` [`Element`][xml.etree.ElementTree.Element].

(self, href: str, title: str, text: str)

Source from the content-addressed store, hash-verified

940class ImageReferenceInlineProcessor(ReferenceInlineProcessor):
941 """ Match to a stored reference and return `img` element. """
942 def makeTag(self, href: str, title: str, text: str) -> etree.Element:
943 """ Return an `img` [`Element`][xml.etree.ElementTree.Element]. """
944 el = etree.Element("img")
945 el.set("src", href)
946 if title:
947 el.set("title", title)
948 el.set("alt", self.unescape(text))
949 return el
950
951
952class ShortImageReferenceInlineProcessor(ImageReferenceInlineProcessor):

Callers

nothing calls this directly

Calls 2

setMethod · 0.80
unescapeMethod · 0.45

Tested by

no test coverage detected