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
This might be part of the yaml spec, I am not sure. When I have a long key name it can end up wrapping like so:
- ? Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
:
Is there any way to keep that as a single line with standard formatting?
Also, is it possible to select the alternate list format?
Currently, A list will serialize into the format:
attributes:
- itemA
- itemB
- itemC
I would like to be able to have it output in the format:
attributes: [itemA, itemB, itemC]
if possible.
Another weird case:
If my key in python is "3'b000 : 0", in the yaml serial it is '3''b000 : 0':The single quoting seems to be a bit odd to me. I am not sure if this is valid or not.
The text was updated successfully, but these errors were encountered:
This might be part of the yaml spec, I am not sure. When I have a long key name it can end up wrapping like so:
Is there any way to keep that as a single line with standard formatting?
Also, is it possible to select the alternate list format?
Currently, A list will serialize into the format:
I would like to be able to have it output in the format:
if possible.
Another weird case:
If my key in python is
"3'b000 : 0"
, in the yaml serial it is'3''b000 : 0':
The single quoting seems to be a bit odd to me. I am not sure if this is valid or not.The text was updated successfully, but these errors were encountered: