We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ba681 commit eb82548Copy full SHA for eb82548
1 file changed
codegen/validate-links.ts
@@ -24,8 +24,7 @@ const relativeLinkPattern =
24
/(?<!!)\]\((?!https?:\/\/|mailto:|#|{%|<|cursor:|file:)((?:[^)\\]|\\.)+)\)/g
25
26
// Matches HTML links like <a href="path"> but not external URLs or anchors.
27
-const htmlRelativeLinkPattern =
28
- /<a\s+href="(?!https?:\/\/|mailto:|#)([^"]+)"/g
+const htmlRelativeLinkPattern = /<a\s+href="(?!https?:\/\/|mailto:|#)([^"]+)"/g
29
30
// Matches HTML links with absolute docs.seam.co URLs.
31
const htmlAbsoluteUrlPattern = new RegExp(
0 commit comments