class Kramdown::Parser::Kramdown

def after_block_boundary?

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