mirror of
https://github.com/alecthomas/chroma.git
synced 2025-03-31 22:05:17 +02:00
17 lines
316 B
Go
17 lines
316 B
Go
|
package lexers
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma/v2" // nolint
|
||
|
)
|
||
|
|
||
|
var Plaintext = Register(MustNewLexer(
|
||
|
&Config{
|
||
|
Name: "plaintext",
|
||
|
Aliases: []string{"text", "plain", "no-highlight"},
|
||
|
Filenames: []string{"*.txt"},
|
||
|
MimeTypes: []string{"text/plain"},
|
||
|
Priority: -1,
|
||
|
},
|
||
|
PlaintextRules,
|
||
|
))
|