You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to use markdown-link-check to check links in markdown files of a golang project, which has a vendor folder to vendor others' packages. For example, I do not want to check markdown files in https://github.com/alibaba/pouch/tree/master/vendor.
While I found that I have some issue in checking links exclude the folder vendor.
How to construct the command to check links in markdown files, but exclude some specific folders?
Thanks.
Allen Sun
The text was updated successfully, but these errors were encountered:
find . -path ./vendor -prune -o -name \*.md -exec markdown-link-check {} \; should exclude all files in the /vendor folder.
NicolasMassart
added
duplicate
This issue was already asked, please comment on the original one
wontfix
This will not be fixed, see reason in the comments
and removed
duplicate
This issue was already asked, please comment on the original one
labels
Sep 26, 2020
NicolasMassart
added
duplicate
This issue was already asked, please comment on the original one
and removed
wontfix
This will not be fixed, see reason in the comments
labels
Sep 26, 2020
Hi, All,
I am attempting to use markdown-link-check to check links in markdown files of a golang project, which has a vendor folder to vendor others' packages. For example, I do not want to check markdown files in https://github.com/alibaba/pouch/tree/master/vendor.
While I found that I have some issue in checking links exclude the folder
vendor
.How to construct the command to check links in markdown files, but exclude some specific folders?
Thanks.
Allen Sun
The text was updated successfully, but these errors were encountered: