2019-10-27 17:04:31 +01:00
|
|
|
package s
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
. "github.com/alecthomas/chroma/lexers/circular" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Smarty lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var Smarty = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "Smarty",
|
|
|
|
Aliases: []string{"smarty"},
|
|
|
|
Filenames: []string{"*.tpl"},
|
|
|
|
MimeTypes: []string{"application/x-smarty"},
|
|
|
|
DotAll: true,
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
smartyRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func smartyRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"root": {
|
|
|
|
{`[^{]+`, Other, nil},
|
|
|
|
{`(\{)(\*.*?\*)(\})`, ByGroups(CommentPreproc, Comment, CommentPreproc), nil},
|
|
|
|
{`(\{php\})(.*?)(\{/php\})`, ByGroups(CommentPreproc, Using(PHP), CommentPreproc), nil},
|
|
|
|
{`(\{)(/?[a-zA-Z_]\w*)(\s*)`, ByGroups(CommentPreproc, NameFunction, Text), Push("smarty")},
|
|
|
|
{`\{`, CommentPreproc, Push("smarty")},
|
|
|
|
},
|
|
|
|
"smarty": {
|
|
|
|
{`\s+`, Text, nil},
|
|
|
|
{`\{`, CommentPreproc, Push()},
|
|
|
|
{`\}`, CommentPreproc, Pop(1)},
|
|
|
|
{`#[a-zA-Z_]\w*#`, NameVariable, nil},
|
|
|
|
{`\$[a-zA-Z_]\w*(\.\w+)*`, NameVariable, nil},
|
|
|
|
{`[~!%^&*()+=|\[\]:;,.<>/?@-]`, Operator, nil},
|
|
|
|
{`(true|false|null)\b`, KeywordConstant, nil},
|
|
|
|
{`[0-9](\.[0-9]*)?(eE[+-][0-9])?[flFLdD]?|0[xX][0-9a-fA-F]+[Ll]?`, LiteralNumber, nil},
|
|
|
|
{`"(\\\\|\\"|[^"])*"`, LiteralStringDouble, nil},
|
|
|
|
{`'(\\\\|\\'|[^'])*'`, LiteralStringSingle, nil},
|
|
|
|
{`[a-zA-Z_]\w*`, NameAttribute, nil},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|