My DB stores text from a WYSIWYG editor that looks something like this:
<p><s>Hi!</s></p>
<p>My Name is Bob's.</p>
<p> </p>
<p>I like to eat these things:</p>
<ul>
<li>Candy</li>
<li>Veggies</li>
<li>Everything</li>
</ul>
<p>Enjoy<sup>2</sup></p>
In my view I have something like:
sheet.add_row [@event.text], style: font_format
where @event.text is the above html
Is there a way to make this formatting work in excel using axlsx?