Module: ActionText::HtmlConversion

Extended by:
HtmlConversion
Included in:
HtmlConversion
Defined in:
lib/action_text/html_conversion.rb

Instance Method Summary collapse

Instance Method Details

#create_element(tag_name, attributes = {}) ⇒ Object



15
16
17
# File 'lib/action_text/html_conversion.rb', line 15

def create_element(tag_name, attributes = {})
  document.create_element(tag_name, attributes)
end

#fragment_for_html(html) ⇒ Object



11
12
13
# File 'lib/action_text/html_conversion.rb', line 11

def fragment_for_html(html)
  document.fragment(html)
end

#node_to_html(node) ⇒ Object



7
8
9
# File 'lib/action_text/html_conversion.rb', line 7

def node_to_html(node)
  node.to_html(save_with: Nokogiri::XML::Node::SaveOptions::AS_HTML)
end