Open links from task notes into new browser window/context (Fixes #5622)

This commit is contained in:
David Barnett
2016-01-19 11:01:41 -08:00
parent 2848f5d709
commit 7a29542815
+1 -1
View File
@@ -145,7 +145,7 @@
return function(input){
var html = md.toHtml(input);
html = html.replace(' href',' target="_self" href');
html = html.replace(' href',' target="_blank" href');
return html;
};