I'm building an app using Xamarin Android, and I want to convert HTML to normal with formatting, for example :
HTML Code
<p><strong>Lorem ipsum</strong> is placeholder text <strong><em><span style="color:#ff0000">commonly</span></em></strong> used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<p> </p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Text
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
- Item 1
- Item 2
- Item 3
I get this content from the database and I want to convert post content to Text with formatting.