mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 10:27:28 -07:00
Improve MFM
This commit is contained in:
parent
91622ff1db
commit
2018edcdec
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,7 @@ const mfm = P.createLanguage({
|
|||
P.regexp(/^\*\*\*([\s\S]+?)\*\*\*/, 1)
|
||||
.map(x => makeNodeWithChildren('big', P.alt(
|
||||
r.mention,
|
||||
r.hashtag,
|
||||
r.emoji,
|
||||
r.text
|
||||
).atLeast(1).tryParse(x))),
|
||||
|
@ -85,6 +86,7 @@ const mfm = P.createLanguage({
|
|||
P.regexp(/\*\*([\s\S]+?)\*\*/, 1)
|
||||
.map(x => makeNodeWithChildren('bold', P.alt(
|
||||
r.mention,
|
||||
r.hashtag,
|
||||
r.emoji,
|
||||
r.text
|
||||
).atLeast(1).tryParse(x))),
|
||||
|
@ -176,6 +178,7 @@ const mfm = P.createLanguage({
|
|||
.map(x => makeNodeWithChildren('motion', P.alt(
|
||||
r.bold,
|
||||
r.mention,
|
||||
r.hashtag,
|
||||
r.emoji,
|
||||
r.text
|
||||
).atLeast(1).tryParse(x))),
|
||||
|
|
Loading…
Reference in a new issue