(stream, state)
| 176 | } |
| 177 | |
| 178 | function htmlLine(stream, state) { |
| 179 | if (stream.match(/^\\$/)) { |
| 180 | return "lineContinuation"; |
| 181 | } |
| 182 | return html(stream, state); |
| 183 | } |
| 184 | function html(stream, state) { |
| 185 | if (stream.match(/^#\{/)) { |
| 186 | state.tokenize = rubyInQuote("}", state.tokenize); |