[Source]
# File lib/mack-haml/haml_engine.rb, line 13 13: def extension 14: :haml 15: end
# File lib/mack-haml/haml_engine.rb, line 6 6: def render(io, binding) 7: if io.is_a?(File) 8: io = io.read 9: end 10: ::Haml::Engine.new(io).render(binding) 11: end
[Validate]