class Kramdown::Converter::RemoveHtmlTags

Removes all block (and optionally span) level HTML tags from the element tree.

This converter can be used on parsed HTML documents to get an element tree that will only contain native kramdown elements.

Note that the returned element tree may not be fully conformant (i.e. the content models of *some elements may be violated)!

This converter modifies the given tree in-place and returns it.

Public Class Methods

new(root, options) click to toggle source
Calls superclass method Kramdown::Converter::Base.new
# File lib/kramdown/converter/remove_html_tags.rb, line 24
def initialize(root, options)
  super
  @options[:template] = ''
end

Public Instance Methods

convert(el) click to toggle source
# File lib/kramdown/converter/remove_html_tags.rb, line 29
def convert(el)
  children = el.children.dup
  index = 0
  while index < children.length
    if [:xml_pi].include?(children[index].type) ||
        (children[index].type == :html_element && %w[style script].include?(children[index].value))
      children[index..index] = []
    elsif children[index].type == :html_element &&
      ((@options[:remove_block_html_tags] && children[index].options[:category] == :block) ||
       (@options[:remove_span_html_tags] && children[index].options[:category] == :span))
      children[index..index] = children[index].children
    else
      convert(children[index])
      index += 1
    end
  end
  el.children = children
  el
end