class Kramdown::Parser::Kramdown

def parse_line_break

Parse the line break at the current location.
def parse_line_break
  @src.pos += @src.matched_size
  @tree.children << Element.new(:br)
end