Set background colour when hiding/showing.
[dom-editor.git] / Dome / Html.py
blob1543ebb62666f9f9cd06c1ba56dfdd1f0eb3099b
1 from xml.dom.ext.reader import HtmlLib, Sgmlop
3 class Reader(HtmlLib.Reader):
4 def __init__(self):
5 self.parser = MyHtmlParser()
7 class MyHtmlParser(Sgmlop.HtmlParser):
8 def handle_special(self, data):
9 print "handle_special: ignored '" + data + "'"