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
Currently the first item in a levels with multiple items is written in YAML with both the level sequence dash and the first items map dash on the same line.
- - item1
- item2
- - id: item1keyOfItem1: valueOfItem1
- item2
This makes it harder to distinguish between the contents of the first item and the other items in the level.
For example, fold/unfold in a YAML editor will usually be performed on a line. So the fold/unfold can only be performed on both the contents of first item and the other items in the level.
Having a line break after the first level sequence dash avoids this problem.
-
- item1
- item2
-
- id: item1keyOfItem1: valueOfItem1
- item2
The text was updated successfully, but these errors were encountered:
Currently the first item in a levels with multiple items is written in YAML with both the level sequence dash and the first items map dash on the same line.
This makes it harder to distinguish between the contents of the first item and the other items in the level.
For example, fold/unfold in a YAML editor will usually be performed on a line. So the fold/unfold can only be performed on both the contents of first item and the other items in the level.
Having a line break after the first level sequence dash avoids this problem.
The text was updated successfully, but these errors were encountered: