[MFM] Better inline code parse

This commit is contained in:
syuilo
2018-11-21 12:55:15 +09:00
parent b7b36973f7
commit b2f8003602
2 changed files with 22 additions and 6 deletions

View File

@ -119,7 +119,7 @@ const mfm = P.createLanguage({
//#region Inline code
inlineCode: r =>
P.regexp(/`(.+?)`/, 1)
P.regexp(/`([^´\n]+?)`/, 1)
.map(x => makeNode('inlineCode', { code: x })),
//#endregion