v0.97 (2024-09-06)ยค
__
Fixยค
- Fixed template caching. You can now also manually create cached templates with
cached_template()
Refactorยค
-
The previously undocumented
get_template
was made private. -
In it's place, there's a new
get_template
, which supersedesget_template_string
(will be removed in v1). The newget_template
is the same asget_template_string
, except it allows to return either a string or a Template instance. -
You now must use only one of
template
,get_template
,template_name
, orget_template_name
.