From 69fb399726f5947958eeef554d00b2b812e44e10 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Thu, 10 Jan 2019 17:17:07 +0100 Subject: [PATCH] Add failing shortcode body split test --- components/rendering/tests/markdown.rs | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/components/rendering/tests/markdown.rs b/components/rendering/tests/markdown.rs index 6149e4f..6f189ed 100644 --- a/components/rendering/tests/markdown.rs +++ b/components/rendering/tests/markdown.rs @@ -748,3 +748,30 @@ fn doesnt_try_to_highlight_content_from_shortcode() { let res = render_content(markdown_string, &context).unwrap(); assert_eq!(res.body, expected); } + +// https://github.com/Keats/tera/issues/373 +#[test] +fn can_split_lines_shortcode_body() { + let permalinks_ctx = HashMap::new(); + let mut tera = Tera::default(); + tera.extend(&ZOLA_TERA).unwrap(); + + let shortcode = r#"{{ body | split(pat="\n") }}"#; + + let markdown_string = r#" +{% alert() %} +multi +ple +lines +{% end %} + "#; + + let expected = r#"

["multi", "ple", "lines"]

"#; + + tera.add_raw_template(&format!("shortcodes/{}.html", "alert"), shortcode).unwrap(); + let config = Config::default(); + let context = RenderContext::new(&tera, &config, "", &permalinks_ctx, InsertAnchor::None); + + let res = render_content(markdown_string, &context).unwrap(); + assert_eq!(res.body, expected); +}