mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
18 lines
375 B
Go
18 lines
375 B
Go
|
package p
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma" // nolint
|
||
|
"github.com/alecthomas/chroma/lexers/internal"
|
||
|
)
|
||
|
|
||
|
var Plaintext = internal.Register(MustNewLexer(
|
||
|
&Config{
|
||
|
Name: "plaintext",
|
||
|
Aliases: []string{"text", "plain", "no-highlight"},
|
||
|
Filenames: []string{"*.txt"},
|
||
|
MimeTypes: []string{"text/plain"},
|
||
|
Priority: 0.1,
|
||
|
},
|
||
|
internal.PlaintextRules,
|
||
|
))
|