Szabolcs
Szabolcs

Reputation: 25703

Link to tags from page with Pelican

I am using the Pelican static site generator. According to the documentation, it is possible to link to tags using the syntax {tag}tagname.

This works fine when linking from a blog article. However, if I link from a page, the link it generates will be to /pages/tag/tagname.html, which is incorrect. It should be /tag/tagname.html.

What is the correct way of linking to the list of articles under a certain tag, from a page?

Upvotes: 3

Views: 516

Answers (1)

loutre
loutre

Reputation: 894

You may report this as a bug.

However you can link to a tag's page using the following syntax:

`link text <../tag/tag_name.html>`_

Upvotes: 4

Related Questions