-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
47 lines (32 loc) · 1.3 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
<!-- badges: start -->
[![Travis build status](https://travis-ci.org/overdodactyl/mayotemplate.svg?branch=master)](https://travis-ci.org/overdodactyl/mayotemplate)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
<!-- badges: end -->
## Overview
mayotemplate provides a custom [pkgdown](https://pkgdown.r-lib.org) template for packages developed at Mayo Clinic. Please don't use it for your own package.
Inspired by [tidytemplate](https://github.com/tidyverse/tidytemplate/).
## Using mayotemplate
Include the following in your `_pkgdown.yaml` file:
```yaml
template:
package: mayotemplate
```
`mayotemplate` follows the same setup as `tidytemplate`. For more documentation, please see their README file.
### Deploying a site on Travis-CI to Github Pages
If you are automatically deploying your site with Travis, add the following in your `.travis.yml` file:
```yaml
before_cache:
- Rscript -e 'remotes::install_github("overdodactyl/mayotemplate")'
```