This is the first time I am using rmarkdown to knit a document into an html output. I see the output as an html document, no problem. However the output is linked to my personal working directory (example:file:///C:/Users/e337384/table_formatting.html).
---title: "Inter-Rater Agreement (Long Beach)"output: html_document: default word_document: defaultdate: "2/6/2020"---```{r,echo=FALSE, message=FALSE}library(knitr)require(kableExtra)library(tidyverse)options(knitr.table.format = "html")```
I would like to be able to share the html document with my team, but since the output is linked to my drive only I can see it. How do I save this output in a way that allows me to share this html output?!