We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you for the helpful project!
Checking for broken links is such a common and necessary activity that adding default support for it would be super.
https://github.com/Michael-F-Bryan/mdbook-linkcheck#getting-started has a short script for getting a link checker.
I think that all that would be needed would be for users to specify a step in their toml file:
[output.linkcheck]
At least on my machine, when I set up the link checker with the below script, everything runs as expected:
RELEASE=https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.7.7/mdbook-linkcheck.x86_64-apple-darwin.zip mkdir -p mdbook-linkcheck && cd "$_" && \ curl -L $RELEASE -o mdbook-linkcheck.zip && \ unzip "$_" && \ chmod +x mdbook-linkcheck && \ export PATH=$PWD:$PATH && \ cd ..
Perhaps a short link in the README to the link checker.
Thank you very much!
The text was updated successfully, but these errors were encountered:
peaceiris
No branches or pull requests
Checklist
Describe your proposal
Thank you for the helpful project!
Checking for broken links is such a common and necessary activity that adding default support for it would be super.
https://github.com/Michael-F-Bryan/mdbook-linkcheck#getting-started has a short script for getting a link checker.
Describe the solution you'd like
I think that all that would be needed would be for users to specify a step in their toml file:
At least on my machine, when I set up the link checker with the below script, everything runs as expected:
Describe alternatives you've considered
Perhaps a short link in the README to the link checker.
Additional context
Thank you very much!
The text was updated successfully, but these errors were encountered: