class Kramdown::Parser::Kramdown

def parse_horizontal_rule

Parse the horizontal rule at the current location.
def parse_horizontal_rule
  @src.pos += @src.matched_size
  @tree.children << new_block_el(:hr)
  true
end