| 1 |
{ |
| 2 |
"name": "jinja-html", |
| 3 |
"scopeName": "text.html.jinja", |
| 4 |
"comment": "Jinja HTML Templates", |
| 5 |
"firstLineMatch": "^{% extends [\"'][^\"']+[\"'] %}", |
| 6 |
"foldingStartMarker": "(<(?i:(head|table|tr|div|style|script|ul|ol|form|dl))\\b.*?>|{%\\s*(block|filter|for|if|macro|raw))", |
| 7 |
"foldingStopMarker": "(</(?i:(head|table|tr|div|style|script|ul|ol|form|dl))\\b.*?>|{%\\s*(endblock|endfilter|endfor|endif|endmacro|endraw)\\s*%})", |
| 8 |
"patterns": [ |
| 9 |
{ |
| 10 |
"include": "source.jinja" |
| 11 |
}, |
| 12 |
{ |
| 13 |
"include": "text.html.basic" |
| 14 |
} |
| 15 |
] |
| 16 |
} |
| 17 |
|