We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @almays on February 20, 2017 21:28
I have yaml files with texts. Texts can be multiline, include markdown. I screen out the texts with | thing.
|
En: | Some text: continuation of the text.
In this case Some text is colorized as a key. But actually due to | it is going to be parsed as part of the text.
Some text
Yaml2json converter, for example, interpretes this syntax as expected:
{ "En": "Some text: continuation of the text. \n" }
But yaml colorizer mistakenly takes : in this case as key/value delimiter.
:
Copied from original issue: microsoft/vscode#20959
The text was updated successfully, but these errors were encountered:
I think this is the same issue with #17, no?
Sorry, something went wrong.
Yes, looks like a duplicate of #17
No branches or pull requests
From @almays on February 20, 2017 21:28
I have yaml files with texts.
Texts can be multiline, include markdown. I screen out the texts with
|
thing.In this case
Some text
is colorized as a key. But actually due to|
it is going to be parsed as part of the text.Yaml2json converter, for example, interpretes this syntax as expected:
But yaml colorizer mistakenly takes
:
in this case as key/value delimiter.Copied from original issue: microsoft/vscode#20959
The text was updated successfully, but these errors were encountered: