class Kramdown::Parser::Kramdown

def parse_blockquote

Parse the blockquote at the current location.
def parse_blockquote
  start_line_number = @src.current_line_number
  result = @src.scan(PARAGRAPH_MATCH)
  while !@src.match?(self.class::LAZY_END)
    result << @src.scan(PARAGRAPH_MATCH)
  end
  result.gsub!(BLOCKQUOTE_START, '')
  el = new_block_el(:blockquote, nil, nil, :location => start_line_number)
  @tree.children << el
  parse_blocks(el, result)
  true
end