Skip to content

Commit

Permalink
move tag list pages to /tags/... (plural)
Browse files Browse the repository at this point in the history
  • Loading branch information
luto committed Apr 29, 2019
1 parent 99439e6 commit e4abe87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions authorship/authorship/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run(self):

for item in env.tag_list.get(env.docname, []):
elem = nodes.inline()
elem += nodes.reference('', '#' + item, refuri='/tag/' + item)
elem += nodes.reference('', '#' + item, refuri='/tags/' + item)
elem.set_class('tag')
container += elem
container += nodes.raw('', ' ', format='html')
Expand Down Expand Up @@ -210,7 +210,7 @@ def tag_pages(app):

return [
(
'tag/' + t,
'tags/' + t,
{
'tag': t,
'title': '#' + t,
Expand Down

0 comments on commit e4abe87

Please sign in to comment.