Preserve LHS quotes when converting to properties style #818
-
Saw discussion 699 when trying to migrate from v3 to v4 where we used YAML:
when we use the suggestion in 699 we get
but what we would like to see is
Is that possible? Not all that familiar with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The quotes on that key are part of the yaml formatting style as opposed to the value - so they do not come through when processing the data. The closest I can get is to wrap all the properties:
to get:
Not sure if that helps? Note that this requires v4.9.1 to be able to escape double quotes in a double quoted string. |
Beta Was this translation helpful? Give feedback.
The quotes on that key are part of the yaml formatting style as opposed to the value - so they do not come through when processing the data.
The closest I can get is to wrap all the properties:
to get:
Not sure if that helps?
Note that this requires v4.9.1 to be able to escape double quotes in a double quoted string.