module Haml::Helpers

def tab_down(i = 1)

Other tags:
    See: #tab_up -

Parameters:
  • i (Fixnum) -- The number of tabs by which to decrease the indentation
def tab_down(i = 1)
  haml_buffer.tabulation -= i
end