1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/active_text/html_conversion.rb
2018-02-07 18:26:19 -06:00

22 lines
475 B
Ruby

module ActiveText
module HtmlConversion
extend self
def node_to_html(node)
node.to_html(save_with: Nokogiri::XML::Node::SaveOptions::AS_HTML)
end
def fragment_for_html(html)
document.fragment(html)
end
def create_element(tag_name, attributes = {})
document.create_element(tag_name, attributes)
end
private
def document
Nokogiri::HTML::Document.new.tap { |doc| doc.encoding = "UTF-8" }
end
end
end