# File lib/maruku/output/to_html.rb, line 49
    def to_html
      m = "<#{name}"
      attributes.each do |k, v|
        m << " #{k.to_s}=\"#{v.to_s}\""
      end

      if SELF_CLOSING.include? name
        m << " />"
      else
        content = children.map(&:to_s)
        m << ">" << content.join('') << "</#{name}>"
      end
    end