I have a bulleted list that has a numbered sublist that I can't get to format as I want.
- foo
- bar
1. some
1. thing
1. else
- baz
On GitHub this renders as:
- foo
- bar
i. some
ii. thing
iii. else
- baz
What I'd like is:
- foo
- bar
1. some
2. thing
3. else
- baz
The following issue didn't seem to help https://github.com/github/markup/issues/210
This is not a duplicate of Markdown: What's the proper way to do a continued list inside of a list? as that is about how to have the numbering continue across higher level list elements.