I keep getting errors when trying to do simple things like make italics:
Error: unexpected '' in " "
italic
Or when making lists like this:
Input:
## Unordered List
* Item 1
* Item 2
+ Item 2a
+ Item 2b
Output when running chunk:
Error: unexpected '' in " "
Unordered List
Even simple workarounds like adding a space don't work:
What am I doing wrong?
Thanks in advance! I am very new to R and R studio and taking a coursera course in it currently!
FJCC
December 27, 2024, 3:54pm
2
You should not use formatted text inside of code blocks.
I didn't, it formatted it automatically in the post. If you look at the picture I included, you'll see it better
FJCC
December 27, 2024, 4:32pm
4
In your image, I see line 34 is
```{r}
which starts a code block. Below that, I see the formatting for an Unordered list. That is what I mean by using formatted text inside of code blocks. Remove lines 34 and 41 which define the code block and your unordered list should work.
Awesome, that worked! Thanks for your help!
system
Closed
March 27, 2025, 6:02pm
6
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.