(stream, state)
| 214 | } |
| 215 | |
| 216 | function commentMode(stream, state) { |
| 217 | state.stack = { |
| 218 | parent: state.stack, |
| 219 | style: "comment", |
| 220 | indented: state.indented + 1, |
| 221 | tokenize: state.line |
| 222 | }; |
| 223 | state.line = comment; |
| 224 | return comment(stream, state); |
| 225 | } |
| 226 | |
| 227 | function attributeWrapper(stream, state) { |
| 228 | if (stream.eat(state.stack.endQuote)) { |