(stream, state)
| 368 | |
| 369 | // handle CDATA |
| 370 | function tokenCDATA(stream, state) { |
| 371 | var ch; |
| 372 | while (ch = stream.next()) { |
| 373 | if (ch == "]" && stream.match("]", true)) { |
| 374 | state.tokenize = tokenBase; |
| 375 | return ret("comment", "comment"); |
| 376 | } |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | // handle preprocessing instructions |
| 381 | function tokenPreProcessing(stream, state) { |