Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dev_guide/index.Rmd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (17 sloc)
1.04 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rOpenSci Dev Guide {.unnumbered} | |
<a href="https://doi.org/10.5281/zenodo.2553043"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.2553043.svg?branch=master" alt="DOI"></a> | |
<a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/3.0/us/88x31.png" /></a><br /> This work is licensed under [a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/). Refer to [its Zenodo DOI](https://doi.org/10.5281/zenodo.2553043) to cite it. | |
```{r} | |
#| echo: false | |
#| results: 'asis' | |
#| warning: false | |
cat("\n```bibtex\n") | |
u <- "https://zenodo.org/record/2553043" # universal URL redirects to latest | |
s <- rvest::session(u) | |
u <- paste0(s$url, "/export/hx") # redirected | |
out <- rvest::read_html(u) | |
bibentry <- rvest::html_text(rvest::html_element(out, "pre")) | |
cat(bibentry) | |
cat("\n```\n") | |
``` | |
You can also read the [PDF version](/ropensci-dev-guide.pdf) of this book. |