Bug or feature: HTML lists in CMS not working

Have a list in Airtable in HTML (pasted below) that when put into a rich text field in Webflo via the API does not work (see screenshot). All other HTML formatting seems to work. Does anyone know where I’m going wrong?

Screenshot:

HTML in Airtable:

<ul>

<li>Weight per shoe (size 9): 8.8 ounces (249 grams)</li>

<li>5.5mm FeelTrue® rubber sole</li>

<li>Optional 3mm insole for a customizable "barefoot feel"</li>

<li>100% vegan-friendly materials</li>

<li>Reflective heel and instep Huarache-inspired straps</li>

<li>Price: $89.99</li>

<li>5,000-mile sole warranty</li>

</ul>

Here is my public share link: LINK
(how to access public share link)

I have same issue :cry:. Did you find the solution yet? @Graffiki

I’m having issue with this too. How do we solve this? Thanks

I recall you have to wrap the list in a DIV.
If you look at what Webflow’s RTB normally generates for a list element, the structure is;

<div>
    <ul role="list">
        <li>
            <span>Item 1.</span>
        </li>
        <li>
            <span>Item 2.</span>
        </li>
    </ul>
</div>