class Kramdown::Element

def inspect #:nodoc:

:nodoc:
def inspect #:nodoc:
  "<kd:#{@type}" \
    "#{value.nil? ? '' : ' value=' + value.inspect}" \
    "#{attr.empty? ? '' : ' attr=' + attr.inspect}" \
    "#{options.empty? ? '' : ' options=' + options.inspect}" \
    "#{children.empty? ? '' : ' children=' + children.inspect}>"
end