1
0
Fork 0
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:
Roderik Ploszek 2018-02-18 17:34:09 +01:00
parent 72ad11c9ee
commit cacca44f72

View file

@ -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):