(stream, state)
| 217 | } |
| 218 | } |
| 219 | function block(stream, state) { |
| 220 | if (stream.match(/^block\b *(?:(prepend|append)\b)?/)) { |
| 221 | state.restOfLine = 'variable'; |
| 222 | return KEYWORD; |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | function include(stream, state) { |
| 227 | if (stream.match(/^include\b/)) { |