Hi,
I noticed that when I click the "Knit to PDF" or "Knit to Word" options in the Knit pulldown menu, RStudio will run rmarkdown::render_site() in any case, so I'm only getting HTML outputs. If I use rmarkdown::render() manually in the console, everythings work fine.
These is the YAML section in my .Rmd:
---
title: "COVID LUS Stats Report"
output:
pdf_document:
toc: yes
html_document:
fig_caption: yes
word_document:
toc: yes
fig_caption: yes
----
Can anyone explain how the Knit button got overridden and how can I get it back?
Update: obligatory screen capture gif:
Thanks!