Update README.md

This commit is contained in:
Nicco 2018-02-21 12:47:25 +01:00 committed by GitHub
parent d1a7b2751c
commit 80c1a8127c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ npm i cometa
### Variable ### Variable
```json ```json
{myVar: "ok"} {"myVar": "ok"}
``` ```
```html ```html
@ -75,7 +75,12 @@ True is everything that is different from:
- `''` - `''`
```json ```json
{ myVar: 'something'|true|[1,2,3]|42|...} {
"myVar": "something",
"myVar": true,
"myVar": [1,2,3],
"myVar": 42,
}
``` ```
```html ```html
@ -88,10 +93,10 @@ True is everything that is different from:
```json ```json
{ {
links: [ "links": [
{id:0, name: "One"}, {"id":0, "name": "One"},
{id:1, name: "Two"}, {"id":1, "name": "Two"},
{id:2, name: "Three"} {"id":2, "name": "Three"}
] ]
} }
``` ```