Skip to content

Commit 07792aa

Browse files
committed
Polish
1 parent 0d9143b commit 07792aa

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

_pkgdown.yml

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ navbar:
2121
menu:
2222
- text: "Get started"
2323
href: articles/start.html
24+
- text: "Meta package"
25+
href: articles/meta.html
2426
news:
2527
text: "Changelog"
2628
href: news/index.html

vignettes/articles/meta.Rmd

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "meta"
2+
title: "Meta package"
33
---
44

55
```{r, include = FALSE}
@@ -9,7 +9,7 @@ knitr::opts_chunk$set(
99
)
1010
```
1111

12-
Creating a meta-package might be easier than you think.
12+
Creating and documenting a simple meta-package might be easier than you think.
1313

1414
### Basic infrastructure
1515

@@ -19,7 +19,7 @@ Creating a meta-package might be easier than you think.
1919
- From GitHub, e.g. `usethis::use_dev_package("glue", "depends")`
2020
- From CRAN, e.g. `usethis::use_package("tibble", "depends")`
2121

22-
The result would like this:
22+
The resulting DESCRIPTION file would like this:
2323

2424
```
2525
Package: meta
@@ -44,12 +44,12 @@ Remotes:
4444

4545
* Add a pkgdown website, e.g. `usethis::use_pkgdown()`
4646
* Add a home page with `usethis::use_readme_rmd()` and add installation instructions
47-
* Create an article to host the documentation of the universe (see [how](https://maurolepore.github.io/dverse/articles/start.html)):
47+
* Create an article and document your universe with dverse ([Get started](https://maurolepore.github.io/dverse/articles/start.html)):
4848
- Create an article, e.g. `usethis::use_article("reference")`
4949
- Organize the documentation by package or concept
5050
- Optionally override the default
5151

52-
Your _pkgdown.yml would look like this:
52+
The resulting _pkgdown.yml file would like this:
5353

5454
```yaml
5555
navbar:

0 commit comments

Comments
 (0)