class Kramdown::Parser::Kramdown

def parse_line_break

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