mirror of
https://github.com/alecthomas/chroma.git
synced 2025-07-15 01:14:21 +02:00
Add WDTE.
This commit is contained in:
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},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
))
|
Reference in New Issue
Block a user