mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-21 19:06:18 +02:00
13 lines
204 B
Go
13 lines
204 B
Go
package formatters
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/alecthomas/chroma"
|
|
)
|
|
|
|
// Formatter returns a formatting function for tokens.
|
|
type Formatter interface {
|
|
Format(w io.Writer) (func(chroma.Token), error)
|
|
}
|