Commit 07792aa 1 parent 0d9143b commit 07792aa Copy full SHA for 07792aa
File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ navbar:
21
21
menu :
22
22
- text : " Get started"
23
23
href : articles/start.html
24
+ - text : " Meta package"
25
+ href : articles/meta.html
24
26
news :
25
27
text : " Changelog"
26
28
href : news/index.html
Original file line number Diff line number Diff line change 1
1
---
2
- title : " meta "
2
+ title : " Meta package "
3
3
---
4
4
5
5
``` {r, include = FALSE}
@@ -9,7 +9,7 @@ knitr::opts_chunk$set(
9
9
)
10
10
```
11
11
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.
13
13
14
14
### Basic infrastructure
15
15
@@ -19,7 +19,7 @@ Creating a meta-package might be easier than you think.
19
19
- From GitHub, e.g. ` usethis::use_dev_package("glue", "depends") `
20
20
- From CRAN, e.g. ` usethis::use_package("tibble", "depends") `
21
21
22
- The result would like this:
22
+ The resulting DESCRIPTION file would like this:
23
23
24
24
```
25
25
Package: meta
@@ -44,12 +44,12 @@ Remotes:
44
44
45
45
* Add a pkgdown website, e.g. ` usethis::use_pkgdown() `
46
46
* 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 ) ):
48
48
- Create an article, e.g. ` usethis::use_article("reference") `
49
49
- Organize the documentation by package or concept
50
50
- Optionally override the default
51
51
52
- Your _ pkgdown.yml would look like this:
52
+ The resulting _ pkgdown.yml file would like this:
53
53
54
54
``` yaml
55
55
navbar :
You can’t perform that action at this time.
0 commit comments