he www folder works perfectly.
Regarding the knitting, I am assuming that, if I want the .rmd page to be knitted with the specific information, my code will look something like this:
(working with the DT package to make the .rmd file knit on table row click)
output$tableSubset=DT::renderDataTable({
rown=input$res_rows_selected
fullTable=res.table() #subset of information used in output table above
nm=as.character(fullTable[rown,"name"])
rmarkdown::render("MyDocument.Rmd", params = list(
name = nm
))
})
My question is: once the user clicks on the table row, will the newly-knitted MyDocument.rmd be opened in another page by default?