I have articles with bodies that are textile formatted text. I make full text search with sphinx and I want to highlight query in results. Sphinx give me something like this

A *simple* _<span class="highlight">example</span>_.

I want to remove all textile format but save highlight tags, like this

A simple <span class="highlight">example</span>.

Is it possible with Redcloth gem?

link|improve this question

67% accept rate
feedback

1 Answer

You could process the content with RedCloth and then strip the result of all tags. So something like:

strip_tags (RedCloth.new(simple_input).to_html)

strip_tags is available in the ActionView::Helpers::TextHelper module. http://apidock.com/rails/ActionView/Helpers/TextHelper/strip_tags for more info.

link|improve this answer
Unfortunately, strip_tags dose not save any special tag – petRUShka Aug 8 '11 at 9:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.