diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-03-18 12:51:13 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-03-18 12:51:13 +0100 |
commit | 3e59dc32d5621f93dd6b7be989e873b097bcea6c (patch) | |
tree | da8a823760df6f5f291d4c85d31382a4b6f06c38 /check | |
parent | 2746e74bf9a2105a53d92eee8dec1bc5197a868c (diff) | |
download | blog-3e59dc32d5621f93dd6b7be989e873b097bcea6c.tar |
Run third-party markup checkers after deployment
Diffstat (limited to 'check')
-rwxr-xr-x | check | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +#! /bin/sh + +# Run third-party markup checkers. +# See W3C Developer Tools at https://w3c.github.io/developers/tools/ + +open() { + xdg-open "$@" >/dev/null 2>&1 & +} + +# W3C Nu HTML Checker +open "https://validator.w3.org/nu/?doc=https%3A%2F%2Fwww.skreutz.com%2Fposts%2Funix-domain-socket-forwarding-with-openssh%2F" + +# W3C CSS Validator +open "https://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Fwww.skreutz.com%2F&profile=css3svg&usermedium=all&warning=1&vextwarning=&lang=en" + +# W3C Feed Validator +open "https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.skreutz.com%2Ffeeds%2Fposts.rss" +open "https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.skreutz.com%2Ffeeds%2Fposts.atom" + +# W3C Link Checker +open "https://validator.w3.org/checklink?uri=https%3A%2F%2Fwww.skreutz.com%2F&hide_type=all&recursive=on&depth=10&check=Check" |