Indent without adding a bullet point or number in RMarkdown

前端 未结 2 506
[愿得一人]
[愿得一人] 2021-01-13 00:37

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         


        
2条回答
  •  感动是毒
    2021-01-13 01:18

    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.

提交回复
热议问题