mirror of
https://github.com/Steffo99/greed.git
synced 2024-11-21 13:34:18 +00:00
Stefano Pigozzi
6a49756394
* 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('"', """)
|