(stream, state)
| 231 | } |
| 232 | |
| 233 | function includeFiltered(stream, state) { |
| 234 | if (stream.match(/^include:([a-zA-Z0-9\-]+)/, false) && stream.match('include')) { |
| 235 | state.isIncludeFiltered = true; |
| 236 | return KEYWORD; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | function includeFilteredContinued(stream, state) { |
| 241 | if (state.isIncludeFiltered) { |