View source: R/extract_entries.R
extract_entries | R Documentation |
Given a list, extract items based on their name
extract_entries(api_list, entry_name, fixed = TRUE)
api_list |
a list (probably from the GitHub api) |
entry_name |
the name of the entry to be extracted from the api list e.g. "html_url" |
fixed |
TRUE/FALSE whether or not the exact string should be used. FALSE would mean regex will be interpretted. |
a subset of api_list that only contains items with the entry_name string in the name.
repo_info <- get_repo_info("jhudsl/Documentation_and_Usability")
extract_entries(repo_info, "release", fixed = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.