githubURLParts | R Documentation |
Extract GitHub user and repo name from GitHub URL
githubURLParts(urls)
urls |
|
A data.frame
with four columns:
url: The original GitHub URL
user_repo: The GitHub "username/repo", combined
user: The GitHub username
repo: The GitHub repo name
# find GitHub URL details for
# Bioconductor packages
bpkgl = biocPkgList()
urldetails = githubURLParts(bpkgl$URL)
urldetails = urldetails[!is.na(urldetails$url),]
head(urldetails)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.