forked from marianoguerra/json-edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (34 loc) · 1.72 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
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Json Edit</title>
<link rel="stylesheet" href="css/json.edit.css">
<link rel="stylesheet" href="css/demo.json.edit.css">
<link rel="stylesheet" href="http://marianoguerra.github.com/squide/css/squide.css">
<link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="http://ioncache.github.com/Tag-Handler/css/jquery.taghandler.css">
<style>
.je-tagHandler ul.tagHandlerContainer { margin: 0; }
</style>
<link rel="stylesheet" href="src/addons/summarylist/addon.css">
<script data-main="js/demo" src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.0.2/require.min.js"></script>
</head>
<body>
<h1>Json Edit</h1>
<p class="project-description">give me a <a href="http://json-schema.org">json schema</a>, I give you a form, give
me the data (user input) I give you a validated json object matching the json
schema</p>
<h2>Test it</h2>
<p>go to the <a href="test/">test page</a> to run the unit tests</p>
<h2>Download it</h2>
<p><a href="src/json.edit.js">json-edit</a></p>
<h2>Try it!</h2>
<p>edit the JSON on the left, click <em>run</em> and see it on the right,
enter some data, click <em>validate</em> and see the result at the
bottom.</p>
<a href="https://github.com/marianoguerra/json-edit"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
</body>
</html>