-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[setup-r-dependencies]: install quarto if needed (#895)
* [setup-r-dependencies]: install quarto if needed * Add a .qmd vignette to test quarto install * Implement install-querto properly Plus better install-pandoc messaging. * Add quarto dep to test package * Proper quarto test vignette * More quarto vignette fixes * Need explicit Bootstrap 5 for quarto vignette * Add NEWS for `install-quarto`
- Loading branch information
1 parent
732fb28
commit 67f8747
Showing
7 changed files
with
92 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Package: testpackage | ||
Title: A Simple Test Description File to Test Packages | ||
Version: 1.0.0 | ||
Authors@R: | ||
Authors@R: | ||
c(person(given = "Jim", | ||
family = "Hester", | ||
role = c("aut", "cre"), | ||
email = "[email protected]")) | ||
Description: This is a simple package used to test the workflow files. | ||
Imports: xml2, curl | ||
Suggests: covr, knitr, rmarkdown, testthat | ||
Suggests: covr, knitr, rmarkdown, testthat, quarto | ||
License: GPL (>= 2) | ||
VignetteBuilder: knitr, rmarkdown | ||
VignetteBuilder: knitr, rmarkdown, quarto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
template: | ||
bootstrap: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: "Quarto HTML Vignettes" | ||
vignette: > | ||
%\VignetteIndexEntry{Quarto HTML Vignettes} | ||
%\VignetteEngine{quarto::html} | ||
%\VignetteEncoding{UTF-8} | ||
--- | ||
|
||
## HTML Vignette Engines | ||
|
||
The **quarto** R package registers vignette engines that can be used in `%\VignetteEngine{}` directives in vignette headers. | ||
|
||
To learn more about how vignettes engine works, and how to write vignette engines, see the [Writing R Extensions](https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Non_002dSweave-vignettes) manual and the [R Packages (2e)](https://r-pkgs.org/vignettes.html) book. | ||
|
||
Irure ad excepteur aliqua esse id sint ex aliquip laborum. Officia laborum ex cupidatat exercitation velit. Nisi elit incididunt nisi ullamco. Ut Lorem eiusmod anim ipsum dolore cupidatat officia non. Culpa voluptate consectetur in ullamco minim sit sunt. Ad aute laborum laborum cillum qui consequat proident sit ad incididunt. Enim nisi nulla aliquip anim fugiat deserunt aliqua aliqua sunt nisi commodo magna reprehenderit. Reprehenderit dolor sunt nulla mollit est magna exercitation dolore magna. Mollit qui labore tempor commodo veniam cupidatat esse irure nisi eiusmod qui dolore nisi. | ||
|
||
```{r} | ||
summary(mtcars) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters