| Current Path : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/site-packages/markupsafe/ |
| Current File : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/site-packages/markupsafe/_native.py |
def _escape_inner(s: str, /) -> str:
return (
s.replace("&", "&")
.replace(">", ">")
.replace("<", "<")
.replace("'", "'")
.replace('"', """)
)