-
-
Save Cuneytt/5cdd04f1125b0e6cc0a4566cef13a257 to your computer and use it in GitHub Desktop.
Break YAML over multiple lines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Join multiple lines without new line | |
| value: > | |
| part 1 | |
| part 2 | |
| # Join with newline | |
| value2: | | |
| line 1 | |
| line 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment