mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
26 lines
656 B
Go
Vendored
26 lines
656 B
Go
Vendored
package i
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// Ini lexer.
|
|
var Ini = internal.Register(MustNewLexer(
|
|
&Config{
|
|
Name: "INI",
|
|
Aliases: []string{"ini", "cfg", "dosini"},
|
|
Filenames: []string{"*.ini", "*.cfg", "*.inf", ".gitconfig", ".editorconfig"},
|
|
MimeTypes: []string{"text/x-ini", "text/inf"},
|
|
},
|
|
Rules{
|
|
"root": {
|
|
{`\s+`, Text, nil},
|
|
{`[;#].*`, CommentSingle, nil},
|
|
{`\[.*?\]$`, Keyword, nil},
|
|
{`(.*?)([ \t]*)(=)([ \t]*)(.*(?:\n[ \t].+)*)`, ByGroups(NameAttribute, Text, Operator, Text, LiteralString), nil},
|
|
{`(.+?)$`, NameAttribute, nil},
|
|
},
|
|
},
|
|
))
|