We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e1a30a commit 0d1fe3dCopy full SHA for 0d1fe3d
website/plugins/gatsby-plugin-validate-links/utils.js
@@ -53,6 +53,10 @@ function deconstructLink(targetLink, documentSlug) {
53
54
function getBrokenLinks(document, otherDocuments) {
55
return document.links.filter((link) => {
56
+ if (link.url.startsWith("mailto:")) {
57
+ return false;
58
+ }
59
+
60
// extract potential heading from link
61
const { link: key, hash: headingAnchor } = deconstructLink(
62
link.url,
0 commit comments