module YARD::Templates::Template

def T(*path) # rubocop:disable Style/MethodName

Returns:
  • (Template) - the loaded template module

Parameters:
  • path (Array) -- the path of the template
def T(*path) # rubocop:disable Style/MethodName
  path.unshift(options.template) if options.template
  path.push(options.format) if options.format
  self.class.T(*path)
end