diff --git a/CHANGELOG.md b/CHANGELOG.md index e22f34f..04e3943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Critical items to know are: - changed behaviour ## [master](https://github.com/vsoch/docsy-jekyll/tree/master) + - bug that site tags and docs tags concating together without a comma (0.0.27) - added Windows hash for assets (0.0.26) - adding support for documentation versioning (0.0.25) - adding more verbose example for subfolders (0.0.24) diff --git a/VERSION b/VERSION index c4475d3..24ff855 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.26 +0.0.27 diff --git a/pages/tags.html b/pages/tags.html index 597e1d1..f9ae475 100644 --- a/pages/tags.html +++ b/pages/tags.html @@ -5,7 +5,7 @@

Tags Index

{% capture site_tags %}{% for tag in site.tags %}{% if tag %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endif %}{% endfor %}{% endcapture %}{% assign docs_tags = "" %}{% for doc in site.docs %}{% assign ttags = doc.tags | join:',' | append:',' %}{% assign docs_tags = docs_tags | append:ttags %}{% endfor %} -{% assign all_tags = site_tags | append:docs_tags %}{% assign tags_list = all_tags | split:',' | uniq | sort %} +{% assign all_tags = docs_tags | append:site_tags %}{% assign tags_list = all_tags | split:',' | uniq | sort %} {% for tag in tags_list %}{% if tag %}

{{ tag }}