botserver/askama.toml

14 lines
356 B
TOML

[general]
# Configure Askama to look for templates in ui/ directory
dirs = ["ui"]
# Enable syntax highlighting hints for editors
syntax = [{ name = "html", ext = ["html"] }]
# Escape HTML by default for security
escape = "html"
# Custom filters module path
[custom]
# Register custom filters from the web::filters module
filters = "crate::web::filters"