class Kramdown::Parser::Kramdown

def parse_paragraph

Parse the paragraph at the current location.
def parse_paragraph
  @src.pos += @src.matched_size
  if @tree.children.last && @tree.children.last.type == :p
    @tree.children.last.children.first.value << "\n" << @src.matched.chomp
  else
    @tree.children << new_block_el(:p)
    add_text(@src.matched.lstrip.chomp, @tree.children.last)
  end
  true
end