mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Help html parser fix
Fixes problem with unformatted help text. Implements correct handling of tag start and end as implemented in sgmllib from Python 2.
This commit is contained in:
parent
72ad11c9ee
commit
cacca44f72
1 changed files with 19 additions and 0 deletions
|
@ -64,6 +64,25 @@ class HTMLParser(htmllib.HTMLParser):
|
|||
else:
|
||||
self.formatter.add_flowing_data(data)
|
||||
|
||||
def handle_starttag(self, tag, attrs):
|
||||
try:
|
||||
method = getattr(self, 'start_' + tag)
|
||||
except AttributeError:
|
||||
try:
|
||||
method = getattr(self, 'do_' + tag)
|
||||
except AttributeError:
|
||||
self.unknown_starttag(tag, attrs)
|
||||
return
|
||||
method(attrs)
|
||||
|
||||
def handle_endtag(self, tag):
|
||||
try:
|
||||
method = getattr(self, 'end_' + tag)
|
||||
except AttributeError:
|
||||
self.unknown_endtag(tag)
|
||||
return
|
||||
method()
|
||||
|
||||
# --- Hooks to save data; shouldn't need to be overridden
|
||||
|
||||
def save_bgn(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue