mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
25 lines
490 B
Go
25 lines
490 B
Go
|
package b
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma" // nolint
|
||
|
"github.com/alecthomas/chroma/lexers/internal"
|
||
|
)
|
||
|
|
||
|
// Bnf lexer.
|
||
|
var Bnf = internal.Register(MustNewLexer(
|
||
|
&Config{
|
||
|
Name: "BNF",
|
||
|
Aliases: []string{"bnf"},
|
||
|
Filenames: []string{"*.bnf"},
|
||
|
MimeTypes: []string{"text/x-bnf"},
|
||
|
},
|
||
|
Rules{
|
||
|
"root": {
|
||
|
{`(<)([ -;=?-~]+)(>)`, ByGroups(Punctuation, NameClass, Punctuation), nil},
|
||
|
{`::=`, Operator, nil},
|
||
|
{`[^<>:]+`, Text, nil},
|
||
|
{`.`, Text, nil},
|
||
|
},
|
||
|
},
|
||
|
))
|