mirror of
https://github.com/alecthomas/chroma.git
synced 2025-03-31 22:05:17 +02:00
Add WDTE.
This commit is contained in:
parent
7debecf146
commit
d3a2d28ee2
28
lexers/wdte.go
Normal file
28
lexers/wdte.go
Normal file
@ -0,0 +1,28 @@
|
||||
package lexers
|
||||
|
||||
import (
|
||||
. "github.com/alecthomas/chroma" // nolint
|
||||
)
|
||||
|
||||
// WDTE lexer.
|
||||
var WDTE = Register(MustNewLexer(
|
||||
&Config{
|
||||
Name: "WDTE",
|
||||
Filenames: []string{"*.wdte"},
|
||||
},
|
||||
Rules{
|
||||
"root": {
|
||||
{`\n`, Text, nil},
|
||||
{`\s+`, Text, nil},
|
||||
{`\\\n`, Text, nil},
|
||||
{`#(.*?)\n`, CommentSingle, nil},
|
||||
{`-?[0-9]+`, LiteralNumberInteger, nil},
|
||||
{`-?[0-9]*\.[0-9]+`, LiteralNumberFloat, nil},
|
||||
{`"[^"]*"`, LiteralString, nil},
|
||||
{`'[^']*'`, LiteralString, nil},
|
||||
{Words(``, `\b`, `switch`, `default`, `memo`), KeywordReserved, nil},
|
||||
{`{|}|;|->|=>|\(|\)|\[|\]|\.`, Operator, nil},
|
||||
{`[^{};()[\].\s]+`, NameVariable, nil},
|
||||
},
|
||||
},
|
||||
))
|
Loading…
x
Reference in New Issue
Block a user