Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jthomasmock/test-xaringan
https://github.com/jthomasmock/test-xaringan
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jthomasmock/test-xaringan
- Owner: jthomasmock
- Created: 2021-10-01T23:19:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-01T23:52:20.000Z (over 3 years ago)
- Last Synced: 2024-12-18T01:08:48.530Z (23 days ago)
- Language: JavaScript
- Size: 448 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# test-xaringan
The goal of test-xaringan is to test `xaringan` presentation to RStudio Connect.
```{r}
library(rsconnect)# option 1, send rendered doc alone
deployDoc("test-xaringan.html",
appName = "themed-xaringan",
appTitle = "A cool themed slide deck",
server = "colorado.rstudio.com")# option 2, send rendered doc alone, replace existing file
deployDoc("test-xaringan.html",
server = "colorado.rstudio.com",
appId = "4b9ec25-9264-4ade-ba39-639bcd1dcc50")# option 3, send source file and specify files
# with rmarkdown::find_external_resources
# note new url, since I want this to include source version as
# opposed to the original which was only the output HTML/cssrsconnect::deployDoc("test-xaringan-sourced.Rmd",
server = "colorado.rstudio.com",
appName = "themed-xaringan-sourced",
appTitle = "A cool themed slide deck, but rendered on Connect",
)```