< DevOps 
      YAML (YAML Ain't Markup Language) is a human-readable data serialization language.
Basic YAML file example with one record:
# An employee record
martin_smith:
    name: Martin Smith
    job: Developer
    skill: Elite
Basic YAML file example with two record:
# My employee records
# An employee record
- martin_smith:
    name: Martin Smith
    job: Developer
    skill: Elite
# An employee record
- Thomas_Edisson:
    name: Tomas Eddison
    job: Developer
    skill: Basic
Activities
- Write a YAML file and test it with yq: yq r your_new_yaml_file.yml[1]
- Read 10 YAML tips for people who hate YAML https://www.redhat.com/sysadmin/yaml-tips. (yamllint)
- Read https://en.wikipedia.org/wiki/Comparison_of_data-serialization_formats
- Read stackoverflow YAML related questions: https://stackoverflow.com/questions/tagged/yaml?tab=Votes
See also
References
    This article is issued from Wikiversity. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.