I want to make an indented list, but I don\'t want it to have bullet points or numbers. I am using Rmarkdown in RStudio, and knitting to html.
#### bla bla
If you want to change how a list looks and you're outputting to HTML, use css:
--- title: "ListTest" output: html_document --- * This list * Doesn't have bullets * This list * Is normal
This won't work for other output formats.