[BAEL-3750] Breaking YAML Strings Over Multiple Lines (#8664)

* [BAEL-3750] Breaking YAML Strings Over Multiple Lines

* Added yamo module to appropriate profiles

* Article improvements

* Fix

* [BAEL-3750] Moved multi line yaml files from the yaml module to the libraries-data-io folder

* [BAEL-3750] deleted the yaml module

Co-authored-by: cristirosu <cristi.rosu4@gmail.com>
This commit is contained in:
chris9408
2020-02-10 17:28:28 +02:00
committed by GitHub
parent 1c5597e481
commit 5860e8baa6
11 changed files with 143 additions and 0 deletions
@@ -0,0 +1,4 @@
key: >
Line1
Line2
Line3
@@ -0,0 +1,8 @@
key: >
Line1
Line2
Line3
@@ -0,0 +1,6 @@
key: >+
Line1
Line2
Line3
@@ -0,0 +1,7 @@
key: >-
Line1
Line2
Line3
@@ -0,0 +1,4 @@
key: |
Line1
Line2
Line3
@@ -0,0 +1,10 @@
key: |
Line1
Line2
Line3
@@ -0,0 +1,5 @@
key: |+
Line1
Line2
Line3
@@ -0,0 +1,5 @@
key: |-
Line1
Line2
Line3
@@ -0,0 +1 @@
key: "Line1\nLine2\nLine3"
@@ -0,0 +1,3 @@
key: 'Line1\nLine2
Line3'