From 70e59f7f3d1229d30f11683e3b0a86bdfdf40cd9 Mon Sep 17 00:00:00 2001
From: khswong <42327203+khswong@users.noreply.github.com>
Date: Fri, 31 Jan 2020 16:30:16 -0800
Subject: [toml/en] Fix Formatting and Syntax Highlighting

Switching between json code block and toml code block caused it to render improperly. Fixed.
---
 toml.html.markdown | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

(limited to 'toml.html.markdown')

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": [
     {
-- 
cgit v1.2.3