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