I am trying to create a list using this code in Rmarkdown:
```r
vars_col <- c(letters[1:5])
model_latent_vars <- c(LETTERS[1:5])
```
Variables list:
`r paste0(" - ", vars_col, " — ", model_latent_vars, collapse = " \newline ")`
The result is not the desired one, I would like to obtain a bullet list, however with this solution only the first line gets the bullet.