Lines Matching refs:name
35 # and http://www.w3.org/TR/html5/tokenization.html#tag-name-state
41 <[a-zA-Z][^\t\n\r\f />\x00]* # tag name
42 (?:[\s/]* # optional whitespace before attribute name
43 (?:(?<=['"\s/])[^\s/>][^\s/=>]* # attribute name
57 # </ and the tag name, so maybe this should be fixed
202 name = match.group()[2:-1]
203 self.handle_charref(name)
217 name = match.group(1)
218 self.handle_entityref(name)
390 # find the name: w3.org/TR/html5/tokenization.html#tag-name-state
399 # consume and ignore other stuff between the name and the >
401 # </tag attr=">">, but looking for > after the name should cover
431 def handle_charref(self, name):
435 def handle_entityref(self, name):