YAML Extension
Extensions
| # | Name | Category | Description | Resources |
|---|---|---|---|---|
| 1 | YAML Format | misc | YAML Ain't Markup Language | 1 item |
Details
YAML Format
YAML (YAML Ain’t Markup Language) is a human-friendly data serialization standard commonly used for configuration, data exchange, and declarative documents.
Design Goals
- Readable by humans
- Supports rich data structures (lists, maps, scalars)
- Language agnostic
Basic Example
person:
name: Alice
age: 30
languages:
- English
- French
Further Reading
- Official site: https://yaml.org/
- Wikipedia: YAML