mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-23 08:59:40 +00:00
accffa8d1b
Annoyingly, mkdocs won't validate inter- or intra-document links, so we'll need to use a third-party tool instead.
13 lines
242 B
Bash
13 lines
242 B
Bash
#!/bin/sh
|
|
|
|
# This uses the official W3C link-checker tool:
|
|
#
|
|
# https://github.com/w3c/link-checker
|
|
#
|
|
checklink \
|
|
--summary \
|
|
--broken \
|
|
--location=http://127.0.0.1:8000/ \
|
|
--exclude 'github.com|board.byuu.org' \
|
|
http://127.0.0.1:8000/
|