Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quarto vignettes #6241

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ Suggests:
nlme,
profvis,
quantreg,
quarto,
ragg (>= 1.2.6),
RColorBrewer,
rmarkdown,
rpart,
sf (>= 0.7-3),
svglite (>= 2.1.2),
Expand All @@ -73,7 +73,7 @@ Suggests:
Enhances:
sp
VignetteBuilder:
knitr
quarto
Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate
Config/testthat/edition: 3
Config/usethis/last-upkeep: 2024-10-24
Expand Down
3 changes: 3 additions & 0 deletions vignettes/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*.html
*.R
**/figure-html/
**/libs/
/.quarto/
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Annotation"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Axes"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Barplots"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Customising"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Faceting"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "FAQ: Reordering"
format: html
---

```{=html}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
title: "Extending ggplot2"
output: rmarkdown::html_vignette
description: |
Official extension mechanism provided in ggplot2.
vignette: >
%\VignetteIndexEntry{Extending ggplot2}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
title: "Using ggplot2 in packages"
output: rmarkdown::html_vignette
description: |
Customising how aesthetic specifications are represented on your plot.
vignette: >
%\VignetteIndexEntry{Using ggplot2 in packages}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
---

Expand Down
3 changes: 1 addition & 2 deletions vignettes/ggplot2-specs.Rmd → vignettes/ggplot2-specs.qmd
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
title: "Aesthetic specifications"
output: rmarkdown::html_vignette
description: |
Customising how aesthetic specifications are represented on your plot.
vignette: >
%\VignetteIndexEntry{Aesthetic specifications}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
---

Expand Down
3 changes: 1 addition & 2 deletions vignettes/ggplot2.Rmd → vignettes/ggplot2.qmd
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
title: "Introduction to ggplot2"
output: rmarkdown::html_vignette
description: |
An overview of the layered grammar of graphics.
vignette: >
%\VignetteIndexEntry{Introduction to ggplot2}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
---

Expand Down
3 changes: 1 addition & 2 deletions vignettes/profiling.Rmd → vignettes/profiling.qmd
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---
title: "Profiling Performance"
author: "Thomas Lin Pedersen"
output: rmarkdown::html_vignette
description: |
Monitoring the performance of your plots.
vignette: >
%\VignetteIndexEntry{Profiling Performance}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
---

Expand Down
Loading