2019-10-27 17:04:31 +01:00
|
|
|
package x
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// XML lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var XML = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "XML",
|
|
|
|
Aliases: []string{"xml"},
|
|
|
|
Filenames: []string{"*.xml", "*.xsl", "*.rss", "*.xslt", "*.xsd", "*.wsdl", "*.wsf", "*.svg"},
|
|
|
|
MimeTypes: []string{"text/xml", "application/xml", "image/svg+xml", "application/rss+xml", "application/atom+xml"},
|
|
|
|
DotAll: true,
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
xmlRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func xmlRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"root": {
|
|
|
|
{`[^<&]+`, Text, nil},
|
|
|
|
{`&\S*?;`, NameEntity, nil},
|
|
|
|
{`\<\!\[CDATA\[.*?\]\]\>`, CommentPreproc, nil},
|
|
|
|
{`<!--`, Comment, Push("comment")},
|
|
|
|
{`<\?.*?\?>`, CommentPreproc, nil},
|
|
|
|
{`<![^>]*>`, CommentPreproc, nil},
|
|
|
|
{`<\s*[\w:.-]+`, NameTag, Push("tag")},
|
|
|
|
{`<\s*/\s*[\w:.-]+\s*>`, NameTag, nil},
|
|
|
|
},
|
|
|
|
"comment": {
|
|
|
|
{`[^-]+`, Comment, nil},
|
|
|
|
{`-->`, Comment, Pop(1)},
|
|
|
|
{`-`, Comment, nil},
|
|
|
|
},
|
|
|
|
"tag": {
|
|
|
|
{`\s+`, Text, nil},
|
|
|
|
{`[\w.:-]+\s*=`, NameAttribute, Push("attr")},
|
|
|
|
{`/?\s*>`, NameTag, Pop(1)},
|
|
|
|
},
|
|
|
|
"attr": {
|
|
|
|
{`\s+`, Text, nil},
|
|
|
|
{`".*?"`, LiteralString, Pop(1)},
|
|
|
|
{`'.*?'`, LiteralString, Pop(1)},
|
|
|
|
{`[^\s>]+`, LiteralString, Pop(1)},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|