2019-10-27 17:04:31 +01:00
|
|
|
package s
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
2021-04-28 18:35:32 +02:00
|
|
|
var SYSTEMD = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "SYSTEMD",
|
|
|
|
Aliases: []string{"systemd"},
|
|
|
|
Filenames: []string{"*.service"},
|
|
|
|
MimeTypes: []string{"text/plain"},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
systemdRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func systemdRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"root": {
|
|
|
|
{`\s+`, Text, nil},
|
|
|
|
{`[;#].*`, Comment, nil},
|
|
|
|
{`\[.*?\]$`, Keyword, nil},
|
|
|
|
{`(.*?)(=)(.*)(\\\n)`, ByGroups(NameAttribute, Operator, LiteralString, Text), Push("continuation")},
|
|
|
|
{`(.*?)(=)(.*)`, ByGroups(NameAttribute, Operator, LiteralString), nil},
|
|
|
|
},
|
|
|
|
"continuation": {
|
|
|
|
{`(.*?)(\\\n)`, ByGroups(LiteralString, Text), nil},
|
|
|
|
{`(.*)`, LiteralString, Pop(1)},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|