Skip to content

Commit

Permalink
chore: fix link-check config regexes
Browse files Browse the repository at this point in the history
Signed-off-by: Kristina Devochko <[email protected]>
  • Loading branch information
guidemetothemoon authored and leonardpahlke committed Nov 17, 2023
1 parent e2ee602 commit 0dd5cf4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions link-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
],
"replacementPatterns": [
{
"pattern": "^/",
"replacement": "{{BASEURL}}/"
"pattern": "^/images/",
"replacement": "/website/static/images/"
},
{
"pattern": "^file://github/workspace/images/",
"replacement": "{{BASEURL}}/images/"
"pattern": "^/landscape/",
"replacement": "/website/content/landscape/_index.md"
},
{
"pattern": "^file://github/workspace/landscape/",
"replacement": "{{BASEURL}}/landscape/"
"pattern": "^/landscape-ko/",
"replacement": "/website/content/landscape/SustainabilityUseCasesAndLandscape2023.ko.md"
},
{
"pattern": "^file://github/workspace/landscape-ko/",
"replacement": "{{BASEURL}}/landscape-ko/"
"pattern": "^/",
"replacement": "{{BASEURL}}/"
}
],
"httpHeaders": [
Expand Down

0 comments on commit 0dd5cf4

Please sign in to comment.