Reputation: 4879
I am trying to write an .Rmd
document for a GitHub
repo and the relevant text of the doucment looks like the following:
---
title: "trial"
output: github_document
---
## R Markdown
`r emo::ji("check")` descriptive statistics <br>
`r emo::ji("check")` statistic + *p*-value <br>
`r emo::ji("check")` effect size + CIs <br>
If I knit this, I see an unnecessary list is created at the letter CIs, and I am not sure why or how to avoid this behavior:
This problem disappears as soon as I remove +
before CI in effect size + CIs
. But I'd like to include +
.
Any solutions?
Upvotes: 1
Views: 49
Reputation: 869
Add a space:
---
title: "trial"
output: github_document
---
## R Markdown
`r emo::ji("check")` raw data + distributions <br>
`r emo::ji("check")` descriptive statistics <br>
`r emo::ji("check")` statistic + p <br>
`r emo::ji("check")` effect size + CIs
Upvotes: 1