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.
28 lines
719 B
28 lines
719 B
package s
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
var SYSTEMD = internal.Register(MustNewLexer(
|
|
&Config{
|
|
Name: "SYSTEMD",
|
|
Aliases: []string{"systemd"},
|
|
Filenames: []string{"*.service"},
|
|
MimeTypes: []string{"text/plain"},
|
|
},
|
|
Rules{
|
|
"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)},
|
|
},
|
|
},
|
|
))
|
|
|