I'm following the following cheat sheet:
https://www.rstudio.com/wp-content/uploads/2015/02/rmarkdown-cheatsheet.pdf
And trying to make some lists using the following code (copy pasted from the cheat sheet)
---
title: "Test"
author: "Test"
date: "7 August 2017"
output: html_document # or pdf_document
---
* unordered list
* item 2
+ sub-item 1
+ sub-item 2
1. ordered list
2. item 2
+ sub-item 1
+ sub-item 2
But the results are not the same as in the cheat sheet, the circles are not the same and the sub items do not get indented.