Skip to content

Commit

Permalink
Fix bug where rendered tag links were spaced incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
minkezhang committed Feb 13, 2021
1 parent 332e58c commit e18f107
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,3 @@ https://jekyllrb.com/docs/ruby-101/
# Copy files instead of symlinks when JEKYLL_ENV == production.
JEKYLL_ENV=production; bundle exec jekyll clean && bundle exec jekyll serve
```

## TODO

- [ ] Import `collection.html` layout and associated `card.html` fragment from
personal blog.
2 changes: 2 additions & 0 deletions _includes/byline.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<a href="/category/{{ l }}">{{ l }}</a>
{% endif %}
{% endcapture %}
{% assign m = m | strip %}
{% assign ls = ls | push: m %}
{% else %}
{% assign ls = ls | push: l %}
Expand All @@ -60,6 +61,7 @@
<a href="/tag/{{ l }}">{{ l }}</a>
{% endif %}
{% endcapture %}
{% assign m = m | strip %}
{% assign ls = ls | push: m %}
{% else %}
{% assign ls = ls | push: l %}
Expand Down

0 comments on commit e18f107

Please sign in to comment.