Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this as the basis of a simple Facebook status update web app I'm writing: http://ingig.net/weblog/2010/04/21/using-graph-api-to-post-status-update-with-c/. All good, works well. However, I'd like to include a line break in the status message. I've tried adding a simple HTML
tag, but this is just rendered as text.

Anyone know if this is possible, and if so, how?

share|improve this question

7 Answers

up vote 16 down vote accepted

It sounds silly, but this works: Insert <center></center> where you would normally put <br>.

share|improve this answer
4  
Put <center>&nbsp;</center> for you need than one <br /> – Prabhat Jul 29 '11 at 10:18
1  
This no longer works. – BK. Sep 24 '11 at 14:30
Both <center></center> and <center>&nbsp;</center>works for me. – Johan B Feb 17 '12 at 18:26
In iOS, this does NOT work for preview of text (shows <center></center> which looks ugly), but DOES work once posted to wall! – ayreguitar Jun 16 '12 at 7:58
Update: Preview shows the <center></center> text in the Description part of a post. But preview looks fine if use the Caption part of the post instead! – ayreguitar Jun 16 '12 at 10:57
show 4 more comments

You need to add carriage return i.e \n\r because facebook accept only enter for new line.

share|improve this answer

\n Worked Its smallest an easiest way to add line breaks

share|improve this answer

\r\n seems to work just fine to get line breaks in facebook

share|improve this answer
this works for me as well. – user123321 Jan 17 at 3:46
how exactly you manipulate the $selector.val() to add \r\n ? – Mattherick Jan 17 at 10:36

Please observe the new line that is used in the below code (an enter is hit inside the editor), that serves the purpose of adding new line to a post at a specific location:

    $fb_status_with_new_line = "Text before new line" . "
    " . "Text after new line";
share|improve this answer
This works. :) +1 – Love Jun 15 '12 at 21:12

%0A might work, i think i used that on one of my apps before.

HTML Decimal: &#10;
HTML Hexadecimal: &#x0A;
Java Hexadecimal: \u000A (Common To Javascript)
URL Hexadecimal: %0A
Escape Sequence: \n

HTML tag : <br>

Hope these come in handy :)

share|improve this answer

If you replace return characters (\r) with new line characters (\n) you can achieve the desired result.

Enjoy...

share|improve this answer
1  
Doesn't work i'm afraid. – Soroush Hakami Feb 8 '12 at 13:13
1  
\n works for me. – Hitendra Oct 1 '12 at 14:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.