# File lib/plugins/haml.rb, line 32
    def haml(format)
      return unless input = editor(:haml)

      opts = plugin_config.options.merge(format.empty? ? {} : {:format => format.to_sym})
      ::Haml::Engine.new(input, opts).render.chomp
    end