(quote, style)
| 118 | }; |
| 119 | |
| 120 | function tokenStringStart(quote, style) { |
| 121 | return function(stream, state) { |
| 122 | state.tokens[0] = tokenString(quote, style) |
| 123 | stream.next() |
| 124 | return tokenize(stream, state) |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | var tokenDollar = function(stream, state) { |
| 129 | if (state.tokens.length > 1) stream.eat('$'); |
no test coverage detected