(stream, state)
| 66 | return style; |
| 67 | } |
| 68 | function script(stream, state) { |
| 69 | if (stream.match(/^<\/\s*script\s*>/i, false)) { |
| 70 | state.token = html; |
| 71 | state.localState = state.localMode = null; |
| 72 | return null; |
| 73 | } |
| 74 | return maybeBackup(stream, /<\/\s*script\s*>/, |
| 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; |
nothing calls this directly
no test coverage detected