I\'ve been working in RMarkdown to make some slide sets, and have discovered odd behavior with respect to nested lists and mixing of list types. The following short presenta
I was having the same problem and found a solution that worked. When making nested lists without incremental reveal, you need to add four spaces for sub-bullets. When making lists with incremental reveal, you need to add one space after >. So, when making sub-bullets with incremental reveal, you need five spaces between > and - (one for the incremental syntax, and four for the nested list syntax).
So, a regular list with incremental reveal would look like this:
>- Point 1
>- Point 2
If you want to add sub-bullets, this will not work:
>- Point 1
>- Sub-bullet
>- Point 2
But this will work:
>- Point 1
>- Sub-bullet
>- Point 2
Hope this is helpful/readable!