aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/MarkupSafe/py3/markupsafe/_native.py
blob: 088b3bca9839ee489eefa546a0773a465b8cd0ca (plain) (blame)
1
2
3
4
5
6
7
8
def _escape_inner(s: str, /) -> str:
    return (
        s.replace("&", "&")
        .replace(">", ">")
        .replace("<", "&lt;")
        .replace("'", "&#39;")
        .replace('"', "&#34;")
    )