mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-22 09:25:53 +08:00
fix link pattern to also detect new (longer) top level domains
This commit is contained in:
parent
0e59e0cc0c
commit
d8cc84bde9
@ -44,7 +44,7 @@ export default class Link extends Mark {
|
|||||||
pasteRules({ type }) {
|
pasteRules({ type }) {
|
||||||
return [
|
return [
|
||||||
pasteRule(
|
pasteRule(
|
||||||
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/g,
|
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-zA-Z]{2,}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/g,
|
||||||
type,
|
type,
|
||||||
url => ({ href: url }),
|
url => ({ href: url }),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user