diff options
author | friendica <info@friendica.com> | 2012-07-02 01:11:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-02 01:11:19 -0700 |
commit | 315784444af3145e6afba210731f0104d21f9db3 (patch) | |
tree | 56f4c6621a94afffeef574ba202733dc144ad30a /mod/babel.php | |
parent | a9c65dfe2725fd18d2fb1f593f9ffb9841729a96 (diff) | |
download | volse-hubzilla-315784444af3145e6afba210731f0104d21f9db3.tar.gz volse-hubzilla-315784444af3145e6afba210731f0104d21f9db3.tar.bz2 volse-hubzilla-315784444af3145e6afba210731f0104d21f9db3.zip |
try and get unadulterated bb2md2html2bb for simple stuff, then we'll work up to harder stuff
Diffstat (limited to 'mod/babel.php')
-rw-r--r-- | mod/babel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/babel.php b/mod/babel.php index 9d87b47f0..1c881a5bd 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -43,11 +43,11 @@ function babel_content(&$a) { $bbcode = diaspora2bb($diaspora); $o .= t("bb2dia2bb: ") . EOL. EOL; - $o .= $bbcode . EOL. EOL; + $o .= visible_lf($bbcode) . EOL. EOL; $bbcode = html2bbcode($html); $o .= t("bb2md2html2bb: ") . EOL. EOL; - $o .= $bbcode . EOL. EOL; + $o .= visible_lf($bbcode) . EOL. EOL; |