This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 205
Translate and filter not possible #181
Comments
would this work?
|
No this does not work, neither. It's still empty. |
My bad, it should be
and can you confirm that |
This does not work neither. I have: <title>{%- t post.title -%}</title> which prints the title but without {% assign post_title = t post.title %}
{{ post_title }} This does print nothing. It seems,
Is empty, too. |
this for sure would work tho, and seems to be issue...with chaining liquid filters, something I admittedly don't understand very well {% capture yolo %}{% t post.title %}{% endcapture %}
<title>{{ yolo | xml_escape }}</title> |
Thank you, this works for me. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For the RSS feed I need to pipe the translated string through
|xml_escape
. Before using jekyll-multiple-languages-plugin, I had this:Now I'm searching for a solution like:
But this results in an empty string.
The text was updated successfully, but these errors were encountered: