1
0
Fork 0

Apparently that squishes some things together

This commit is contained in:
Casey 2023-05-15 10:00:35 +03:00
parent 291a8b8643
commit cea0af44ba
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ from html import escape
@register_text_node_converter("html")
def proc_text_node_to_html(txt: NavigableString) -> str:
return escape(txt).strip()
return escape(txt)
@register_converter("a", "html")