Quarto formats editor comments

This commit is contained in:
mine-cetinkaya-rundel 2023-03-11 11:26:05 -05:00
parent 4815ed1bd3
commit 134de2e4a1
1 changed files with 10 additions and 6 deletions

View File

@ -3,6 +3,7 @@
```{r}
#| results: "asis"
#| echo: false
source("_common.R")
status("complete")
```
@ -127,7 +128,8 @@ You can read more about creating presentations with Quarto at [https://quarto.or
## Interactivity
Any HTML document can contain interactive components.
Just like any HTML document, HTML documents created with Quarto can contain interactive components as well.
Here we introduce two options for including interactivity in your Quarto documents: htmlwidgets and Shiny.
### htmlwidgets
@ -149,13 +151,13 @@ All the details are wrapped inside the package, so you don't need to worry about
There are many packages that provide htmlwidgets, including:
- **dygraphs**, [https://rstudio.github.io/dygraphs](https://rstudio.github.io/dygraphs/){.uri}, for interactive time series visualizations.
- [**dygraphs**](https://rstudio.github.io/dygraphs) for interactive time series visualizations.
- **DT**, [https://rstudio.github.io/DT/](https://rstudio.github.io/DT){.uri}, for interactive tables.
- [**DT**](https://rstudio.github.io/DT/) for interactive tables.
- **threejs**, [https://bwlewis.github.io/rthreejs](https://bwlewis.github.io/rthreejs/){.uri} for interactive 3d plots.
- [**threejs**](https://bwlewis.github.io/rthreejs) for interactive 3d plots.
- **DiagrammeR**, <https://rich-iannone.github.io/DiagrammeR> for diagrams (like flow charts and simple node-link diagrams).
- [**DiagrammeR**](https://rich-iannone.github.io/DiagrammeR) for diagrams (like flow charts and simple node-link diagrams).
To learn more about htmlwidgets and see a complete list of packages that provide them visit <https://www.htmlwidgets.org>.
@ -258,7 +260,9 @@ Quarto offers even more output formats:
See <https://quarto.org/docs/output-formats/all-formats.html> for a list of even more formats.
## Learning more
## Summary
In this chapter we presented you a variety of options for communicating your results with Quarto, from static and interactive documents to presentations to websites and books.
To learn more about effective communication in these different formats, we recommend the following resources: