Formats HTML into a readable plain text string, handling paragraphs, lists, and links.
The HTML string to format
The formatted plain text string
formatFromHtml("<ul><li>Item 1</li><li>Item 2</li></ul>") // Returns "- Item 1\n- Item 2" Copy
formatFromHtml("<ul><li>Item 1</li><li>Item 2</li></ul>") // Returns "- Item 1\n- Item 2"
Formats HTML into a readable plain text string, handling paragraphs, lists, and links.