aboutsummaryrefslogtreecommitdiffstats
path: root/include/markdown.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-08 19:10:08 -0700
committerMario Vavti <mario@mariovavti.com>2017-05-10 14:50:06 +0200
commit660ea89521646251fc3a547cee7c38341dcb5d8f (patch)
treef84ca7a4cc5dfa658e23fe8b82167ba8e453b8e6 /include/markdown.php
parent8a129610da14577c8dc54d878bb8b644caf918ec (diff)
downloadvolse-hubzilla-660ea89521646251fc3a547cee7c38341dcb5d8f.tar.gz
volse-hubzilla-660ea89521646251fc3a547cee7c38341dcb5d8f.tar.bz2
volse-hubzilla-660ea89521646251fc3a547cee7c38341dcb5d8f.zip
handle mastodon urls in markdown/bbcode conversion
Diffstat (limited to 'include/markdown.php')
-rw-r--r--include/markdown.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/markdown.php b/include/markdown.php
index 7e1f1c42c..a9617f72b 100644
--- a/include/markdown.php
+++ b/include/markdown.php
@@ -199,10 +199,10 @@ function markdown_to_bb($s, $use_zrl = false) {
// Convert everything that looks like a link to a link
if($use_zrl) {
$s = str_replace(array('[img','/img]'),array('[zmg','/zmg]'),$s);
- $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\(\)]+)/ism", '$1[zrl=$2$3]$2$3[/zrl]',$s);
+ $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@\(\)]+)/ism", '$1[zrl=$2$3]$2$3[/zrl]',$s);
}
else {
- $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\(\)]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);
+ $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@\(\)]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);
}
// remove duplicate adjacent code tags