NewBee
NewBee

Reputation: 1040

How to save html output in Rmarkdown

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: default
date: "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?!

Upvotes: 3

Views: 27583

Answers (1)

remcv
remcv

Reputation: 11

Recently, the export mechanism for files has changed slightly. Now you have to check the corresponding check-box of the file you wish to export and then select More -> Export, as shown in this picture: enter image description here

Upvotes: 1

Related Questions