R/use_prompt.R

Defines functions use_prompt

Documented in use_prompt

#' Load hint.css dependencies
#'
#' @return Include dependencies of Hint.css
#' @export
#'
use_prompt <- function() {
  shiny::singleton(
    shiny::tags$head(
      shiny::tags$link(
        href = "hint-assets/hint.min.css",
        rel= "stylesheet",
        type= "text/css"
      )
    )
  )
}

Try the prompter package in your browser

Any scripts or data that you put into this service are public.

prompter documentation built on May 29, 2024, 6:34 a.m.