(stream, state, offset)
| 198 | } |
| 199 | |
| 200 | function startHtmlMode(stream, state, offset) { |
| 201 | state.stack = { |
| 202 | parent: state.stack, |
| 203 | style: "html", |
| 204 | indented: stream.column() + offset, // pipe + space |
| 205 | tokenize: state.line |
| 206 | }; |
| 207 | state.line = state.tokenize = html; |
| 208 | return null; |
| 209 | } |
| 210 | |
| 211 | function comment(stream, state) { |
| 212 | stream.skipToEnd(); |
no outgoing calls
no test coverage detected