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
This bug is the same as Brackets bug: adobe/brackets#2906 . Note that this bug also existed with original implementation of mustache type (it was not introduced with recent changes).
If I change the mode from null to "htmlmixed", the coloring for that block is fixed, but subsequent script blocks are messed up.
I think it's because "htmlmixed" mode inside the <script> block doesn't handle the closing script tag (i.e. </script>) as it is handled in the the script() function in htmlmixed.js.
What do you think is he best way to fix this one?
The text was updated successfully, but these errors were encountered:
This bug is the same as Brackets bug: adobe/brackets#2906 . Note that this bug also existed with original implementation of mustache type (it was not introduced with recent changes).
CodeMirror has the same bug in the htmlmixed demo page: http://codemirror.net/mode/htmlmixed/index.html
Put this markup in the htmlmixed mode demo page:
The first line of markup is colored correctly, but the second line is not.
The scriptType (for both the demo page and Brackets) is defined as follows:
If I change the mode from null to "htmlmixed", the coloring for that block is fixed, but subsequent script blocks are messed up.
I think it's because "htmlmixed" mode inside the <script> block doesn't handle the closing script tag (i.e. </script>) as it is handled in the the script() function in htmlmixed.js.
What do you think is he best way to fix this one?
The text was updated successfully, but these errors were encountered: