You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to place some blank lines between properties.
In my case this is helpful for separating sections of the yaml.
Example:
Considering this class:
public class MyYaml
{
public Section Section1 { get; set; }
public Section Section2 { get; set; }
}
I am getting this:
section1:
name: section 1 name
section2:
name: section 2 name
But I want this:
section1:
name: section 1 name
section2:
name: section 2 name
Tried to emmit a Scalar event with a break line, but it does not work properly as introduces some other chars.
I guess that there might be a cleaner way of doing this
The text was updated successfully, but these errors were encountered:
How to place some blank lines between properties.
In my case this is helpful for separating sections of the yaml.
Example:
Considering this class:
I am getting this:
But I want this:
Tried to emmit a Scalar event with a break line, but it does not work properly as introduces some other chars.
I guess that there might be a cleaner way of doing this
The text was updated successfully, but these errors were encountered: