blob: 438bc04ada68052f7ff0d960cd23b374951e9c2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
%YAML 1.1
---
!!map {
? !!str "in the block context"
: !!map {
? !!str "indentation should be kept"
: !!map {
? !!str "but in the flow context"
: !!seq [ !!str "it may be violated" ]
}
}
}
--- !!str
"the parser does not require scalars to be indented with at least one space"
--- !!str
"the parser does not require scalars to be indented with at least one space"
--- !!map
{ ? !!str "foo": { ? !!str "bar" : !!str "quoted scalars may not adhere indentation" } }
|