mirror of
https://github.com/alecthomas/chroma.git
synced 2025-03-23 21:29:15 +02:00
13 lines
205 B
Go
13 lines
205 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)
|
|
}
|