@ctzhian/tiptap 1.13.7 → 1.13.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -373,7 +373,8 @@ export var InlineLinkExtension = Node.create({
|
|
|
373
373
|
return helpers.createNode('inlineLink', {
|
|
374
374
|
href: token.href || '',
|
|
375
375
|
title: token.title || null,
|
|
376
|
-
type: 'icon'
|
|
376
|
+
type: 'icon',
|
|
377
|
+
target: '_blank'
|
|
377
378
|
}, [helpers.createTextNode(token.text || '')]);
|
|
378
379
|
},
|
|
379
380
|
renderMarkdown: function renderMarkdown(node, h) {
|