Inheritance diagram for class
HtmlTagHandler:
Known Subclasses¶ Methods Summary¶ Properties Summary¶ Class API¶Possible constructors:
Constructor.
None
Returns the parser associated with this tag handler.
Added in version 2.9.5.
Returns list of supported tags.
The list is in uppercase and tags are delimited by â,â. Example: "I,B,FONT,P"
str
This is the core method of each handler.
It is called each time one of supported tags is detected. tag contains all necessary info (see wx.html.HtmlTag for details).
Example:
def HandleTag(self, tag): # change state of parser (e.g. set bold face) self.ParseInner(tag) # ... # restore original state of parser
You shouldnât call ParseInner
if the tag is not paired with an ending one.
tag (wx.html.HtmlTag)
bool
True
if ParseInner
was called, False
otherwise.
This method calls parserâs wx.html.HtmlParser.DoParsing
method for the string between this tag and the paired ending tag:
<A HREF="x.htm">Hello, world!</A>
In this example, a call to ParseInner
(with tag pointing to A tag) will parse âHello, world!â.
tag (wx.html.HtmlTag)
None
Parses given source as if it was tagâs inner code (see HtmlParser.GetInnerSource).
Unlike ParseInner
, this method lets you specify the source code to parse. This is useful when you need to modify the inner text before parsing.
source (string)
None
Assigns parser to this handler.
Each instance of handler is guaranteed to be called only from the one parser.
parser (wx.html.HtmlParser)
None
See GetSupportedTags
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4