diff options
Diffstat (limited to 'test/yaml/literal-block-2/input.yaml')
-rw-r--r-- | test/yaml/literal-block-2/input.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/yaml/literal-block-2/input.yaml b/test/yaml/literal-block-2/input.yaml new file mode 100644 index 0000000..a71fa09 --- /dev/null +++ b/test/yaml/literal-block-2/input.yaml @@ -0,0 +1,9 @@ +--- +literal block: | # line breaks and white spaces are preserved. + line 1 + line 2 + line 3 +multi line: # the lines are merged into "line 1 line 2 line 3" + line 1 + line 2 + line 3 |