mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 06:21:13 +00:00
27 lines
898 B
Plaintext
27 lines
898 B
Plaintext
error: ambiguous whitespace stripping
|
|
use `{#- -#}` to apply the same whitespace stripping on both sides
|
|
--> <source attribute>:1:1
|
|
"{#-#}Y"
|
|
--> tests/ui/ambiguous-ws-raw.rs:4:21
|
|
|
|
|
4 | #[template(source = r#"X{#-#}Y"#, ext = "html")]
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: ambiguous whitespace stripping
|
|
use `{#+ +#}` to apply the same whitespace stripping on both sides
|
|
--> <source attribute>:1:1
|
|
"{#+#}Y"
|
|
--> tests/ui/ambiguous-ws-raw.rs:8:21
|
|
|
|
|
8 | #[template(source = r#"X{#+#}Y"#, ext = "html")]
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: ambiguous whitespace stripping
|
|
use `{#~ ~#}` to apply the same whitespace stripping on both sides
|
|
--> <source attribute>:1:1
|
|
"{#~#}Y"
|
|
--> tests/ui/ambiguous-ws-raw.rs:12:21
|
|
|
|
|
12 | #[template(source = r#"X{#~#}Y"#, ext = "html")]
|
|
| ^^^^^^^^^^^^
|