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
When creating links to tag pages, something like this is intuitive:
{% for tag in page.tags %} <li><a href="{{ site.baseurl }}/{{ site.tag_page_dir }}/{{ tag | slugify }}.html">{{ tag }}</a></li> {% endfor %}
Unfortunately, slugify is not compatible to your jekyll_tagging_slug.
slugify
jekyll_tagging_slug
I don't know how robust jekyll_tagging_slug is but you may want to switch to using slugify for consistency with other Jekyll stuff.
The text was updated successfully, but these errors were encountered:
FWIW, {{ tag | jekyll_tagging_slug }} works and does create the correct URLs. If this request gets declined, please document this. Thanks!
{{ tag | jekyll_tagging_slug }}
Sorry, something went wrong.
No branches or pull requests
When creating links to tag pages, something like this is intuitive:
Unfortunately,
slugify
is not compatible to yourjekyll_tagging_slug
.I don't know how robust
jekyll_tagging_slug
is but you may want to switch to usingslugify
for consistency with other Jekyll stuff.The text was updated successfully, but these errors were encountered: