We may add this in the future, but we wanted to get the basic text editing right first.
One of the reasons we’ve held off is that you’ll need to style them, and everyone has a different idea on what a bulleted list should look like… it could get very complex, very quickly!
If you need a bulleted list on the page, you could use the flex component, or use a Custom Component and paste in some HTML/Tailwind.
<ul class="list-disc">
<li>Now this is a story all about how, my life got flipped-turned upside down</li>
<!-- ... -->
</ul>
<ol class="list-decimal">
<li>Now this is a story all about how, my life got flipped-turned upside down</li>
<!-- ... -->
</ol>
<ul class="list-none">
<li>Now this is a story all about how, my life got flipped-turned upside down</li>
<!-- ... -->
</ul>
But the problem with this is that you then are forced to break your longform text into separate parts in order to insert the list. This makes it a lot more cumbersome, especially if you want to move the text to somewhere else.
@dan This is one of the reasons I keep harping on Markdown, because you can easily create a bullet list in longform text. Albiet not with all the formatting options shown in this example. But at least it can be done.
I feel there is a case to be made for supporting a simple form of list in longform text. Then if a more stylish option is needed it can still be accomplished with the components offered by Elements.