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
Currently when we interrupt some markdown with inserts, it breaks the underlying syntax tree and hence highlighting:
Fixing this is far from trivial, as we probably would have to invert the way we parse things, starting with the underlying language and then adding an overlay language mixin on top of it (described here).
However we definitely don't want that for the interpreter parser. So we'd need two mixed languages.
For now, I would advise against working on this.
Steps to Reproduce
npm run start
add some text with bold markdown tags
add an insert inside of those tags
the syntax highlighting breaks
Expected Behavior
Syntax highlighting should remain, and the new styles should just be painted on top.
The text was updated successfully, but these errors were encountered:
Describe the Bug
Currently when we interrupt some markdown with inserts, it breaks the underlying syntax tree and hence highlighting:
Fixing this is far from trivial, as we probably would have to invert the way we parse things, starting with the underlying language and then adding an overlay language mixin on top of it (described here).
However we definitely don't want that for the interpreter parser. So we'd need two mixed languages.
For now, I would advise against working on this.
Steps to Reproduce
npm run start
Expected Behavior
The text was updated successfully, but these errors were encountered: