Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
Closed
Description
I noticed a problem with the yaml parser component in version 2.3.3. The folded style block seem to not correctly parse line breaks which includes indents oder blank lines.
Here is a small example:
small: test: > <h2>A heading</h2> <ul> <li>a list</li> <li>may be a good example</li> </ul>I would expect a resulting string like:
<h2>A heading</h2><ul><li>a list</li><li>may be a good example</li></ul>Currently I receive something like that:
<h2>A heading</h2><ul> <li>a list</li> <li>may be a good example</li></ul>The parse should not replace the line break and all following white spaces with a space. Lines with no content should be omitted too.