Files
oam/knowledge base/yaml.md
2023-07-09 21:35:14 +02:00

514 B

YAML

Table of contents

  1. TL;DR
  2. Further readings

TL;DR

---
# This is a comment
string: this is a string
number: 0
truthy: true
list:
  - element
  - element
object:
  key: value
  nested:
    can: do
    lists:
      - too

Further readings