We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e6ba22 + 9533e01 commit dff9c79Copy full SHA for dff9c79
Rakefile
@@ -14,7 +14,10 @@ task :htmlproofer do
14
# /Plugins.html can misbehave here in case of GitHub README.md anchors
15
# because of User-Agent handling, and changing User-Agent causes other
16
# unwanted side effects
17
- check_external_hash: false
+ check_external_hash: false,
18
+ # status code 418 is sometimes returned by webservers performing anti-scrape methods, so it
19
+ # should assume the resource exists instead
20
+ ignore_status_codes: [ 418 ],
21
}
22
23
HTMLProofer.check_directory(compiledSitePath, options).run
0 commit comments