Sha256: 36380aae41d0cd238aec8943c00740f3b64b35a0ca24112749e4e5f6c6bcbde7
Contents?: true
Size: 512 Bytes
Versions: 16
Compression:
Stored size: 512 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 ActionText.html_document_class.new.tap { |doc| doc.encoding = "UTF-8" } end end end
Version data entries
16 entries across 16 versions & 3 rubygems