From 50c64bc8650574d1e9243a50477eb7dbd36e36c4 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Tue, 9 Jan 2024 17:24:11 +0100 Subject: Make the `markdown` filter compatible with `String` This commit solves issue #719. This is done by making the markdown filter borrow the string and simplifying the filter to accept `&str` instead of `AsRef` Add test for the markdown filter using as input Revert markdown filter changes Revert unnecessary changes Improve test_markdown_owned_string test Use cargo fmt --- askama_derive/src/generator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_derive') diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index df15bdc..760a1f6 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -1200,7 +1200,7 @@ impl<'a> Generator<'a> { }; buf.write(&format!( - "::askama::filters::markdown({}, ", + "::askama::filters::markdown({}, &", self.input.escaper )); self.visit_expr(buf, md)?; -- cgit