Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert HTML to plain text (with inclusion of <br>s)

Tags:

ruby

nokogiri

Is it possible to convert HTML with Nokogiri to plain text? I also want to include <br /> tag.

For example, given this HTML:

<p>ala ma kota</p> <br /> <span>i kot to idiota </span>

I want this output:

ala ma kota
i kot to idiota

When I just call Nokogiri::HTML(my_html).text it excludes <br /> tag:

ala ma kota i kot to idiota
like image 940
nothing-special-here Avatar asked Apr 13 '12 16:04

nothing-special-here


People also ask

How do I get text only in HTML?

Use the textContent property to get the text of an html element, e.g. const text = box. textContent . The textContent property returns the text content of the element and its descendants. If the element is empty, an empty string is returned.


2 Answers

Instead of writing complex regexp I used Nokogiri.

Working solution (K.I.S.S!):

def strip_html(str)
  document = Nokogiri::HTML.parse(str)
  document.css("br").each { |node| node.replace("\n") }
  document.text
end
like image 187
nothing-special-here Avatar answered Nov 14 '22 04:11

nothing-special-here


Nothing like this exists by default, but you can easily hack something together that comes close to the desired output:

require 'nokogiri'
def render_to_ascii(node)
  blocks = %w[p div address]                      # els to put newlines after
  swaps  = { "br"=>"\n", "hr"=>"\n#{'-'*70}\n" }  # content to swap out
  dup = node.dup                                  # don't munge the original

  # Get rid of superfluous whitespace in the source
  dup.xpath('.//text()').each{ |t| t.content=t.text.gsub(/\s+/,' ') }

  # Swap out the swaps
  dup.css(swaps.keys.join(',')).each{ |n| n.replace( swaps[n.name] ) }

  # Slap a couple newlines after each block level element
  dup.css(blocks.join(',')).each{ |n| n.after("\n\n") }

  # Return the modified text content
  dup.text
end

frag = Nokogiri::HTML.fragment "<p>It is the end of the world
  as         we
  know it<br>and <i>I</i> <strong>feel</strong>
  <a href='blah'>fine</a>.</p><div>Capische<hr>Buddy?</div>"

puts render_to_ascii(frag)
#=> It is the end of the world as we know it
#=> and I feel fine.
#=> 
#=> Capische
#=> ----------------------------------------------------------------------
#=> Buddy?
like image 40
Phrogz Avatar answered Nov 14 '22 06:11

Phrogz