Link checker error on links to another site page #2607
-
What is the proper way to link a site page from another site page? For example, I have a link on my
Clicking on this link in my deployed website properly takes me to the
I have this same problem for every link to a page on the on site, where it works properly when deployed but fails the link check. What is the proper way to write this link so it doesn't error on the link checker? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There are 2 link checkers actions:
The correct way to reference pages is: [Link to a page]({% link _pages/projects.md %})
[Link to a project]({% link _projects/1_project.md %})
[Link to a blog post]({% post_url 2015-05-15-images %}) Note that you can't add filters to |
Beta Was this translation helpful? Give feedback.
There are 2 link checkers actions:
The correct way to reference pages is:
Note that you can't add filters to
link
tags. For example, you cannot append a string using Liquid filters, such as{% link mypage.html | append: "#section1" %}
. To link to sections on…