This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
executable file
·44 lines (37 loc) · 2.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JSON Syntax Highlight & Format</title>
<meta name="description" content="JSON Syntax Highlighter - Paste Ugly JSON and I'll Make it Pretty ;)" />
<meta name="keywords" content="JSON, Syntax, Highlight, Format, Reformat" />
<meta name="author" content="Peter Schmalfeldt - http://www.peterschmalfeldt.com" />
<meta name="publisher" content="Peter Schmalfeldt - http://www.peterschmalfeldt.com" />
<meta name="robots" content="index, follow" />
<link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="css/style.css?v=0.5" />
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico?v=0.5" />
</head>
<body>
<div id="wrapper">
<h1 class="logo">JSON<span>Syntax Highlight & Format</span></h1>
<a href="#" class="reset">reset</a>
<input id="url" type="text" name="url" title="Paste your API url. I'll make it pretty for you ;)" placeholder="Paste your API url. I'll make it pretty for you ;)">
<textarea id="source" autocomplete="off" title="Paste your ugly, compressed JSON in here. I'll make it pretty for you ;)" placeholder="Paste your ugly, compressed JSON in here. I'll make it pretty for you ;)" spellcheck="false"></textarea>
<pre id="result"></pre>
<div id="output_wrapper"></div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="js/site.js?v=0.5"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31092804-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>