We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2463a51 commit bb13a98Copy full SHA for bb13a98
1 file changed
public/js/extra.js
@@ -207,6 +207,10 @@ function postProcess(code) {
207
result.find("iframe").replaceWith(function () {
208
return "<noiframe>" + $(this).html() + "</noiframe>"
209
});
210
+ //link should open in new window or tab
211
+ result.find('a:not([target])').attr('target', '_blank');
212
+ return result;
213
+}
214
}
215
216
0 commit comments