&target_blank(https://google.com/);
&target_blank(Google,https://google.com/);
plugin/target_blank.inc.php
<?php
function plugin_target_blank_inline(){
$ret = '';
$args = func_get_args();
$frm = '<a href="%s" target="_blank">%s</a><sup><font size="-2">↑</font></sup>';
if (isset($args[1]) && $args[1] != '') {
$ret = sprintf($frm, $args[1], $args[0]);
} else {
$ret = sprintf($frm, $args[0], $args[0]);
}
return $ret;
}
?>