MCPcopy Create free account
hub / github.com/commonmark/cmark / handle_pi

Method handle_pi

test/normalize.py:87–89  ·  view source on GitHub ↗
(self,data)

Source from the content-addressed store, hash-verified

85 self.output += '<!' + data + '>'
86 self.last = "decl"
87 def handle_pi(self,data):
88 self.output += '<?' + data + '>'
89 self.last = "pi"
90 def handle_entityref(self, name):
91 try:
92 c = chr(name2codepoint[name])

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected