(self, *args, **kwargs)
| 1516 | BeautifulStoneSoup before writing your own subclass.""" |
| 1517 | |
| 1518 | def __init__(self, *args, **kwargs): |
| 1519 | if not kwargs.has_key('smartQuotesTo'): |
| 1520 | kwargs['smartQuotesTo'] = self.HTML_ENTITIES |
| 1521 | kwargs['isHTML'] = True |
| 1522 | BeautifulStoneSoup.__init__(self, *args, **kwargs) |
| 1523 | |
| 1524 | SELF_CLOSING_TAGS = buildTagMap(None, |
| 1525 | ('br' , 'hr', 'input', 'img', 'meta', |