diff --git a/mode/smartymixed/smartymixed.js b/mode/smartymixed/smartymixed.js index 3290d17d80ed63b6988f806a0b7433f10b9c29ac..4fc7ca4b606ec2ef60e7a9e5e4a95bc356258dbc 100644 --- a/mode/smartymixed/smartymixed.js +++ b/mode/smartymixed/smartymixed.js @@ -77,7 +77,11 @@ CodeMirror.defineMode("smartymixed", function(config) { var parsers = { html: function(stream, state) { - if (!state.inLiteral && stream.match(regs.htmlHasLeftDelimeter, false) && state.htmlMixedState.htmlState.tagName === null) { + var htmlTagName = state.htmlMixedState.htmlState.context && state.htmlMixedState.htmlState.context.tagName + ? state.htmlMixedState.htmlState.context.tagName + : null; + + if (!state.inLiteral && stream.match(regs.htmlHasLeftDelimeter, false) && htmlTagName === null) { state.tokenize = parsers.smarty; state.localMode = smartyMode; state.localState = smartyMode.startState(htmlMixedMode.indent(state.htmlMixedState, ""));