mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
24 lines
506 B
Ruby
24 lines
506 B
Ruby
# 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
|