Skip to content

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 supersedes get_template_string (will be removed in v1). The new get_template is the same as get_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, or get_template_name.