Update Dependencies (#390)

Co-authored-by: Norwin Roosen <git@nroo.de>
Co-authored-by: Norwin <git@nroo.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/390
Reviewed-by: 6543 <6543@obermui.de>
Reviewed-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Norwin <noerw@noreply.gitea.io>
Co-committed-by: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
Norwin
2021-08-30 23:18:50 +08:00
committed by Andrew Thornton
parent 4b9907fb54
commit d6df0a53b5
665 changed files with 29466 additions and 24547 deletions

View File

@ -6,7 +6,7 @@ import (
)
// XML lexer.
var XML = internal.Register(MustNewLexer(
var XML = internal.Register(MustNewLazyLexer(
&Config{
Name: "XML",
Aliases: []string{"xml"},
@ -14,7 +14,11 @@ var XML = internal.Register(MustNewLexer(
MimeTypes: []string{"text/xml", "application/xml", "image/svg+xml", "application/rss+xml", "application/atom+xml"},
DotAll: true,
},
Rules{
xmlRules,
))
func xmlRules() Rules {
return Rules{
"root": {
{`[^<&]+`, Text, nil},
{`&\S*?;`, NameEntity, nil},
@ -41,5 +45,5 @@ var XML = internal.Register(MustNewLexer(
{`'.*?'`, LiteralString, Pop(1)},
{`[^\s>]+`, LiteralString, Pop(1)},
},
},
))
}
}

View File

@ -6,14 +6,18 @@ import (
)
// Xorg lexer.
var Xorg = internal.Register(MustNewLexer(
var Xorg = internal.Register(MustNewLazyLexer(
&Config{
Name: "Xorg",
Aliases: []string{"xorg.conf"},
Filenames: []string{"xorg.conf"},
MimeTypes: []string{},
},
Rules{
xorgRules,
))
func xorgRules() Rules {
return Rules{
"root": {
{`\s+`, TextWhitespace, nil},
{`#.*$`, Comment, nil},
@ -21,5 +25,5 @@ var Xorg = internal.Register(MustNewLexer(
{`(End(|Sub)Section)`, KeywordNamespace, nil},
{`(\w+)(\s+)([^\n#]+)`, ByGroups(NameKeyword, TextWhitespace, LiteralString), nil},
},
},
))
}
}