class Kramdown::Parser::Kramdown

def parse_inline_math

Parse the inline math at the current location.
def parse_inline_math
  start_line_number = @src.current_line_number
  @src.pos += @src.matched_size
  @tree.children << Element.new(:math, @src[1].strip, nil, category: :span, location: start_line_number)
end