You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
490 B
25 lines
490 B
4 years ago
|
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},
|
||
|
},
|
||
|
},
|
||
|
))
|