跳至主要内容

[Note] YAML

Basic

  • 冒號後面一定要有空格
# key-value pairs
name: John Doe
age: 30
is_employed: true

# Array
hobbies:
- reading
- traveling
- cooking

# Nested Object
address:
street: 123 Main St
city: Taipei
postal_code: 100

# Array of Object
projects:
- name: Project A
status: completed
technologies:
- Python
- Docker
- name: Project B
status: in progress
technologies:
- JavaScript
- React