diff options
Diffstat (limited to 'yaml.html.markdown')
| -rw-r--r-- | yaml.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/yaml.html.markdown b/yaml.html.markdown index c5d15895..6e3e2c94 100644 --- a/yaml.html.markdown +++ b/yaml.html.markdown @@ -33,7 +33,7 @@ however: "A string, enclosed in quotes."  "Keys can be quoted too.": "Useful if you want to put a ':' in your key."  # Multiple-line strings can be written either as a 'literal block' (using |), -# or a 'folded block' (using '>') +# or a 'folded block' (using '>').  literal_block: |      This entire block of text will be the value of the 'literal_block' key,      with line breaks being preserved. @@ -66,7 +66,7 @@ a_nested_map:  # Maps don't have to have string keys.  0.25: a float key -# Keys can also be multi-line objects, using ? to indicate the start of a key +# Keys can also be multi-line objects, using ? to indicate the start of a key.  ? |      This is a key      that has multiple lines @@ -79,7 +79,7 @@ a_nested_map:  a_sequence:      - Item 1      - Item 2 -    - 0.5 # sequences can contain disparate types +    - 0.5 # sequences can contain disparate types.      - Item 4      - key: value        another_key: another_value | 
