Mdck reports broken links found within md files. It has a --help
command
line argument whose output looks like:
mdck 0.1.0
Clifford T. Matthews <[email protected]@gmail.com>
Mdck checks markdown files for link destinations that point to non-existent
files. Future versions may do other consistency checks, but that particular
check is potentially useful and was easy to implement, so I wrote mdck to get
some more practice programming in Rust.
The source command line arguments can either be a a single hyphen ('-'), a file
name or a directory name. A hyphen represents standard input, which is also the
default source when no command line arguments are supplied. Directories are
recursively searched and files with the ".md" extension are checked. Files
named explicitly as a command line argument do not need to have the ".md"
extension.
Currently, the only check is that if a link destination is a file, then there
must be a file or directory for that destination. Mdck does not attempt to open
the destination or check permissions.
USAGE:
mdck [sources]...
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
<sources>... '-' for standard input. Otherwise, file or directory
names
Mdck has been released into the public domain, per the UNLICENSE.
- Install rust
cargo build --release
- The binary will be in
target/release/mdck
Mdck is a toy program I've written to help me learn Rust. I've tried to use Rust idioms, but I'm sure I've overlooked some. So, if you're a seasoned Rust programmer and it's convenient, please look over the source and make suggestions, preferably as issues.
Mdck is the spiritual successor to ulf, the "universal lineprinter filter". They are both extremely limited applications with tongue-in-cheek names that suggest additional utility. Ulf supported exactly one non-generic printer (the Diablo), and mdck has only one consistency check.