askama
Installation
SKILL.md
Askama Templates in Rust
Overview
Askama templates are Rust code compiled at build time. Templates share the module scope where #[derive(Template)] appears — everything visible there is usable in the template.
Quick Reference - What to Load
| If you're... | Load |
|---|---|
| Learning Askama syntax, conditionals, loops, match | references/template-syntax.md |
| Seeing "method not found" or "type not found" errors | references/scope-debugging.md |
| Tempted to convert a type to String to fix an error | references/scope-debugging.md |
Using or creating filters, the safe filter |
references/filters.md |
| Using template extends, blocks, includes | references/inheritance.md |
| Rendering HTML fragments for HTMX hx-swap | references/htmx-partials.md |