Facebookのウォール投稿の説明に改行を追加する必要があります。タグを使用したハッキングがありましたが、<center></center>
機能しなくなりました。私はAndroid用のFacebookAPIを使用しています:
public Bundle createFacebookMsg() {
Bundle params = new Bundle();
...
params.putString("description", "my custom string with LINE BREAKS");
// does not work any more
// params.putString("description", "line1<center></center>line2");
...
return params;
}