diff options
author | friendica <info@friendica.com> | 2012-01-08 17:20:03 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-08 17:20:03 -0800 |
commit | 3bdcb5247105f41a1b436cd00727148cda2f90b9 (patch) | |
tree | 748b113641a30dd5b882e72d7e48146714ee458a | |
parent | 96031d0e95cb1837944bc38afb056c8fd6ebb594 (diff) | |
download | volse-hubzilla-3bdcb5247105f41a1b436cd00727148cda2f90b9.tar.gz volse-hubzilla-3bdcb5247105f41a1b436cd00727148cda2f90b9.tar.bz2 volse-hubzilla-3bdcb5247105f41a1b436cd00727148cda2f90b9.zip |
markdown bug is Diaspora's. We can't fix it.
-rw-r--r-- | include/bb2diaspora.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index cc188336b..38f5c6735 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -94,6 +94,9 @@ function bb2diaspora($Text,$preserve_nl = false) { // [img]pathtoimage[/img] +// $Text = preg_replace("/\[url\=([$URLSearchString]*)\]\[img\](.*?)\[\/img\]\[\/url\]/ism", +// '![' . t('image/photo') . '](' . '$2' . ')' . "\n" . '[' . t('link') . '](' . '$1' . ')', $Text); + $Text = preg_replace("/\[bookmark\]([$URLSearchString]*)\[\/bookmark\]/ism", '[$1]($1)', $Text); $Text = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", '[$2]($1)', $Text); @@ -101,8 +104,6 @@ function bb2diaspora($Text,$preserve_nl = false) { $Text = preg_replace("/\#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[#$2]($1)', $Text); $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[$2]($1)', $Text); - $Text = preg_replace("/\[url\=([$URLSearchString]*)\]\[img\](.*?)\[\/img\]\[\/url\]/ism", - '![' . t('image/photo') . '](' . '$2' . ')' . "\n" . '[' . t('link') . '](' . '$1' . ')', $Text); $Text = preg_replace("/\[img\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$1' . ')', $Text); |