2019-10-27 17:04:31 +01:00
|
|
|
package m
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
2020-05-12 02:12:28 +02:00
|
|
|
"github.com/alecthomas/chroma/lexers/h"
|
2019-10-27 17:04:31 +01:00
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Markdown lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var Markdown = internal.Register(DelegatingLexer(h.HTML, MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "markdown",
|
|
|
|
Aliases: []string{"md", "mkd"},
|
|
|
|
Filenames: []string{"*.md", "*.mkd", "*.markdown"},
|
|
|
|
MimeTypes: []string{"text/x-markdown"},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
markdownRules,
|
|
|
|
)))
|
|
|
|
|
|
|
|
func markdownRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"root": {
|
|
|
|
{`^(#[^#].+\n)`, ByGroups(GenericHeading), nil},
|
|
|
|
{`^(#{2,6}.+\n)`, ByGroups(GenericSubheading), nil},
|
|
|
|
{`^(\s*)([*-] )(\[[ xX]\])( .+\n)`, ByGroups(Text, Keyword, Keyword, UsingSelf("inline")), nil},
|
|
|
|
{`^(\s*)([*-])(\s)(.+\n)`, ByGroups(Text, Keyword, Text, UsingSelf("inline")), nil},
|
|
|
|
{`^(\s*)([0-9]+\.)( .+\n)`, ByGroups(Text, Keyword, UsingSelf("inline")), nil},
|
|
|
|
{`^(\s*>\s)(.+\n)`, ByGroups(Keyword, GenericEmph), nil},
|
|
|
|
{"^(```\\n)([\\w\\W]*?)(^```$)", ByGroups(String, Text, String), nil},
|
2021-04-28 18:35:32 +02:00
|
|
|
{
|
|
|
|
"^(```)(\\w+)(\\n)([\\w\\W]*?)(^```$)",
|
2019-10-27 17:04:31 +01:00
|
|
|
UsingByGroup(
|
|
|
|
internal.Get,
|
|
|
|
2, 4,
|
|
|
|
String, String, String, Text, String,
|
|
|
|
),
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
Include("inline"),
|
|
|
|
},
|
|
|
|
"inline": {
|
|
|
|
{`\\.`, Text, nil},
|
2022-07-05 03:51:57 +02:00
|
|
|
{`(\s)(\*|_)((?:(?!\2).)*)(\2)((?=\W|\n))`, ByGroups(Text, GenericEmph, GenericEmph, GenericEmph, Text), nil},
|
2019-10-27 17:04:31 +01:00
|
|
|
{`(\s)((\*\*|__).*?)\3((?=\W|\n))`, ByGroups(Text, GenericStrong, GenericStrong, Text), nil},
|
|
|
|
{`(\s)(~~[^~]+~~)((?=\W|\n))`, ByGroups(Text, GenericDeleted, Text), nil},
|
|
|
|
{"`[^`]+`", LiteralStringBacktick, nil},
|
|
|
|
{`[@#][\w/:]+`, NameEntity, nil},
|
|
|
|
{`(!?\[)([^]]+)(\])(\()([^)]+)(\))`, ByGroups(Text, NameTag, Text, Text, NameAttribute, Text), nil},
|
2020-05-12 02:12:28 +02:00
|
|
|
{`[^\\\s]+`, Other, nil},
|
|
|
|
{`.|\n`, Other, nil},
|
2019-10-27 17:04:31 +01:00
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|