mirror of
https://github.com/cupcakearmy/cometa.git
synced 2025-03-12 14:27:28 +00:00
Update README.md
This commit is contained in:
parent
d1a7b2751c
commit
80c1a8127c
17
README.md
17
README.md
@ -50,7 +50,7 @@ npm i cometa
|
||||
### Variable
|
||||
|
||||
```json
|
||||
{myVar: "ok"}
|
||||
{"myVar": "ok"}
|
||||
```
|
||||
|
||||
```html
|
||||
@ -75,7 +75,12 @@ True is everything that is different from:
|
||||
- `''`
|
||||
|
||||
```json
|
||||
{ myVar: 'something'|true|[1,2,3]|42|...}
|
||||
{
|
||||
"myVar": "something",
|
||||
"myVar": true,
|
||||
"myVar": [1,2,3],
|
||||
"myVar": 42,
|
||||
}
|
||||
```
|
||||
|
||||
```html
|
||||
@ -88,10 +93,10 @@ True is everything that is different from:
|
||||
|
||||
```json
|
||||
{
|
||||
links: [
|
||||
{id:0, name: "One"},
|
||||
{id:1, name: "Two"},
|
||||
{id:2, name: "Three"}
|
||||
"links": [
|
||||
{"id":0, "name": "One"},
|
||||
{"id":1, "name": "Two"},
|
||||
{"id":2, "name": "Three"}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user