1
0
Fork 0

Fixed a little issue with classes not being here

This commit is contained in:
Casey 2023-05-09 18:42:47 +03:00
parent 7955120a7c
commit 0f3cac3cbf
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ def node_to_html(el: PageElement) -> str:
"span": lambda tag: (
(
'<span class="tg-spoiler">%s</span>'
if "_mfm_blur_" in tag["class"]
if "_mfm_blur_" in tag.attrs.get("class", "")
else "%s"
)
% str.join("", map(node_to_html, tag.children))
@ -186,7 +186,7 @@ def node_to_markdown(el: PageElement) -> str:
"`%s`" % str.join("", map(node_to_markdown, tag.children))
),
"span": lambda tag: (
("||%s||" if "_mfm_blur_" in tag["class"] else "%s")
("||%s||" if "_mfm_blur_" in tag.attrs.get("class", "") else "%s")
% str.join("", map(node_to_markdown, tag.children))
),
"blockquote": lambda tag: (