mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-24 09:51:29 +00:00
make plaintext urls in article content clickable
This commit is contained in:
@@ -3671,6 +3671,8 @@
|
||||
$res = preg_replace('/<img[^>]+>/is', '', $res);
|
||||
}
|
||||
|
||||
$res = rewrite_urls($res);
|
||||
|
||||
$charset_hack = '<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
</head>';
|
||||
@@ -7040,4 +7042,15 @@
|
||||
|
||||
}
|
||||
|
||||
function rewrite_urls($line) {
|
||||
global $url_regex;
|
||||
|
||||
$urls = null;
|
||||
|
||||
$result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
|
||||
"<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user