Files
tree-sitter-django/test/corpus/include.txt
T
2026-08-11 17:41:09 -05:00

34 lines
443 B
Plaintext

==================
Include With String
==================
{% include "sidebar.html" %}
---
(template
(content)
(include
(filtered_value
(value
(literal
(string)))))
(content))
==================
Include With Variable
==================
{% include template_name %}
---
(template
(content)
(include
(filtered_value
(value
(variable_attribute
(identifier)))))
(content))