CloudyKit / jet

Jet template engine
Apache License 2.0
1.26k stars 106 forks source link

Prevent cyclic imports #199

Open alarbada opened 2 years ago

alarbada commented 2 years ago

Cyclic imports add an infinite loop in the latest jet version.

Edit:

This:

<!-- file test1.html -->
{{ import "./test2.html" }}
<p> hi </p>

<!-- file test2.html -->
{{ import "./test1.html" }}
<p> hello </p>

Makes jet go into an infinite loop when executing one of these templates.