Notes On ...

YAML

WorkInProgress

YAML (YAML Ainโ€™t Markup Language) is a data interchange format, with syntax based on Pythonโ€™s ๐Ÿ—’๏ธ indentation style. Instead of using {curly braces} (like JSON ๐Ÿ—’๏ธ), or HTML-like <tags> (like XML), YAML uses whitespace characters like indentation to indicate nesting.

YAML is often used in configuration files, internet messaging, object persistence, and data auditing/visualization.

Syntax

Example

aboutMe.yaml

# aboutMe.yaml -- this is a comment
first_name: Gesty
last_name: Linaga
location:
    Country: United States,
    State: California
hobbies:
    - hobby: surfing
      category: physical
    - hobby: coding
      category: creative
instrumentsIPlay: 
    - bass 
    - guitar 
    - drums...sometimes