(quote)
| 136 | } |
| 137 | |
| 138 | function inAttribute(quote) { |
| 139 | var closure = function(stream, state) { |
| 140 | while (!stream.eol()) { |
| 141 | if (stream.next() == quote) { |
| 142 | state.tokenize = inTag; |
| 143 | break; |
| 144 | } |
| 145 | } |
| 146 | return "string"; |
| 147 | }; |
| 148 | closure.isInAttribute = true; |
| 149 | return closure; |
| 150 | } |
| 151 | |
| 152 | function inBlock(style, terminator) { |
| 153 | return function(stream, state) { |