1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-16 14:04:47 +02:00
Files
cheatsheets/yaml.md
2017-09-20 16:08:11 +08:00

238 B

title, category, layout, prism_languages
title category layout prism_languages
Yaml Markup 2017/sheet
yaml

Multiline strings

Multiline: |
  hello
  world

Inheritance

parent: &defaults
  a: 2
  b: 3

child:
  <<: *defaults
  b: 4