Class: Approvals::Writers::HtmlWriter
- Inherits:
-
TextWriter
- Object
- TextWriter
- Approvals::Writers::HtmlWriter
- Defined in:
- lib/approvals/writers/html_writer.rb
Instance Method Summary collapse
Methods inherited from TextWriter
Instance Method Details
#extension ⇒ Object
5 6 7 |
# File 'lib/approvals/writers/html_writer.rb', line 5 def extension 'html' end |
#format(data) ⇒ Object
9 10 11 |
# File 'lib/approvals/writers/html_writer.rb', line 9 def format(data) Nokogiri::HTML(data.to_s.strip,&:noblanks).to_xhtml(:indent => 2, :encoding => 'UTF-8') end |