Hey, hey
I am very happy with Fuse, it’s really easy to learn and build an app, i’ve already tried many frameworks like titanium, cordova but fuse is my best.
Today i tried to fetch json from remote server, it works great after some testing, but i face a little probleme, my json contains html tags, like line break, or paragraph that i want to ask some questions :
- Is it possible to render html from json ? like line breaks, they’re important for easy reading.
- If not how to handle line breaks inside fuse? and how to remove html tags from my Json?
I tried :
str.replace(/<\/?[^>]+>/gi, '')
but it’s not working.
Thanks for your advices.