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.
Nevari atrast filmu vai TV pārraidi? Jāpiesakās, lai to izveidotu.
Vēlies novērtēt šo vienumu vai pievienot to sarakstam?
Neesi dalībnieks?
Atbilde no Travis Bell
on februāris 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.
Atbilde no shenden
on februāris 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.
Atbilde no Travis Bell
on februāris 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.