multi

package
v5.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 21, 2020 License: Apache-2.0 Imports: 3 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Multi

type Multi struct {
	// contains filtered or unexported fields
}

Multi implements jet.Loader interface and tries to load templates from a list of custom loaders. Caution: When multiple loaders have templates with the same name, the order in which you pass loaders to NewLoader/AddLoaders dictates which template will be returned by Open when you request it!

func NewLoader

func NewLoader(loaders ...jet.Loader) *Multi

NewLoader returns a new multi loader. The order of the loaders passed as parameters will define the order in which templates are loaded.

func (*Multi) AddLoaders

func (m *Multi) AddLoaders(loaders ...jet.Loader)

AddLoaders adds the passed loaders to the list of loaders.

func (*Multi) ClearLoaders

func (m *Multi) ClearLoaders()

ClearLoaders clears the list of loaders.

func (*Multi) Exists

func (m *Multi) Exists(name string) (string, bool)

Exists checks all loaders in succession, returning the full path of the template and bool true if the template file was found, otherwise it returns an empty string and false.

func (*Multi) Open

func (m *Multi) Open(name string) (io.ReadCloser, error)

Open will open the file passed by trying all loaders in succession.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL