(stream, state)
| 26 | return style; |
| 27 | } |
| 28 | function javascript(stream, state) { |
| 29 | if (stream.match(/^<\/\s*script\s*>/i, false)) { |
| 30 | state.token = html; |
| 31 | state.localState = null; |
| 32 | state.mode = "html"; |
| 33 | return html(stream, state); |
| 34 | } |
| 35 | return maybeBackup(stream, /<\/\s*script\s*>/, |
| 36 | jsMode.token(stream, state.localState)); |
| 37 | } |
| 38 | function css(stream, state) { |
| 39 | if (stream.match(/^<\/\s*style\s*>/i, false)) { |
| 40 | state.token = html; |
nothing calls this directly
no test coverage detected