diff options
author | Marvin Jütte <marvin@juette.cc> | 2023-11-07 13:49:37 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-11-09 11:45:42 +0100 |
commit | ea4dab1251eccc63e8717c99327282b7af04671f (patch) | |
tree | 8a952288a4b3eb3f1510e5f7e4a684c4573a98c9 /askama_derive/src/config.rs | |
parent | 02602fde70f6fd4de1279bef037027f70a2cedab (diff) | |
download | askama-ea4dab1251eccc63e8717c99327282b7af04671f.tar.gz askama-ea4dab1251eccc63e8717c99327282b7af04671f.tar.bz2 askama-ea4dab1251eccc63e8717c99327282b7af04671f.zip |
add support for svg file extension
Diffstat (limited to '')
-rw-r--r-- | askama_derive/src/config.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/askama_derive/src/config.rs b/askama_derive/src/config.rs index 47801cd..2347f6c 100644 --- a/askama_derive/src/config.rs +++ b/askama_derive/src/config.rs @@ -299,7 +299,7 @@ pub(crate) fn get_template_source(tpl_path: &Path) -> std::result::Result<String static CONFIG_FILE_NAME: &str = "askama.toml"; static DEFAULT_SYNTAX_NAME: &str = "default"; static DEFAULT_ESCAPERS: &[(&[&str], &str)] = &[ - (&["html", "htm", "xml"], "::askama::Html"), + (&["html", "htm", "svg", "xml"], "::askama::Html"), (&["md", "none", "txt", "yml", ""], "::askama::Text"), (&["j2", "jinja", "jinja2"], "::askama::Html"), ]; @@ -564,7 +564,10 @@ mod tests { config.escapers, vec![ (str_set(&["js"]), "::askama::Js".into()), - (str_set(&["html", "htm", "xml"]), "::askama::Html".into()), + ( + str_set(&["html", "htm", "svg", "xml"]), + "::askama::Html".into() + ), ( str_set(&["md", "none", "txt", "yml", ""]), "::askama::Text".into() |