mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Fixed Typo and added a few examples
This commit is contained in:
parent
1ada1d35bb
commit
bb97b7c3e4
@ -117,7 +117,7 @@ date4 = 1979-05-27 # without offset or time
|
||||
|
||||
array1 = [ 1, 2, 3 ]
|
||||
array2 = [ "Commas", "are", "delimiters" ]
|
||||
array3 = [ "Don't mixed", "different", "types" ]
|
||||
array3 = [ "Don't mix", "different", "types" ]
|
||||
array4 = [ [ 1.2, 2.4 ], ["all", 'strings', """are the same""", '''type'''] ]
|
||||
array5 = [
|
||||
"Whitespace", "is", "ignored"
|
||||
@ -171,6 +171,9 @@ c = 1
|
||||
[a]
|
||||
d = 2
|
||||
|
||||
# Will generate the following in JSON:
|
||||
# { "a": {"b": {"c": 1}, "d": 2 } }
|
||||
|
||||
# You cannot define any key or table more than once. Doing so is invalid.
|
||||
|
||||
# DO NOT DO THIS
|
||||
@ -221,6 +224,24 @@ name = "Nail"
|
||||
sku = 284758393
|
||||
color = "gray"
|
||||
|
||||
# JSON-land styled structure:
|
||||
```json
|
||||
{
|
||||
"products": [
|
||||
{
|
||||
"name": "array of table",
|
||||
"sku": 7385594937,
|
||||
"emptyTableAreAllowed": true
|
||||
},
|
||||
{},
|
||||
{
|
||||
"name": "Nail",
|
||||
"sku": 284758393,
|
||||
"color": "gray"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
# You can create nested arrays of tables as well. Each double-bracketed
|
||||
# sub-table will belong to the nearest table element above it.
|
||||
|
||||
@ -247,7 +268,7 @@ color = "gray"
|
||||
note = "I am an array item in banana fruit's table/map"
|
||||
```
|
||||
|
||||
In JSON land, this code will be:
|
||||
# In JSON land, this code will be:
|
||||
|
||||
```json
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user