1
Fork 0
mirror of https://github.com/Steffo99/greed.git synced 2025-02-16 13:43:58 +00:00
greed/utils.py

6 lines
177 B
Python
Raw Normal View History

2018-04-16 12:18:42 +02:00
def telegram_html_escape(string: str):
return string.replace("<", "&lt;") \
.replace(">", "&gt;") \
.replace("&", "&amp;") \
.replace('"', "&quot;")