#' Create a Dictionary
#'
#' @param dict tibble with column `word`
#'
#' @return tibble
#' @export
#'
#' @examples
#' \donttest{
#' dict <- dictionary()
#' }
dictionary <- function(dict = words::words) {
dict %>%
tibble::as_tibble() %>%
dplyr::mutate(chars = letters_list(word))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.