class Kramdown::Parser::Kramdown

def parse_block_math

Parse the math block at the current location.
def parse_block_math
  if @src[1]
    @src.scan(/^#{OPT_SPACE}\\/)
    return false
  end
  @src.pos += @src.matched_size
  @tree.children << new_block_el(:math, @src[2], :type => :block)
  true
end