class Kramdown::Element

def initialize(type, value = nil, options = {})

also be set in this constructor for convenience.
Create a new Element object of type +type+. The optional parameters +value+ and +options+ can
def initialize(type, value = nil, options = {})
  @type, @value, @options = type, value, options
  @children = []
end