Files
tree-sitter-django/test/corpus/extends.txt
T
2026-08-11 17:39:34 -05:00

36 lines
470 B
Plaintext

==================
Extends With String
==================
{% extends "base.html" %}
<h1>Hello</h1>
---
(template
(content)
(extends
(filtered_value
(value
(literal
(string)))))
(content))
==================
Extends With Variable
==================
{% extends base_template %}
<h1>Hello</h1>
---
(template
(content)
(extends
(filtered_value
(value
(variable_attribute
(identifier)))))
(content))