Merge pull request #4517 from Alex-Golub/master

[yaml/en] Add more information/examples about YAML capabilities
This commit is contained in:
Marcel Ribeiro Dantas 2022-10-18 00:06:49 +02:00 committed by GitHub
commit a7456cfa0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,10 @@
language: yaml language: yaml
filename: learnyaml.yaml filename: learnyaml.yaml
contributors: contributors:
- [Leigh Brenecki, 'https://leigh.net.au'] - [Leigh Brenecki, 'https://leigh.net.au']
- [Suhas SG, 'https://github.com/jargnar'] - [Suhas SG, 'https://github.com/jargnar']
--- ---
YAML is a data serialisation language designed to be directly writable and YAML is a data serialisation language designed to be directly writable and
@ -17,6 +19,7 @@ YAML doesn't allow literal tab characters for indentation.
--- # document start --- # document start
# Comments in YAML look like this. # Comments in YAML look like this.
# YAML support single-line comments.
################ ################
# SCALAR TYPES # # SCALAR TYPES #
@ -28,11 +31,23 @@ key: value
another_key: Another value goes here. another_key: Another value goes here.
a_number_value: 100 a_number_value: 100
scientific_notation: 1e+12 scientific_notation: 1e+12
# The number 1 will be interpreted as a number, not a boolean. if you want hex_notation: 0x123 # evaluates to 291
# it to be interpreted as a boolean, use true octal_notation: 0123 # evaluates to 83
# The number 1 will be interpreted as a number, not a boolean.
# If you want it to be interpreted as a boolean, use true.
boolean: true boolean: true
null_value: null null_value: null
key with spaces: value key with spaces: value
# Yes and No (doesn't matter the case) will be evaluated to boolean
# true and false values respectively.
# To use the actual value use single or double quotes.
no: no # evaluates to "false": false
yes: No # evaluates to "true": false
not_enclosed: yes # evaluates to "not_enclosed": true
enclosed: "yes" # evaluates to "enclosed": yes
# Notice that strings don't need to be quoted. However, they can be. # Notice that strings don't need to be quoted. However, they can be.
however: 'A string, enclosed in quotes.' however: 'A string, enclosed in quotes.'
'Keys can be quoted too.': "Useful if you want to put a ':' in your key." 'Keys can be quoted too.': "Useful if you want to put a ':' in your key."
@ -41,8 +56,13 @@ double quotes: "have many: \", \0, \t, \u263A, \x0d\x0a == \r\n, and more."
# UTF-8/16/32 characters need to be encoded # UTF-8/16/32 characters need to be encoded
Superscript two: \u00B2 Superscript two: \u00B2
# Special characters must be enclosed in single or double quotes
special_characters: "[ John ] & { Jane } - <Doe>"
# Multiple-line strings can be written either as a 'literal block' (using |), # Multiple-line strings can be written either as a 'literal block' (using |),
# or a 'folded block' (using '>'). # or a 'folded block' (using '>').
# Literal block turn every newline within the string into a literal newline (\n).
# Folded block removes newlines within the string.
literal_block: | literal_block: |
This entire block of text will be the value of the 'literal_block' key, This entire block of text will be the value of the 'literal_block' key,
with line breaks being preserved. with line breaks being preserved.
@ -61,6 +81,25 @@ folded_style: >
'More-indented' lines keep their newlines, too - 'More-indented' lines keep their newlines, too -
this text will appear over two lines. this text will appear over two lines.
# |- and >- removes the trailing blank lines (also called literal/block "strip")
literal_strip: |-
This entire block of text will be the value of the 'literal_block' key,
with trailing blank line being stripped.
block_strip: >-
This entire block of text will be the value of 'folded_style', but this
time, all newlines will be replaced with a single space and
trailing blank line being stripped.
# |+ and >+ keeps trailing blank lines (also called literal/block "keep")
literal_keep: |+
This entire block of text will be the value of the 'literal_block' key,
with trailing blank line being kept.
block_keep: >+
This entire block of text will be the value of 'folded_style', but this
time, all newlines will be replaced with a single space and
trailing blank line being kept.
#################### ####################
# COLLECTION TYPES # # COLLECTION TYPES #
#################### ####################
@ -87,7 +126,7 @@ a_nested_map:
# An example # An example
? - Manchester United ? - Manchester United
- Real Madrid - Real Madrid
: [2001-01-01, 2002-02-02] : [ 2001-01-01, 2002-02-02 ]
# Sequences (equivalent to lists or arrays) look like this # Sequences (equivalent to lists or arrays) look like this
# (note that the '-' counts as indentation): # (note that the '-' counts as indentation):
@ -98,24 +137,26 @@ a_sequence:
- Item 4 - Item 4
- key: value - key: value
another_key: another_value another_key: another_value
- - - This is a sequence
- This is a sequence
- inside another sequence - inside another sequence
- - - Nested sequence indicators - - - Nested sequence indicators
- can be collapsed - can be collapsed
# Since YAML is a superset of JSON, you can also write JSON-style maps and # Since YAML is a superset of JSON, you can also write JSON-style maps and
# sequences: # sequences:
json_map: {"key": "value"} json_map: { "key": "value" }
json_seq: [3, 2, 1, "takeoff"] json_seq: [ 3, 2, 1, "takeoff" ]
and quotes are optional: {key: [3, 2, 1, takeoff]} and quotes are optional: { key: [ 3, 2, 1, takeoff ] }
####################### #######################
# EXTRA YAML FEATURES # # EXTRA YAML FEATURES #
####################### #######################
# YAML also has a handy feature called 'anchors', which let you easily duplicate # YAML also has a handy feature called 'anchors', which let you easily duplicate
# content across your document. Both of these keys will have the same value: # content across your document.
# Anchors identified by & character which define the value.
# Aliases identified by * character which acts as "see above" command.
# Both of these keys will have the same value:
anchored_content: &anchor_name This string will appear as the value of two keys. anchored_content: &anchor_name This string will appear as the value of two keys.
other_anchor: *anchor_name other_anchor: *anchor_name
@ -123,28 +164,35 @@ other_anchor: *anchor_name
base: &base base: &base
name: Everyone has same name name: Everyone has same name
# The regexp << is called Merge Key Language-Independent Type. It is used to # The regexp << is called 'Merge Key Language-Independent Type'. It is used to
# indicate that all the keys of one or more specified maps should be inserted # indicate that all the keys of one or more specified maps should be inserted
# into the current map. # into the current map.
# NOTE: If key already exists alias will not be merged
foo: foo:
<<: *base <<: *base # doesn't merge the anchor
age: 10 age: 10
name: John
bar: bar:
<<: *base <<: *base # base anchor will be merged
age: 20 age: 20
# foo and bar would also have name: Everyone has same name # foo and bar would also have name: Everyone has same name
# YAML also has tags, which you can use to explicitly declare types. # YAML also has tags, which you can use to explicitly declare types.
# Syntax: !![typeName] [value]
explicit_boolean: !!bool true
explicit_integer: !!int 42
explicit_float: !!float -42.24
explicit_string: !!str 0.5 explicit_string: !!str 0.5
explicit_datetime: !!timestamp 2022-11-17 12:34:56.78 +9
explicit_null: !!null null
# Some parsers implement language specific tags, like this one for Python's # Some parsers implement language specific tags, like this one for Python's
# complex number type. # complex number type.
python_complex_number: !!python/complex 1+2j python_complex_number: !!python/complex 1+2j
# We can also use yaml complex keys with language specific tags # We can also use yaml complex keys with language specific tags
? !!python/tuple [5, 7] ? !!python/tuple [ 5, 7 ]
: Fifty Seven : Fifty Seven
# Would be {(5, 7): 'Fifty Seven'} in Python # Would be {(5, 7): 'Fifty Seven'} in Python
@ -154,9 +202,10 @@ python_complex_number: !!python/complex 1+2j
# Strings and numbers aren't the only scalars that YAML can understand. # Strings and numbers aren't the only scalars that YAML can understand.
# ISO-formatted date and datetime literals are also parsed. # ISO-formatted date and datetime literals are also parsed.
datetime: 2001-12-15T02:59:43.1Z datetime_canonical: 2001-12-15T02:59:43.1Z
datetime_with_spaces: 2001-12-14 21:59:43.10 -5 datetime_space_seperated_with_time_zone: 2001-12-14 21:59:43.10 -5
date: 2002-12-14 date_implicit: 2002-12-14
date_explicit: !!timestamp 2002-12-14
# The !!binary tag indicates that a string is actually a base64-encoded # The !!binary tag indicates that a string is actually a base64-encoded
# representation of a binary blob. # representation of a binary blob.
@ -171,7 +220,7 @@ set:
? item1 ? item1
? item2 ? item2
? item3 ? item3
or: {item1, item2, item3} or: { item1, item2, item3 }
# Sets are just maps with null values; the above is equivalent to: # Sets are just maps with null values; the above is equivalent to:
set2: set2:
@ -186,3 +235,4 @@ set2:
+ [YAML official website](https://yaml.org/) + [YAML official website](https://yaml.org/)
+ [Online YAML Validator](http://www.yamllint.com/) + [Online YAML Validator](http://www.yamllint.com/)
+ [JSON ⇆ YAML](https://www.json2yaml.com/)