方法
实例公共方法
create_element(tag_name, attributes = {}) 链接
来源:显示 | 在 GitHub 上
# File actiontext/lib/action_text/html_conversion.rb, line 17 def create_element(tag_name, attributes = {}) document.create_element(tag_name, attributes) end
fragment_for_html(html) 链接
来源:显示 | 在 GitHub 上
# File actiontext/lib/action_text/html_conversion.rb, line 13 def fragment_for_html(html) document.fragment(html) end
node_to_html(node) 链接
来源:显示 | 在 GitHub 上
# File actiontext/lib/action_text/html_conversion.rb, line 9 def node_to_html(node) node.to_html(save_with: Nokogiri::XML::Node::SaveOptions::AS_HTML) end