class Kramdown::Parser::Kramdown

def parse_inline_math

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