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.
29 lines
719 B
29 lines
719 B
4 years ago
|
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)},
|
||
|
},
|
||
|
},
|
||
|
))
|