https://github.com/mkearney/makelinkrepo
🔗🔗 Create link repositories and share them on Github
https://github.com/mkearney/makelinkrepo
github github-repos link-list links r r-package resources rstats urls usethis
Last synced: 7 months ago
JSON representation
🔗🔗 Create link repositories and share them on Github
- Host: GitHub
- URL: https://github.com/mkearney/makelinkrepo
- Owner: mkearney
- License: other
- Created: 2018-09-12T23:42:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T15:36:24.000Z (almost 7 years ago)
- Last Synced: 2025-01-15T09:45:14.994Z (9 months ago)
- Topics: github, github-repos, link-list, links, r, r-package, resources, rstats, urls, usethis
- Language: R
- Homepage: https://github.com/mkearney/makelinkrepo
- Size: 6.84 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# makelinkrepo> 🔗🔗 Create link repositories and share them on Github
## Installation
You can install the released version of makelinkrepo from Github with:
``` r
remotes::install_github("mkearney/makelinkrepo")
```## Example
Create a test link repo.
```{r example, eval = FALSE}
## load pkg
library(makelinkrepo)## vector of links
links <- c("https://testingtesting.com?q=test&n=500",
"http://test.org#test")## repo name
repo_name <- "linkrepotest"## make link repo
linkrepo(links, repo_name)
```See the [example repo here](https://github.com/mkearney/linkrepotest).