MCPcopy
hub / github.com/pallets/jinja / Template

Class Template

src/jinja2/nodes.py:294–300  ·  view source on GitHub ↗

Node that represents a template. This must be the outermost node that is passed to the compiler.

Source from the content-addressed store, hash-verified

292
293
294class Template(Node):
295 """Node that represents a template. This must be the outermost node that
296 is passed to the compiler.
297 """
298
299 fields = ("body",)
300 body: t.List[Node]
301
302
303class Output(Stmt):

Calls

no outgoing calls