Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion html2text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,13 +870,13 @@ def o(
self.outcount += 1

def handle_data(self, data: str, entity_char: bool = False) -> None:
data = data.strip()
if not data:
# Data may be empty for some HTML entities. For example,
# LEFT-TO-RIGHT MARK.
return

if self.stressed:
data = data.strip()
self.stressed = False
self.preceding_stressed = True
elif self.preceding_stressed:
Expand Down
Loading