While using ionic tinder cards, I need to ensure that each new card is added to a predefined array as an object in the following format:
{text: "some_text"}
The challenge arises when there is HTML content within the string, and I aim for that HTML to be displayed. How can this be achieved, considering that the object mentioned above goes into a predefined array, certain actions take place in the Ionic code, and then it is injected like so?
<div class="card">
{{card.text}}
</div>