# File lib/yard/templates/engine.rb, line 81
        def render(options = {})
          set_default_options(options)
          mod = template(options[:template], options[:type], options[:format])
          
          if options[:serialize] != false
            with_serializer(options[:object], options[:serializer]) { mod.run(options) }
          else
            mod.run(options)
          end
        end