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.
31 lines
789 B
31 lines
789 B
4 years ago
|
package l
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma" // nolint
|
||
|
"github.com/alecthomas/chroma/lexers/internal"
|
||
|
)
|
||
|
|
||
|
// Lighttpd Configuration File lexer.
|
||
|
var Lighttpd = internal.Register(MustNewLexer(
|
||
|
&Config{
|
||
|
Name: "Lighttpd configuration file",
|
||
|
Aliases: []string{"lighty", "lighttpd"},
|
||
|
Filenames: []string{},
|
||
|
MimeTypes: []string{"text/x-lighttpd-conf"},
|
||
|
},
|
||
|
Rules{
|
||
|
"root": {
|
||
|
{`#.*\n`, CommentSingle, nil},
|
||
|
{`/\S*`, Name, nil},
|
||
|
{`[a-zA-Z._-]+`, Keyword, nil},
|
||
|
{`\d+\.\d+\.\d+\.\d+(?:/\d+)?`, LiteralNumber, nil},
|
||
|
{`[0-9]+`, LiteralNumber, nil},
|
||
|
{`=>|=~|\+=|==|=|\+`, Operator, nil},
|
||
|
{`\$[A-Z]+`, NameBuiltin, nil},
|
||
|
{`[(){}\[\],]`, Punctuation, nil},
|
||
|
{`"([^"\\]*(?:\\.[^"\\]*)*)"`, LiteralStringDouble, nil},
|
||
|
{`\s+`, Text, nil},
|
||
|
},
|
||
|
},
|
||
|
))
|