1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/pretty_hamlit/dynamic_indentation.rb

12 lines
231 B
Ruby
Raw Normal View History

2015-10-24 01:44:59 -04:00
module PrettyHamlit
class DynamicIndentation
class << self
def indent_with(indent_level)
indent = "\n" << ' ' * indent_level
text = yield('')
text.gsub("\n", indent)
end
end
end
end