class Kramdown::Parser::Kramdown

def after_block_boundary?

Return +true+ if we are after a block boundary.
def after_block_boundary?
  last_child = @tree.children.last
  !last_child || last_child.type == :blank ||
    (last_child.type == :eob && last_child.value.nil?) || @block_ial
end