2019-10-27 17:04:31 +01:00
|
|
|
package l
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Lighttpd Configuration File lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var Lighttpd = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "Lighttpd configuration file",
|
|
|
|
Aliases: []string{"lighty", "lighttpd"},
|
|
|
|
Filenames: []string{},
|
|
|
|
MimeTypes: []string{"text/x-lighttpd-conf"},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
lighttpdRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func lighttpdRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"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},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|