(stream, state)
| 75 | state.localMode.token(stream, state.localState)); |
| 76 | } |
| 77 | function css(stream, state) { |
| 78 | if (stream.match(/^<\/\s*style\s*>/i, false)) { |
| 79 | state.token = html; |
| 80 | state.localState = state.localMode = null; |
| 81 | return null; |
| 82 | } |
| 83 | return maybeBackup(stream, /<\/\s*style\s*>/, |
| 84 | cssMode.token(stream, state.localState)); |
| 85 | } |
| 86 | |
| 87 | return { |
| 88 | startState: function() { |
no test coverage detected