Skip to content
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

chore(deps): add linkcheck #27

Merged
merged 1 commit into from
Mar 13, 2024
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
1 change: 1 addition & 0 deletions book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ edit-url-template = "https://github.com/rust-tieng-viet/rust-tieng-viet.github.i
[output.linkcheck]
# Check links on the internet
follow-web-links = false
optional = true

[output.html.playground]
editable = true
9 changes: 8 additions & 1 deletion dev.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
#!/bin/bash

PORT=${1:-3000}

if ! command -v mdbook &>/dev/null; then
echo Installing mdBook https://rust-lang.github.io/mdBook/guide/installation.html ...
cargo install mdbook
fi

mdbook serve --open
if ! command -v mdbook-linkcheck &>/dev/null; then
echo Installing mdbook-linkcheck
cargo install mdbook-linkcheck
fi

mdbook serve --open --port $PORT
Loading