I'm currently facing an issue while building my first app as hobby, The problem is that I receive some json data from a web request and this data is divided into arrays, here I decode my data using JSONDecoder() because I want to display the elements in my app. But some texts elements are HTML strings with some HTML tags (<p.> <br.>) and this is a problem because these tags are shown with the text.
How can I get rid of these tags so my text is readable.
Thanks you so much