module Temple::Utils

def indent(text, indent, pre_tags)

def indent(text, indent, pre_tags)
  text = text.to_s
  text.gsub!("\n", indent) if pre_tags !~ text
  text
end