#'Search key for keyword
#'@import dplyr
#'@export
search_key <-
function(path_to_key,
keyword) {
key <- read_key(path_to_key = path_to_key,
project_alias = "all")
return(
key %>%
dplyr::filter_all(any_vars(grepl(keyword, ., ignore.case = TRUE) == TRUE))
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.