0

After writing up a Slidify content when pressing knit HTML button on RStudio IDE version 0.99.467 it only renders HTML file and NOT the slides? I have used default YAML and a YAML used by Ramnath from his github repository examples with the same result. Is there a change or what am I missing?

Antex
  • 1,364
  • 4
  • 18
  • 35

1 Answers1

0

Ok, this steps fixed my issue.

Restart R (or alternatively restart RStudio).
install.packages('stringr')
devtools::install_github('muschellij2/slidify')
library(slidify)
slidify("index.Rmd")

full discussion is found here

Antex
  • 1,364
  • 4
  • 18
  • 35