Updated version number to 2.3.0-SNAPSHOT. Updated readme and docs
This commit is contained in:
parent
97d0cc01dd
commit
baf7082f5d
16
README.md
16
README.md
|
@ -31,6 +31,14 @@ a code editor.
|
||||||
- Library can be loaded as CommonJS module, AMD module, or as a regular javascript file.
|
- Library can be loaded as CommonJS module, AMD module, or as a regular javascript file.
|
||||||
|
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
- [Docs](https://github.com/josdejong/jsoneditor/tree/master/docs)
|
||||||
|
- [Examples](https://github.com/josdejong/jsoneditor/tree/master/examples)
|
||||||
|
- [Source](https://github.com/josdejong/jsoneditor)
|
||||||
|
- [History](https://github.com/josdejong/jsoneditor/blob/master/HISTORY.md)
|
||||||
|
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
|
||||||
with npm:
|
with npm:
|
||||||
|
@ -81,14 +89,6 @@ download:
|
||||||
</html>
|
</html>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Documentation
|
|
||||||
|
|
||||||
- Docs: [https://github.com/josdejong/jsoneditor/tree/master/docs](https://github.com/josdejong/jsoneditor/tree/master/docs)
|
|
||||||
- Examples: [https://github.com/josdejong/jsoneditor/tree/master/examples](https://github.com/josdejong/jsoneditor/tree/master/examples)
|
|
||||||
- Source: [https://github.com/josdejong/jsoneditor](https://github.com/josdejong/jsoneditor)
|
|
||||||
- History: [https://github.com/josdejong/jsoneditor/blob/master/HISTORY.md](https://github.com/josdejong/jsoneditor/blob/master/HISTORY.md)
|
|
||||||
|
|
||||||
|
|
||||||
### Build
|
### Build
|
||||||
|
|
||||||
The code of the JSON Editor is located in the folder `jsoneditor`.
|
The code of the JSON Editor is located in the folder `jsoneditor`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.2.0",
|
"version": "2.3.0-SNAPSHOT",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
"json",
|
"json",
|
||||||
|
|
|
@ -33,7 +33,7 @@ Optionally, [jsonlint](https://github.com/zaach/jsonlint) can be loaded to get
|
||||||
more detailed error messages.
|
more detailed error messages.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script type="text/javascript" src="lib/jsonlint/jsonlint.js"></script>
|
<script type="text/javascript" src="jsoneditor/lib/jsonlint/jsonlint.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Code editor
|
### Code editor
|
||||||
|
@ -44,10 +44,10 @@ Also, the content type must be specified on the page.
|
||||||
```html
|
```html
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||||
|
|
||||||
<script type="text/javascript" src="../lib/ace/ace.js"></script>
|
<script type="text/javascript" src="jsoneditor/lib/ace/ace.js"></script>
|
||||||
<script type="text/javascript" src="../lib/ace/mode-json.js"></script>
|
<script type="text/javascript" src="jsoneditor/lib/ace/mode-json.js"></script>
|
||||||
<script type="text/javascript" src="../lib/ace/theme-textmate.js"></script>
|
<script type="text/javascript" src="jsoneditor/lib/ace/theme-textmate.js"></script>
|
||||||
<script type="text/javascript" src="../lib/ace/theme-jsoneditor.js"></script>
|
<script type="text/javascript" src="jsoneditor/lib/ace/theme-jsoneditor.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Use
|
## Use
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.2.0",
|
"version": "2.3.0-SNAPSHOT",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
"json",
|
"json",
|
||||||
|
|
Loading…
Reference in New Issue