* Do a lot of progress on the new config system * Completely rework the configuration system * Improve logging messages
6 lines
177 B
Python
6 lines
177 B
Python
def telegram_html_escape(string: str):
|
|
return string.replace("<", "<") \
|
|
.replace(">", ">") \
|
|
.replace("&", "&") \
|
|
.replace('"', """)
|