Sha256: ac162256bb6845663be6edbeb5482081cbb32e0244e9597d1e4ff85d84e22f80
Contents?: true
Size: 506 Bytes
Versions: 115
Compression:
Stored size: 506 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
115 entries across 111 versions & 10 rubygems