tulios / json-viewer

It is a Chrome extension for printing JSON and JSONP.
https://chrome.google.com/webstore/detail/json-viewer/gbmdgpbipfallnflgajpaliibnhdgobh
MIT License
3.31k stars 678 forks source link

json viewer shold not add 'pre' tag to html #230

Closed codeh2o closed 5 years ago

codeh2o commented 5 years ago
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
hello world,what's your name
</body>
</html>

json viewer adds pre tag to html.

<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<pre>
hello world,what's your name
</pre>
</body>
</html>

I think json viewer should only format json. otherwise it will lead to confusion

codeh2o commented 5 years ago

close because duplicated