class Kramdown::Parser::Kramdown

def parse_blockquote

Parse the blockquote at the current location.
def parse_blockquote
  result = @src.scan(BLOCKQUOTE_MATCH).gsub(BLOCKQUOTE_START, '')
  el = new_block_el(:blockquote)
  @tree.children << el
  parse_blocks(el, result)
  true
end