Skip to content

Commit fe68f26

Browse files
committed
docs: switch to quarto
1 parent dc6e998 commit fe68f26

7 files changed

Lines changed: 25 additions & 6 deletions

File tree

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@
1111
^_pkgdown\.yml$
1212
^docs$
1313
^pkgdown$
14+
^vignettes/articles/\.quarto$
15+
^vignettes/articles/*_files$
16+
^vignettes/articles$

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ BENCHMARKS.R
1111
cran-comments.md
1212
CRAN-SUBMISSION
1313
docs
14+
**/.quarto/

DESCRIPTION

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ Language: en-US
2020
Suggests:
2121
hydroGOF,
2222
testthat (>= 3.0.0),
23-
quickcheck (>= 0.1.3)
23+
quickcheck (>= 0.1.3),
24+
quarto
2425
Config/testthat/edition: 3
2526
URL: https://github.com/atsyplenkov/tidyhydro, https://atsyplenkov.github.io/tidyhydro/
2627
BugReports: https://github.com/atsyplenkov/tidyhydro/issues
2728
LazyData: true
28-
Config/Needs/website:
29-
bench,
30-
ggplot2
29+
Config/Needs/website: bench, ggplot2, quarto

_pkgdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ footer:
1919
left: [developed_by]
2020
right: [legal]
2121
components:
22-
legal: "[MIT](https://opensource.org/license/mit) License | Copyright (c) 2025 centerline authors"
23-
developed_by: Developed by [Anatolii Tsyplenkov](https://github.com/atsyplenkov)
22+
legal: "[MIT](https://opensource.org/license/mit) License | Copyright (c) 2025 tidyhydro authors"
23+
developed_by: Developed by [Anatolii Tsyplenkov](https://github.com/atsyplenkov)

vignettes/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

vignettes/articles/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.html
2+
*.R
3+
*_files

vignettes/articles/tidyhydro.qmd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "getting-started"
3+
knitr:
4+
opts_chunk:
5+
collapse: true
6+
comment: '#>'
7+
---
8+
9+
```{r}
10+
#| label: setup
11+
library(tidyhydro)
12+
```

0 commit comments

Comments
 (0)