-
-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to only perform the "Links" and "Scripts" checks and not the "Images" check? #138
Comments
@csu You can't use the require 'html/proofer'
module HTML
class Proofer
def get_checks
%w{Links Scripts}
end
end
end
# Construct path & options, then run
HTML::Proofer.new(path, options).run |
Just tried it. Totally worked! Thanks! |
I think this is a good candidate for 2.0 (which I just started this week), so I'll reopen this. |
Cool! Yeah, I was trying to figure out a way to disable a check through the options and couldn't find anything, so I figured I would ask 😛. |
🙇 Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tag: question
The text was updated successfully, but these errors were encountered: