(stream, state)
| 445 | } |
| 446 | |
| 447 | function text(stream, state) { |
| 448 | if (stream.match(/^(?:\| ?| )([^\n]+)/)) { |
| 449 | return 'string'; |
| 450 | } |
| 451 | if (stream.match(/^(<[^\n]*)/, false)) { |
| 452 | // html string |
| 453 | setInnerMode(stream, state, 'htmlmixed'); |
| 454 | state.innerModeForLine = true; |
| 455 | return innerMode(stream, state, true); |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | function dot(stream, state) { |
| 460 | if (stream.eat('.')) { |
no test coverage detected