json2html-flask icon indicating copy to clipboard operation
json2html-flask copied to clipboard

:snake: Webapp to convert complex JSON Object to HTML representation

Results 6 json2html-flask issues
Sort by recently updated
recently updated
newest added

It appears as though the demo website [json2html.varunmalhotra.xyz](http://json2html.varunmalhotra.xyz/) is no longer available.

Why doesn't the demo page use the json2html module? Wouldn't it make more sense to generate the html using the json2html module this should be demoing?

On running it on python3 it throws an error `ModuleNotFoundError: No module named 'UserDict'` Looks like UserDict is scrapped from python3 so any new commits for the same.

Hi, I absolutely love this package, thanks so much! Would it be possible to enable the top level element to be a list? It would make my life that little...

Interesting project! I found this little thing: **Input**: ``` js { "foo": "bar", "test": "alert()" } ``` **Output**: ``` html foobartestalert() ``` The `alert()` should be encoded to avoid XSS.