[MFM] Add <i> syntax

This commit is contained in:
syuilo
2019-01-20 17:52:11 +09:00
parent ff4cb3555b
commit f8ba73bebf
2 changed files with 10 additions and 1 deletions

View File

@ -224,7 +224,7 @@ const mfm = P.createLanguage({
//#region Italic
italic: r =>
P.regexp(/(\*|_)([a-zA-Z0-9]+?[\s\S]*?)\1/, 2)
P.alt(P.regexp(/<i>([\s\S]+?)<\/i>/, 1), P.regexp(/(\*|_)([a-zA-Z0-9]+?[\s\S]*?)\1/, 2))
.map(x => createTree('italic', P.alt(
r.bold,
r.strike,