diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-08 19:10:08 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-10 14:50:06 +0200 |
commit | 660ea89521646251fc3a547cee7c38341dcb5d8f (patch) | |
tree | f84ca7a4cc5dfa658e23fe8b82167ba8e453b8e6 /include/markdown.php | |
parent | 8a129610da14577c8dc54d878bb8b644caf918ec (diff) | |
download | volse-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.php | 4 |
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 |