Hello
I’m looking to display rich text in my ionic cards. How can I render some text as bold text on ionic - I get this text from my server as json.
Thanks a ton
SK
Hello
I’m looking to display rich text in my ionic cards. How can I render some text as bold text on ionic - I get this text from my server as json.
Thanks a ton
SK
something like this:
<p ng-bind-html="scopeVariableWithRichText"></p>
But there is the possibility, that angular blocks this then you need $sce
https://docs.angularjs.org/api/ng/service/$sce
$sce.trustAsHtml(yourHTMLContent);
I had the same problem in an ionic project where I had to display data from an e-commerce site that had rich text.
This link helped me out https://stackoverflow.com/questions/56884168/displaying-pre-formatted-html-content-in-ionic.