class Kramdown::Parser::Kramdown

def parse_codeblock

Parse the indented codeblock at the current location.
def parse_codeblock
  @tree.children << new_block_el(:codeblock, @src.scan(CODEBLOCK_MATCH).gsub(/\n( {0,3}\S)/, ' \\1').gsub!(INDENT, ''))
  true
end