diff options
| author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-02-01 10:24:43 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-01 10:24:43 +0100 | 
| commit | f80889ed47ae42ca4ea2b8118e2b3c48c37eeb9c (patch) | |
| tree | 58c1b8e24481243e0a9087e8faec56f86ef6bc1a /toml.html.markdown | |
| parent | a0f91aacf973114021cf0f789399e6b9c20f3093 (diff) | |
| parent | 70e59f7f3d1229d30f11683e3b0a86bdfdf40cd9 (diff) | |
Merge pull request #3838 from khswong/patch-2
[toml/en] Fix code snippet formatting
Diffstat (limited to 'toml.html.markdown')
| -rwxr-xr-x | toml.html.markdown | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/toml.html.markdown b/toml.html.markdown index 4c76ee91..2b234965 100755 --- a/toml.html.markdown +++ b/toml.html.markdown @@ -12,7 +12,7 @@ It is an alternative to YAML and JSON. It aims to be more human friendly than JS  Be warned, TOML's spec is still changing a lot. Until it's marked as 1.0, you  should assume that it is unstable and act accordingly. This document follows TOML v0.4.0.  -``` +```toml  # Comments in TOML look like this.  ################ @@ -223,8 +223,8 @@ emptyTableAreAllowed = true  name = "Nail"  sku = 284758393  color = "gray" - -# JSON-land styled structure: +``` +The equivalent in JSON would be:  ```json  {     "products": [ @@ -242,6 +242,8 @@ color = "gray"    ]  }  ``` + +```toml  # You can create nested arrays of tables as well. Each double-bracketed  # sub-table will belong to the nearest table element above it. @@ -266,11 +268,11 @@ color = "gray"    [[fruit.color]]      name = "yellow"      note = "I am an array item in banana fruit's table/map" -``` - -# In JSON land, this code will be: +``` +The equivalent in JSON would be:  ```json +  {    "fruit": [      { | 
