mirror of
https://github.com/Steffo99/greed.git
synced 2025-02-16 13:43:58 +00:00
* Do a lot of progress on the new config system * Completely rework the configuration system * Improve logging messages
5 lines
177 B
Python
5 lines
177 B
Python
def telegram_html_escape(string: str):
|
|
return string.replace("<", "<") \
|
|
.replace(">", ">") \
|
|
.replace("&", "&") \
|
|
.replace('"', """)
|