Files
cheatsheets/yaml.md
Rico Sta. Cruz 132babca6e Update yaml.md
2020-02-23 20:34:51 +11:00

357 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

Reference content

values: &ref
  - These values
  - will be reused below
  
other_values:
  <<: *ref