diff --git a/mode/htmlmixed/htmlmixed.js b/mode/htmlmixed/htmlmixed.js index dc48978eb2e89bff9bed00dac207a4031b813f4b..250ef8cd243fcc7155488ff79b54f3f18ce7e4a5 100644 --- a/mode/htmlmixed/htmlmixed.js +++ b/mode/htmlmixed/htmlmixed.js @@ -30,6 +30,7 @@ CodeMirror.defineMode("htmlmixed", function(config, parserConfig) { function html(stream, state) { var tagName = state.htmlState.tagName; + if (tagName) tagName = tagName.toLowerCase(); var style = htmlMode.token(stream, state.htmlState); if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") { // Script block: mode to change to depends on type attribute