5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'app/helpers/effective_article_editor_helper.rb', line 5
def render_article_editor_action_text_content(content)
raise('expected content to be an content') unless content.kind_of?(ActionText::Content)
rendered = render_action_text_content(content)
if rendered.include?('effective-article-editor')
doc = Nokogiri::HTML(rendered)
doc.search('action-text-attachment').each { |fragment| fragment.remove }
rendered = doc.inner_html.to_s[13..-16].html_safe
end
rendered
end
|