Merge pull request #1031 from SISheogorath/fix/emojiPlugin

Fix emoji regex
This commit is contained in:
Christoph (Sheogorath) Kern
2018-10-31 00:30:23 +01:00
committed by GitHub

View File

@@ -1147,7 +1147,7 @@ const pdfPlugin = new Plugin(
const emojijsPlugin = new Plugin(
// regexp to match emoji shortcodes :something:
/:([\d\D]*):/,
/:([^\s:]+):/,
(match, utils) => {
const emoji = match[1] ? match[1].toLowerCase() : undefined