SiteLint documentation and guidelines

Multiple text links that look the same should also link to the same content (such as “Read more”)

Description

Rule ID: links-same-content-different-url

This rule determines if there are links that point to the same location but have same content.

Examples of incorrect code for this rule:

<a href="https://www.sitelint.com/about-us">About us</a>
<a href="https://www.sitelint.com/different-location">About us</a>

Examples of correct code for this rule:

<a href="https://www.sitelint.com/about-us">About us</a>
<a href="https://www.sitelint.com/different-location">Different location</a>

How to fix it

Ensure that links with the same description point to the same location.

Known Limitations

Not Applicable