add link pasterule support for parenthesis

This commit is contained in:
Hans Pagel 2021-01-05 21:32:19 +01:00
parent b19baa0d4a
commit 358d2228d9

View File

@ -56,7 +56,7 @@ export default class Link extends Mark {
pasteRules({ type }) {
return [
pasteRule(
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z]{2,}\b([-a-zA-Z0-9@:%_+.~#?&//=,]*)/gi,
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z]{2,}\b([-a-zA-Z0-9@:%_+.~#?&//=,()]*)/gi,
type,
url => ({ href: url }),
),