Is there anything out there to convert html to plain text (maybe a nokogiri script)? Something that would keep the line breaks, but that\'s about it.
If I write som
if you are using rails you can: html = 'hello worldHola que tal' puts ActionView::Base.full_sanitizer.sanitize(html)
html = 'hello worldHola que tal' puts ActionView::Base.full_sanitizer.sanitize(html)
Hola que tal