Love the broken anchor check, it's great. Except I have this one page that has a component that takes query parameters. So it gets broken by that. It would be great to extend the docusaurus config to have a list of pages to not check for broken links to.
example of broken link that actually works!
``
"/docs/tools/sparql/yasgui#query=PREFIX%20rdf%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%3E%0APREFIX%20rdfs%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E%0APREFIX%20lincs%3A%20%3Chttp%3A%2F%2Fwww.id.lincsproject.ca%2F%3E%0APREFIX%20skos%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F2004%2F02%2Fskos%2Fcore%23%3E%0APREFIX%20crm%3A%20%3Chttp%3A%2F%2Fwww.cidoc-crm.org%2Fcidoc-crm%2F%3E%0A%0ASELECT%20*%20WHERE%20%7B%20%0A%20%20GRAPH%20%3Chttp%3A%2F%2Fgraph.lincsproject.ca%2Fusaskart%3E%7B%0A%20%20%20%3Fdonor%20crm%3AP23i_surrendered_title_through%20%3FAcquisitionEvent%20.%20%0A%0A%20%20%7D%20%0A%7D&endpoint=https%3A%2F%2Ffuseki.lincsproject.ca%2Flincs%2Fsparql&requestMethod=POST&tabTitle=Query&headers=%7B%7D&contentTypeConstruct=application%2Fn-triples%2C*%2F*%3Bq%3D0.9&contentTypeSelect=application%2Fsparql-results%2Bjson%2C*%2F*%3Bq%3D0.9&outputFormat=table&outputSettings=%7B%22isEllipsed%22%3Atrue%2C%22compact%22%3Afalse%7D"
``
We link to several queries throughout our pages using a button wrapper around the Link component. I don't want to outright ignore all anchors because it's a really helpful feature to ensure our other content links are valid and not broken. Just links to this one page I want to be ignored.
I saw mention of a
data-noBrokenLinkCheck parameter
to pass to the link that would work for regular links but I'm wondering if there's an equivalent for anchors that could work.