module Rouge::Indentation

def starts_block(block_state)

push a state for the next indented block
def starts_block(block_state)
  @block_state = block_state
  @block_indentation = @last_indentation || ''
  puts "    starts_block #{block_state.inspect}" if @debug
  puts "    block_indentation: #{@block_indentation.inspect}" if @debug
end