An open API service indexing awesome lists of open source software.

https://github.com/aweirddev/thtml-escape


https://github.com/aweirddev/thtml-escape

escape html html-escape

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# thtml-escape

Dependency of `thtmlx` for (un)escaping HTML.

```python
from thtml_escape import encode, decode

print(encode('" onmouseover="alert(1)'))
# " onmouseover="alert(1)

print(decode('" onmouseover="alert(1)'))
```