Libertree: Improve the format of postings

This commit is contained in:
Michael Vogel 2012-06-18 21:54:35 +02:00
parent 182951f4ee
commit fe7c741eed
1 changed files with 16 additions and 2 deletions

View File

@ -172,11 +172,25 @@ function libertree_send(&$a,&$b) {
$title = $b['title'];
$body = $b['body'];
// Insert a newline before and after a quote
$body = str_ireplace("[quote", "\n\n[quote", $body);
$body = str_ireplace("[/quote]", "[/quote]\n\n", $body);
// remove multiple newlines
do {
$oldbody = $body;
$body = str_replace("\n\n\n", "\n\n", $body);
} while ($oldbody != $body);
// convert to markdown
$body = bb2diaspora($body);
// Adding the title
if(strlen($title))
$body = "[b]".html_entity_decode($title)."[/b]\n\n".$body;
$body = "## ".html_entity_decode($title)."\n\n".$body;
$params = array(
'text' => bb2diaspora($body)
'text' => $body
// 'token' => $ltree_api_token
);