When inserting HTML like this, Muse is not rendering bullet points:
<ul>
<li>Bullet 1</li>
<li>Bullet 2</li>
<li>Bullet 3</li>
</ul>
What do I miss here?
Thanks.
Paul
There is CSS reset in muse that overwrites the default list styling. You will have to specify the style in the code that you insert. Something like this may be,
<style>
li { list-style:disc }
</style>
<ul>
<li>Bullet 1</li>
<li>Bullet 2</li>
<li>Bullet 3</li>
</ul>
- Abhishek Maurya