matheel-framework / html_utils.py
buelfhood's picture
Sync from GitHub via hub-sync
d1668d6 verified
raw
history blame contribute delete
110 Bytes
import html
def escape_html(value):
return html.escape("" if value is None else str(value), quote=True)