1
0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-11-23 21:22:47 +01:00
kiln/format.go
2021-04-11 17:13:06 -04:00

13 lines
241 B
Go

package main
// Format represents an output format.
type Format interface {
Format(*Page) (path string, content []byte)
}
type FormatFunc func(*Page) (string, []byte)
func (f FormatFunc) Format(p *Page) (string, []byte) {
return f(p)
}