diff options
author | jlescher <30441029+jlescher@users.noreply.github.com> | 2017-07-26 18:20:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-26 18:20:19 +0200 |
commit | 13f88bc73d6ed0540d6bf4acea74a863216a5ac7 (patch) | |
tree | 836cfef1fa70191313144c309d8c6f49e4c6f2a7 | |
parent | 6e7c5c793327f4a63b13e555894597915ca91fda (diff) |
Fix markdown formatting
Most markdown motors require a blank line before introducing a bullet list.
Since github-flavored markdown does not care whether there is an extra blank line or not, let's put one.
-rw-r--r-- | json.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/json.html.markdown b/json.html.markdown index a612cffe..cd42d42d 100644 --- a/json.html.markdown +++ b/json.html.markdown @@ -11,6 +11,7 @@ contributors: JSON is an extremely simple data-interchange format. As [json.org](http://json.org) says, it is easy for humans to read and write and for machines to parse and generate. A piece of JSON must represent either: + * A collection of name/value pairs (`{ }`). In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array. * An ordered list of values (`[ ]`). In various languages, this is realized as an array, vector, list, or sequence. an array/list/sequence (`[ ]`) or a dictionary/object/associated array (`{ }`). |