Hi,
First and foremost, thans for a great API!
I do wonder though, how do I format the biography text? (bioURL = 'http://api.themoviedb.org/3/person/18897?api_key=') I wanna split it up in a couple of paragraphs instead of it being a wall of text..
Im a bit new working with API:s so Im sorry if the question might be simple and the answer obvious.
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Travis Bell
on February 17, 2016 at 1:32 PM
Hi shenden,
The API will return
\n
for new lines. You can sub those out with whatever you're doing in your app (ie.<p>
tags if it's HTML).Cheers.
Reply by shenden
on February 18, 2016 at 8:38 AM
Hey Travis! Thanks for the quick response!
Yeah I guessed it was something like that, but I still don't get exactly how? Im writing out the data this way: var jjBio = '
' + data.biography + '
'; And it still gives me the same problem. Where do I put the? Sorry again, Im really new at this.
Reply by Travis Bell
on February 18, 2016 at 8:44 PM
Hi Shenden,
There's a few ways you can do this. I am most familiar with Ruby so I can really only provide some examples with it.
Lets say you had a string:
You could do:
You could also use something like Markdown, which is what I actually do on the website (using RedCarpet):
Hope that helps.