From ef3e840ac4874e52aa52da6ed5f0afddafa61d1a Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Tue, 12 Oct 2021 19:24:40 +0200 Subject: Allow whitespace trimming in {{raw}} blocks --- testing/tests/simple.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'testing/tests') diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index c712900..e66485a 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -433,6 +433,16 @@ fn test_raw_complex() { ); } +#[derive(Template)] +#[template(path = "raw-ws.html")] +struct RawTemplateWs; + +#[test] +fn test_raw_ws() { + let template = RawTemplateWs; + assert_eq!(template.render().unwrap(), "<{{hello}}>\n<{{bye}}>"); +} + mod without_import_on_derive { #[derive(askama::Template)] #[template(source = "foo", ext = "txt")] -- cgit