Skip to content

Commit

Permalink
Address bug in check-markdown-link
Browse files Browse the repository at this point in the history
It currently gives an error for links containing %2F, like:

https://github.com/eclipse-kuksa/kuksa-python-sdk/pkgs/container/kuksa-python-sdk%2Fkuksa-client

Probably same error as reported in tcort/markdown-link-check#264

Proposed workaround is to exclude links with % from check
  • Loading branch information
erikbosch authored and SebastianSchildt committed Jun 10, 2024
1 parent f5af1ee commit 2d3ac48
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions check-markdown/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"ignorePatterns": [
{
"pattern": "^#"
},
{
"pattern": "%"
}
]
}

0 comments on commit 2d3ac48

Please sign in to comment.