How can I break a long string in YAML (like long url, or filename/path), without newlines becoming spaces?
Example input:
url: >
https://example.com/?what=Lorem
%20ipsum%20dolor
%20sit%20amet
Output:
{
"url": "https://example.com/?what=Lorem %20ipsum%20dolor %20sit%20amet"
}
Desired output:
{
"url": "https://example.com/?what=Lorem%20ipsum%20dolor%20sit%20amet"
}