openfed / AccessibilityCheck

BOSA Accessibility Check is a client-side JavaScript application that checks a HTML document or source code, and detects violations of a defined coding standard. Comes with standards that cover the three conformance levels of the W3C's Web Content Accessibility Guidelines (WCAG) 2.1 and the U.S. Section 508 legislation.
https://openfed.github.io/AccessibilityCheck/
BSD 3-Clause "New" or "Revised" License
24 stars 7 forks source link

link to "#/something" considered link to anchor #32

Open kridevos opened 3 weeks ago

kridevos commented 3 weeks ago

We use VueJS as client application framework. All internal links look similar to this: The accessibilitycheck finds all internal links and complains that they are pointing to a non-existing anchor on the page. This is correct, there is no anchor, but the VueJS routing system interprets these links and displays another page.

Is it possible to stop checking links to "#/..." ? thanks