About 19,600,000 results
Open links in new tab
  1. What is YAML? - IBM

    YAML is a versatile, human-readable data serialization language commonly used for writing configuration files.

  2. How do I break a string in YAML over multiple lines?

    Sep 6, 2016 · There are 5 6 NINE (or 63*, depending how you count) different ways to write multi-line strings in YAML. TL;DR Use > if you want to break a string up for readability but for it to …

  3. 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 …

  4. Do I need quotes for strings in YAML? - Stack Overflow

    Oct 1, 2013 · I am trying to write a YAML dictionary for internationalisation of a Rails project. I am a little confused though, as in some files I see strings in double-quotes and in some without. A …

  5. What is the difference between '>-' and '|-' in yaml?

    May 2, 2022 · 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 …

  6. VS Code: Unwanted automatic YAML file formatting

    I just started using Visual Studio Code and am faced with an annoyance every time I paste in YAML code in an existing .yml file. Basically, the editor seems to auto-format the document …

  7. 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...

  8. What is the << (double left arrow) syntax in YAML called, and …

    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 …

  9. 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 …

  10. How can I create profiles with spring boot + .yaml?

    Oct 3, 2018 · Create application.yaml and define all default properties there. Create application-local.yaml and override properties needed for the local profile. Create application-test.yaml …