diff --git a/plugins/tiddlywiki/markdown/wrapper.js b/plugins/tiddlywiki/markdown/wrapper.js index 803f1a7ca..e7a97fadb 100755 --- a/plugins/tiddlywiki/markdown/wrapper.js +++ b/plugins/tiddlywiki/markdown/wrapper.js @@ -119,7 +119,8 @@ function convertNodes(remarkableTree, isStartOfInline) { // External link var attributes = { class: { type: "string", value: "tc-tiddlylink-external" }, - href: { type: "string", value: currentNode.href } + href: { type: "string", value: currentNode.href }, + rel: { type: "string", value: "noopener noreferrer" } }; if (pluginOpts.linkNewWindow) { attributes.target = { type: "string", value: "_blank" };