aboutsummaryrefslogblamecommitdiffstats
path: root/book/src/configuration.md
blob: 7c687241c02ad491e5b95f328d8d8053ca706f41 (plain) (tree)


































































                                                                                  
# Configuration

At compile time, Askama will read optional configuration values from
`askama.toml` in the crate root (the directory where `Cargo.toml` can
be found). Currently, this covers the directories to search for templates,
custom syntax configuration and escaper configuration.

This example file demonstrates the default configuration:

```toml
[general]
# Directories to search for templates, relative to the crate root.
dirs = ["templates"]
```

Here is an example that defines two custom syntaxes:

```toml
[general]
default_syntax = "foo"

[[syntax]]
name = "foo"
block_start = "%{"
comment_start = "#{"
expr_end = "^^"

[[syntax]]
name = "bar"
block_start = "%%"
block_end = "%%"
comment_start = "%#"
expr_start = "%{"
```

A syntax block consists of at least the attribute `name` which uniquely
names this syntax in the project.

The following keys can currently be used to customize template syntax:

* `block_start`, defaults to `{%`
* `block_end`, defaults to `%}`
* `comment_start`, defaults to `{#`
* `comment_end`, defaults to `#}`
* `expr_start`, defaults to `{{`
* `expr_end`, defaults to `}}`

Values must be 2 characters long and start delimiters must all start with the same
character. If a key is omitted, the value from the default syntax is used.

Here is an example of a custom escaper:

```toml
[[escaper]]
path = "::tex_escape::Tex"
extensions = ["tex"]
```

An escaper block consists of the attributes `path` and `name`. `path`
contains a Rust identifier that must be in scope for templates using this
escaper. `extensions` defines a list of file extensions that will trigger
the use of that escaper. Extensions are matched in order, starting with the
first escaper configured and ending with the default escapers for HTML
(extensions `html`, `htm`, `xml`, `j2`, `jinja`, `jinja2`) and plain text
(no escaping; `md`, `yml`, `none`, `txt`, and the empty string). Note that
this means you can also define other escapers that match different extensions
to the same escaper.