Stanislav N. aka pztrn
19b5ef3d9f
Well, doing "git add ." not from repository's root is a bad idea. Updated chroma dependency, added more languages to syntax highlighting.
17 lines
357 B
Go
17 lines
357 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"},
|
|
},
|
|
internal.PlaintextRules,
|
|
))
|