How to make a list inside a list in richtext?

Hi!

can anyone tell me how to make a list inside other list in richtext block? I need something like this:

  1. This is main list element
    a) this is list element

18

No way for now to create valid nested UL inside webflow (Beside embed html).

Manually (Not 100% valid markup - but this is minor issue):
Create list item - write some text shift + enter (Line break) - write a. lorem bla bla again shift + enter write b. lorem bla bla and so on.

By the way for embed html a…b…c…you should declare type="a"

<ol type="a">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

Vote for this wishlist idea:
## Nested lists in rich text
https://wishlist.webflow.com/ideas/WEBFLOW-I-309

1 Like

Thank you @Siton_Systems! This is good workaround.

1 Like