class Kramdown::Parser::Kramdown

def parse_codeblock_fenced

Parse the fenced codeblock at the current location.
def parse_codeblock_fenced
  if @src.check(FENCED_CODEBLOCK_MATCH)
    @src.pos += @src.matched_size
    @tree.children << new_block_el(:codeblock, @src[2])
    true
  else
    false
  end
end