Commit d9712b3
fix: exclude angle brackets from bare URL match in validate-links
The bare absolute-URL regex stopped only at whitespace, `)`, and `"`. When
a `docs.seam.co/latest/...` URL appeared as anchor text inside HTML
(e.g. `>https://docs.seam.co/latest/foo</a></td>`), the match greedily
swallowed the trailing tags and reported the malformed path as broken.
Adding `<` and `>` to the exclusion set lets the bare URL pattern
terminate at the closing `<`, so cross-section absolute URLs in the
guides README validate cleanly.1 parent 370e3bd commit d9712b3
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
0 commit comments