Method: HTMLProofer::Attribute::Url#relative_link?
- Defined in:
- lib/html_proofer/attribute/url.rb
#relative_link? ⇒ Boolean
199 200 201 202 203 |
# File 'lib/html_proofer/attribute/url.rb', line 199 def relative_link? return false if remote? hash_link? || param_link? || url.start_with?(".") || url =~ /^\S/ end |