kirei 25.10.27

Askama formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Clone)]
pub struct Config {
    pub(crate) indent_size: usize,
    pub(crate) max_width: usize,
}

impl Default for Config {
    fn default() -> Self {
        Self {
            indent_size: 4,
            max_width: 80,
        }
    }
}

// Not much to see right now...
// Configuration will be handled here in the future