Commit b3cd28a5 by Brian Coca

Merge pull request #9815 from axiaoxin/devel

members of a list must start with ``- ``
parents 12968acd 58388129
...@@ -25,7 +25,7 @@ Ansible or not) should begin with ``---``. This is part of the YAML ...@@ -25,7 +25,7 @@ Ansible or not) should begin with ``---``. This is part of the YAML
format and indicates the start of a document. format and indicates the start of a document.
All members of a list are lines beginning at the same indentation level starting All members of a list are lines beginning at the same indentation level starting
with a ``-`` (dash) character:: with a ``- `` (dash and whitespace) character::
--- ---
# A list of tasty fruits # A list of tasty fruits
...@@ -34,7 +34,7 @@ with a ``-`` (dash) character:: ...@@ -34,7 +34,7 @@ with a ``-`` (dash) character::
- Strawberry - Strawberry
- Mango - Mango
A dictionary is represented in a simple ``key:`` and ``value`` form:: A dictionary is represented in a simple ``key: `` (colon and whitespace) and ``value`` form::
--- ---
# An employee record # An employee record
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment