We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7ded55 + d0ccc6b commit ee36684Copy full SHA for ee36684
tkhtmlview/html_parser.py
@@ -115,7 +115,7 @@ class StyleTextDecoration:
115
Tag.DIV,
116
Tag.P,
117
Tag.PRE,
118
- Tag.CODE,
+ #Tag.CODE,
119
Tag.TABLE,
120
Tag.TR,
121
)
@@ -646,7 +646,7 @@ def handle_data(self, data):
646
data = data.lstrip()
647
648
data = data.replace("\n", " ").replace("\t", " ")
649
- data = f"{data} " # FIXME: attaching a space in blind is wrong
+ data = f"{data}" # FIXME: attaching a space in blind is wrong - SPACE REMOVED
650
data = self._remove_multi_spaces(data)
651
if len(self.html_tags) and self.html_tags[-1] in (
652
HTML.Tag.UL,
0 commit comments