improve pasteRule for links, allow single letter domains

This commit is contained in:
Hans Pagel 2020-08-07 14:41:44 +02:00
parent 92d6a70668
commit b7c1659462

View File

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