Global web icon
ibm.com
https://www.ibm.com/think/topics/yaml
What is YAML? - IBM
YAML is a versatile, human-readable data serialization language commonly used for writing configuration files.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/3790454/how-do…
How do I break a string in YAML over multiple lines?
YAML makes wrong things right - for example, an innocuous colon within one string in a string array makes YAML interpret it as an array of objects. It violates the principle of least astonishment.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/72082343/what-…
What is the difference between '>-' and '|-' in yaml?
Newlines in folded block scalars (>) are subject to line folding, newlines in literal block scalars (|) are not. Line folding replaces a single newline between non-empty lines with a space, and in the case of empty lines, reduces the number of newline characters between the surrounding non-empty lines by one:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/41063361/what-…
What is the << (double left arrow) syntax in YAML called, and where's ...
However, I am confused about where this syntax comes from or why it works. CTRL + F ing the YAML specification for << reveals that it doesn't appear anywhere in the specification. Yet it's supported by, at the very least, PyYAML and Online YAML Parser. What is this syntax, and how come it doesn't seem to appear in the specification?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1726802/what-i…
What is the difference between YAML and JSON? - Stack Overflow
What are the differences between YAML and JSON, specifically considering the following things? Performance (encode/decode time) Memory consumption Expression clarity Library availability, ease of ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/50788277/why-3…
why --- (3 dashes/hyphen) in yaml file? - Stack Overflow
So I just started using YAML file instead of application.properties as it is more readable. I see in YAML files they start with ---. I googled and found the below explanation. YAML uses three das...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79440470/how-t…
How to pass a variable into a YAML template parameter and use it in a ...
How to pass a variable into a YAML template parameter and use it in a condition Asked 9 months ago Modified 9 months ago Viewed 2k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/22268952/what-…
What is the difference between .yaml and .yml extension?
I saw there are someone using .yaml extension, however, Symfony2 use .yml extension. YAML is a human-readable data serialization format that takes concepts from programming languages such as C, Perl, and Python, and ideas from XML and the data format of electronic mail. YAML is a recursive acronym for "YAML Ain't Markup Language".
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/19109912/do-i-…
Do I need quotes for strings in YAML? - Stack Overflow
YAML provides three flow scalar styles: double-quoted, single-quoted and plain (unquoted). Each provides a different trade-off between readability and expressive power. Double-quoted style: The double-quoted style is specified by surrounding " indicators. This is the only style capable of expressing arbitrary strings, by using \ escape sequences.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1773805/how-ca…
How can I parse a YAML file in Python - Stack Overflow
The script can parse yaml from a file (function load), parse yaml from a string (function loads) and convert a dictionary into yaml (function dumps). It respects all variable types.