Method: Lono::Template::Helper#indent

Defined in:
lib/lono/template/helper.rb

#indent(text, indentation_amount) ⇒ Object

add indentation



60
61
62
63
64
# File 'lib/lono/template/helper.rb', line 60

def indent(text, indentation_amount)
  text.split("\n").map do |line|
    " " * indentation_amount + line
  end.join("\n")
end