From f1d74871e7f00e8bbde3501a759487ac8cc4c3fc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 13 Apr 2018 16:23:04 -0700 Subject: Rename from Active Text to Action Text This is more like Action View than Active Model. --- lib/action_text/html_conversion.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/action_text/html_conversion.rb (limited to 'lib/action_text/html_conversion.rb') diff --git a/lib/action_text/html_conversion.rb b/lib/action_text/html_conversion.rb new file mode 100644 index 0000000000..1c70504fb7 --- /dev/null +++ b/lib/action_text/html_conversion.rb @@ -0,0 +1,22 @@ +module ActionText + 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 -- cgit v1.2.3