You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated html-proofer from 3.16.0 to 3.17.1 and all internal links in my website failed to validate. After reverting to 3.16.0, everything is fine.
All of the errors look like
- _staging/teaching/cs668/2013-spring/syllabus.html
* internally linking to /css/old-teaching.css, which does not exist (line 1)
<link rel="stylesheet" href="/css/old-teaching.css" type="text/css">
albeit with different files.
The files exist. E.g.,
$ file _staging/css/old-teaching.css
_staging/css/old-teaching.css: ASCII text, with very long lines
This happens for both link and a elements.
I'm running html-proofer via a Rake task.
taskcheck: :build_for_deploydorequire'html-proofer'HTMLProofer.check_directory(STAGING,disable_external: true,# Change this when necessarycheck_html: true,internal_domains: ['checkoway.net'],validation: {report_invalid_tags: true,report_missing_names: true,report_script_embeds: true},cache: {timeframe: '1d'}).runend
The text was updated successfully, but these errors were encountered:
I updated html-proofer from 3.16.0 to 3.17.1 and all internal links in my website failed to validate. After reverting to 3.16.0, everything is fine.
All of the errors look like
albeit with different files.
The files exist. E.g.,
This happens for both
link
anda
elements.I'm running html-proofer via a Rake task.
The text was updated successfully, but these errors were encountered: