Yaml: Difference between revisions
From DWIKI
mNo edit summary |
m →Links Tag: wikieditor |
||
| (9 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
=Links= | =Links= | ||
*[https://yaml.org/ The Official YAML site] | |||
*[https://spacelift.io/blog/yaml#basic-yaml-syntax Basic yaml syntax] | |||
*[http://rigaux.org/language-study/syntax-across-languages-per-language/YAML.html Yaml syntax] | *[http://rigaux.org/language-study/syntax-across-languages-per-language/YAML.html Yaml syntax] | ||
*[http://docs.ansible.com/ansible/latest/YAMLSyntax.html Ansible YAML syntax] | *[http://docs.ansible.com/ansible/latest/YAMLSyntax.html Ansible YAML syntax] | ||
*[https://hitchdev.com/strictyaml/why/implicit-typing-removed/ Strict Yaml] | |||
*[https://ruudvanasseldonk.com/2023/01/11/the-yaml-document-from-hell The Yaml document from hell] | |||
*[https://yamllint.readthedocs.io/en/stable/rules.html Yamllint rules] | |||
=Syntax= | =Syntax= | ||
==Comment== | |||
# or " | |||
==List== | |||
==Dictionary== | |||
name: value | |||
pair | |||
==Booleans== | ==Booleans== | ||
(Probably?) case sensitive | (Probably?) case sensitive | ||
===True=== | ===True=== | ||
y | y | ||
yes | yes | ||
on | on | ||
true | true | ||
===False | ===False=== | ||
n | n | ||
no | no | ||
off | off | ||
false | false | ||
=Tools= | |||
==yq== | |||
https://github.com/mikefarah/yq | |||
[[Category:Languages]] | [[Category:Languages]] | ||
Latest revision as of 11:47, 4 January 2026
Links
- The Official YAML site
- Basic yaml syntax
- Yaml syntax
- Ansible YAML syntax
- Strict Yaml
- The Yaml document from hell
- Yamllint rules
Syntax
Comment
- or "
List
Dictionary
name: value
pair
Booleans
(Probably?) case sensitive
True
y yes on true
False
n no off false
