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
Copy file name to clipboardExpand all lines: Rakefile
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -113,12 +113,13 @@ end
113
113
114
114
task:validate_links=>[:build]do
115
115
# Explanation of arguments:
116
-
# --assume-extension # Tells html-proofer that `.html` files can be accessed without the `.html` part in the url.
117
-
# --disable-external # For speed. Ideally we'd check external links too, but ignoring for now.
118
-
# --empty-alt-ignore # To avoid needing to fix lots upfront, we can migrate towards this later.
119
-
# --allow-hash-href # Allow empty `#` links to mean "top of page". It's true that these can be errors, however we have far too many to really address this.
120
-
# --url-swap # Adjust for Jekyll's baseurl. See https://github.com/gjtorikian/html-proofer/issues/618 for more.
# --disable-external # For speed. Ideally we'd check external links too, but ignoring for now.
117
+
# --ignore-missing-alt # To avoid needing to fix lots upfront, we can migrate towards this later.
118
+
# --enforce-https # To avoid needing to fix lots upfront, we can migrate towards this later.
119
+
# --allow-hash-href # Allow empty `#` links to mean "top of page". It's true that these can be errors, however we have far too many to really address this.
120
+
# --allow-missing-href # Allow missing hrefs as we use them in the troubleshooter and rules (as anchors). It's true that these can be errors, however we have plenty which are legitimate.
121
+
# --swap-urls # Adjust for Jekyll's baseurl. See https://github.com/gjtorikian/html-proofer/issues/618 for more.
0 commit comments