class Kramdown::Parser::Kramdown

def parse_span_ial

Parse the inline attribute list at the current location.
def parse_span_ial
  @src.pos += @src.matched_size
  if @tree.children.last && @tree.children.last.type != :text
    attr = {}
    parse_attribute_list(@src[1], attr)
    update_ial_with_ial(@tree.children.last.options[:ial] ||= {}, attr)
    update_attr_with_ial(@tree.children.last.options[:attr] ||= {}, attr)
  else
    warning("Ignoring span IAL because preceding element is just text")
  end
end