-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RawValues editor does not handle properly the YAML Multiline strings correctly #938
Comments
@j-zimnowoda because you need to escape | with a whitespace like so: |
Indeed there was missing white space. Take a look on the following example:
will produce
|
I can reproduce this, will look into it today |
From what I can see is that the problem does not lie with the |
Introduction of a new editor in otomi-console solves the formatting issues. However, there is an issue with multiline string syntax highlighting: uiwjs/react-monacoeditor#163. We are going to monitor the status of this issue and update the editor version |
Describe the bug: (a clear and concise description of what the bug is)
This issue occurs while setting values with
Multiline strings
in therawValues
editor in otomi console.The YAML syntax supports two kind of multi line stings
|
>
We observe that the very first
|
from the user input in removed while submitting the form, thus breaking the whole formatting of the YAML fileTo Reproduce
Steps to reproduce the behavior:
Expected behavior:
rawValues editor supports YAML Multiline strings
The text was updated successfully, but these errors were encountered: