add files

This commit is contained in:
Bhavnoor Singh Saroya 2025-04-14 16:41:51 -07:00
parent a27f14f036
commit fb52d49f74
1664 changed files with 749794 additions and 0 deletions

View file

@ -0,0 +1,8 @@
def _escape_inner(s: str, /) -> str:
return (
s.replace("&", "&")
.replace(">", ">")
.replace("<", "&lt;")
.replace("'", "&#39;")
.replace('"', "&#34;")
)