Diaspora: Improved parsing of linefeeds

This commit is contained in:
Michael Vogel 2015-07-05 02:33:28 +02:00
parent 43f98bc854
commit c356da2cad
2 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,15 @@ function diaspora2bb($s) {
$s = str_replace('#','#',$s);
$search = array(" \n", "\n ");
$replace = array("\n", "\n");
do {
$oldtext = $s;
$s = str_replace($search, $replace, $s);
} while ($oldtext != $s);
$s = str_replace("\n\n", "<br>", $s);
$s = html2bbcode($s);
// protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands

View File

@ -1216,6 +1216,7 @@ section.minimal {
.wall-item-container .wall-item-content img {
max-width: 100%;
vertical-align: middle;
/* max-width: 650px; */
/* max-width: 580px; */
}