cheatsheets/yaml.md

27 lines
238 B
Markdown

---
title: Yaml
category: Markup
layout: 2017/sheet
prism_languages: [yaml]
---
### Multiline strings
```yaml
Multiline: |
hello
world
```
### Inheritance
```yaml
parent: &defaults
a: 2
b: 3
child:
<<: *defaults
b: 4
```