(style, terminator)
| 150 | } |
| 151 | |
| 152 | function inBlock(style, terminator) { |
| 153 | return function(stream, state) { |
| 154 | while (!stream.eol()) { |
| 155 | if (stream.match(terminator)) { |
| 156 | state.tokenize = inText; |
| 157 | break; |
| 158 | } |
| 159 | stream.next(); |
| 160 | } |
| 161 | return style; |
| 162 | }; |
| 163 | } |
| 164 | function doctype(depth) { |
| 165 | return function(stream, state) { |
| 166 | var ch; |