MCPcopy Create free account
hub / github.com/Python-Markdown/markdown / addFootnoteRef

Method addFootnoteRef

markdown/extensions/footnotes.py:181–184  ·  view source on GitHub ↗

Store a footnote reference id in order of appearance.

(self, id: str)

Source from the content-addressed store, hash-verified

179 self.footnotes[id] = text
180
181 def addFootnoteRef(self, id: str) -> None:
182 """ Store a footnote reference id in order of appearance. """
183 if id not in self.footnote_order:
184 self.footnote_order.append(id)
185
186 def get_separator(self) -> str:
187 """ Get the footnote separator. """

Callers 1

handleMatchMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected