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
monaco-editor version: 0.14.2 Browser: Chrome OS: Win10 x60 Steps or JS usage snippet reproducing the issue:
Execute:
monaco.editor.create(document.getElementById("container"), { value: "{{{test}}}", language: "markdown" });
on this webpage:
https://microsoft.github.io/monaco-editor/playground.html
The coloring is broken.
Change vs/basic-languages/markdown/markdown.js:
vs/basic-languages/markdown/markdown.js
[/\{[^}]+\}/, 'string.target'],
into this:
[/\{+[^}]+\}+/, 'string.target'],
The coloring is fixed.
The text was updated successfully, but these errors were encountered:
@alexandrudima I'd like to work on this. This seems like a change in the monaco-language repository (https://github.com/Microsoft/monaco-languages/blob/master/src/markdown/markdown.ts#L134)
Sorry, something went wrong.
Fix markdown bug
6182bc8
Fixes issue: microsoft/monaco-editor#1107
No branches or pull requests
monaco-editor version: 0.14.2
Browser: Chrome
OS: Win10 x60
Steps or JS usage snippet reproducing the issue:
Execute:
on this webpage:
https://microsoft.github.io/monaco-editor/playground.html
The coloring is broken.
Change
vs/basic-languages/markdown/markdown.js
:into this:
The coloring is fixed.
The text was updated successfully, but these errors were encountered: