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.
Film of tv-serie niet gevonden? Meld je aan om deze toe te voegen.
Want to rate or add this item to a list?
Not a member?
Reactie van Travis Bell
op 17 februari 2016 om 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.
Reactie van shenden
op 18 februari 2016 om 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.
Reactie van Travis Bell
op 18 februari 2016 om 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.