Merge pull request #502 from Alecyrus/patch-2

Fixed InputRule deletes the next unrelated char that should not be deleted.
This commit is contained in:
Philipp Kühn 2019-12-16 10:53:31 +01:00 committed by GitHub
commit 4054a9953e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ export default function (regexp, markType, getAttrs) {
if (match[m]) {
const matchStart = start + match[0].indexOf(match[m - 1])
const matchEnd = matchStart + match[m - 1].length
const matchEnd = matchStart + match[m - 1].length - 1
const textStart = matchStart + match[m - 1].lastIndexOf(match[m])
const textEnd = textStart + match[m].length