Class: HTML::Text

Inherits:
Object show all
Defined in:
lib/test/rails/pp_html_document.rb

Instance Method Summary collapse

Instance Method Details

#content_without_whitespaceObject



58
59
60
# File 'lib/test/rails/pp_html_document.rb', line 58

def content_without_whitespace
  @content.gsub(/^[ ]+/, '').sub(/[ ]+\Z/, '')
end

#pretty_print(q) ⇒ Object



62
63
64
# File 'lib/test/rails/pp_html_document.rb', line 62

def pretty_print(q)
  q.pp content_without_whitespace
end