1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Add support for spoilers

This commit is contained in:
Steffo 2022-02-22 04:49:04 +01:00
parent c145c3860b
commit 69c4e06da3
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -11,6 +11,8 @@ def tg_html_format(string: str) -> str:
- ``\uE002``: end underline
- ``\uE015``: start strike
- ``\uE005``: end strike
- ``\uE01F``: start spoiler
- ``\uE00F``: end spoiler
- ``\uE01C``: start single-line code
- ``\uE00C``: end single-line code
- ``\uE01D``: start multi-line code
@ -33,6 +35,8 @@ def tg_html_format(string: str) -> str:
string = string.replace("\uE001", "</i>")
string = string.replace("\uE015", "<s>")
string = string.replace("\uE005", "</s>")
string = string.replace("\uE01F", "<tg-spoiler>")
string = string.replace("\uE00F", "</tg-spoiler>")
string = string.replace("\uE012", "<u>")
string = string.replace("\uE002", "</u>")
string = string.replace("\uE01C", "<code>")