1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 07:28:25 +02:00
cheatsheets/yaml.md
2015-11-24 16:09:17 +11:00

178 B

title, category
title category
Yaml Markup
Multiline: |
  hello
  world

Inheritance: &defaults
  a: 2
  b: 3

Inherit:
  <<: *defaults
  b: 4