Skip to content

Fixed links in docs. Narrowed the amount of files checked by the link-checker. #1233

New issue

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

Merged
merged 3 commits into from
Mar 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ tasks:
- |
npx -p markdown-link-check -c '
STATUS=0
for file in $(find -name "*.md"); do
for file in $(find docs -name "*.md") README.md test/README.md client_example/README.md; do
markdown-link-check -c markdown-link-check-config.json -q "$file"
STATUS=$(( $STATUS + $? ))
done
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,5 +350,5 @@ metrics:

[configuration documentation]: configuration.md
[client_example]: https://github.com/arduino/arduino-cli/blob/master/client_example
[grpc reference]: ../rpc/commands
[grpc reference]: rpc/commands.md
[prometheus]: https://prometheus.io/
2 changes: 1 addition & 1 deletion docs/integration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ tracker] if you’ve got a use case that doesn’t fit one of the three pillars.
[grpc]: https://grpc.io/
[rpc]: https://en.wikipedia.org/wiki/Remote_procedure_call
[daemon mode]: commands/arduino-cli_daemon.md
[grpc interface reference]: ../rpc/commands
[grpc interface reference]: rpc/commands.md
[grpc supported languages]: https://grpc.io/docs/languages/
[arduino cli repository]: https://github.com/arduino/arduino-cli
[grpc client example]: https://github.com/arduino/arduino-cli/blob/master/client_example
Expand Down
Loading