diff --git a/src/libprs500/ebooks/lrf/objects.py b/src/libprs500/ebooks/lrf/objects.py index eb3faceeef..fba17ceddd 100644 --- a/src/libprs500/ebooks/lrf/objects.py +++ b/src/libprs500/ebooks/lrf/objects.py @@ -547,7 +547,7 @@ class Text(LRFStream): style = property(fget=lambda self : self._document.objects[self.style_id]) - text_map = { 0x22: u'"', 0x26: u'&', 0x27: u'&squot;', 0x3c: u'<', 0x3e: u'>' } + text_map = { 0x22: u'"', 0x26: u'&', 0x27: u'\'', 0x3c: u'<', 0x3e: u'>' } entity_pattern = re.compile(r'&(\S+?);') text_tags = {