Omar113
Omar113

Reputation: 210

Printing HTML styled lists from vectors in R

I have a vector in .Rmd file let's say

x <- c(1,2,3,4)

I want to print and export this file to html or doc file to look like

Any ideas?

Upvotes: 1

Views: 489

Answers (1)

akrun
akrun

Reputation: 887158

We can do

```{r, code2, results = "asis", echo = FALSE}
cat(paste("*", x), sep="\n")

```

-output

enter image description here

Upvotes: 1

Related Questions