We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input:
<!-- A global capture defines elsewhere --> {%- capture theme_base %}{{ site.theme | prepend: "/themes/" | relative_url }}{% endcapture -%} <!-- Show the image --> {% svg "{{ theme_base | prepend: site.assets }}/img/logo.svg" %}
Error:
Error: No such file or directory @ rb_sysopen - /path/to/jekyll-site/{{ theme_base | prepend: site.assets }}/img/logo.svg
Other filters like plus, downcase are also affected.
plus
downcase
My workaround:
... {%- assign logo_base = theme_base | prepend: site.assets -%} {% svg "{{ logo_base }}/img/logo.svg" %}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Input:
Error:
Other filters like
plus
,downcase
are also affected.My workaround:
The text was updated successfully, but these errors were encountered: