Fixed error while unparsing consecutive entities (#885)

This commit is contained in:
Andrea Princic 2022-01-29 18:50:51 +01:00 committed by GitHub
parent 333d22afca
commit c7888437e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,10 +175,7 @@ class HTML:
entities_offsets.append((start_tag, start,)) entities_offsets.append((start_tag, start,))
entities_offsets.append((end_tag, end,)) entities_offsets.append((end_tag, end,))
# sorting by offset (desc) for entity, offset in reversed(entities_offsets):
entities_offsets.sort(key=lambda x: -x[1])
for entity, offset in entities_offsets:
text = text[:offset] + entity + text[offset:] text = text[:offset] + entity + text[offset:]
return utils.remove_surrogates(text) return utils.remove_surrogates(text)