Hy there !
I am a very beginner in website programming.
I just discovered Zola (… and Tera … and Rust !) and i managed to make my personal website.
It works well so it’s great !
However, there is one thing that didn’t work : I tried to use in my website template the trim_start_matches
filter provided by Tera : https://tera.netlify.com/docs/#trim-start-matches
, but when I compile with Zola, I get :
Filter 'trim_start_matches' not found
I finally solved my problem by using instead the replace(from="my_string",to="")
filter.
But I still wanted to ask
Thanks !