Replace entities in all cases.

This commit is contained in:
Kovid Goyal 2007-08-20 00:59:22 +00:00
parent d5bd948404
commit 6c40b0149e

View File

@ -378,6 +378,9 @@ class HTMLConverter(object):
text += c['alt']
return text
text += self.get_text(c)
if text:
for rule, sub in self.__class__.ENTITY_RULES:
text = rule.sub(sub, text)
return text
def process_links(self, is_root, selfpath, link_level=0):