diff --git a/editor/js/ui/tab-info.js b/editor/js/ui/tab-info.js index fd9e74a42..156e29292 100644 --- a/editor/js/ui/tab-info.js +++ b/editor/js/ui/tab-info.js @@ -124,7 +124,8 @@ RED.sidebar.info = (function() { } else if (node._def && node._def.info) { var info = node._def.info; var textInfo = (typeof info === "function" ? info.call(node) : info); - $('
'+marked(textInfo)+'
').appendTo(content); + var ma = marked(textInfo).replace(/href=/g, 'target="_blank" href='); + $('
'+ma+'
').appendTo(content); //$('
'+(typeof info === "function" ? info.call(node) : info)+'
'; }