Fix links to tag pages in blogposts when tag is not lowercase
This commit is contained in:
parent
abd037068d
commit
f19cbacb2d
2 changed files with 2 additions and 1 deletions
1
.github/CONTRIBUTORS.md
vendored
1
.github/CONTRIBUTORS.md
vendored
|
|
@ -14,3 +14,4 @@ In alphabetical order:
|
||||||
11. Panos Sakkos <panos.sakkos@protonmail.com>
|
11. Panos Sakkos <panos.sakkos@protonmail.com>
|
||||||
12. Prashant Solanki <prs.solanki@live.com>
|
12. Prashant Solanki <prs.solanki@live.com>
|
||||||
13. Sergey Lysenko <soulwish.ls@gmail.com>
|
13. Sergey Lysenko <soulwish.ls@gmail.com>
|
||||||
|
14. Simon Böhm <simonboehm@gmx.de>
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
<a href="{{site.baseurl}}{{page.url }}#disqus_thread">Comments</a>
|
<a href="{{site.baseurl}}{{page.url }}#disqus_thread">Comments</a>
|
||||||
<br />
|
<br />
|
||||||
{% for tag in page.tags %}
|
{% for tag in page.tags %}
|
||||||
<a class="tag" href="{{site.baseurl}}/tags/{{tag}}.html">#{{ tag }}</a>
|
<a class="tag" href="{{site.baseurl}}/tags/{{tag | downcase}}.html">#{{ tag }}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</small>
|
</small>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue