I want to make nested lists where the second layer has a different starting character from the first - an unordered list nested within an ordered list.
Example :
- top-level thing
- sub-thing
- another sub-thing
- another top-level thing
- third top-level thing
Here’s the plain text of what I wrote for the above :
1. top-level thing
- sub-thing
- another sub-thing
2. another top-level thing
3. third top-level thing
This renders differently in this help box than it does in a Rich Text element. Based on this example above, it is possible to nest an unordered list in an ordered list in Markdown.
However, if I use exactly the same characters in a Rich Text element, it renders the following :
1. top-level thing
1. sub-thing
2. another sub-thing
2. another top-level thing
3. third top-level thing
How do I get the first example of nested lists render in a Rich Text element in a Glide app?
Thank you.