@@ -68,7 +68,7 @@ module Docs
def parse_html(html)
warn "#{self.class.name} is re-parsing the document" unless ENV['RACK_ENV'] == 'test'
- super
+ quietly { super }
end
@@ -5,7 +5,7 @@ module Docs
def html
- @html ||= document? ? parse_as_document : parse_as_fragment
+ @html ||= quietly { document? ? parse_as_document : parse_as_fragment }
private