#' @name filter_languages_ui
#' @title Filter documents based on languages.
#' @author Nicolas Mangin
#' @description Module allowing the user to find select document based on whether they exist in languages other than the main one.
#' @param id Character. ID of the module to connect the user interface to the appropriate server side.
#' @return Tibble. list of documents.
#' @importFrom shiny NS
#' @importFrom shiny uiOutput
#' @export
filter_languages_ui <- function(id){
ns <- shiny::NS(id)
base::list(
shiny::uiOutput(ns("filtexistinglang")),
shiny::uiOutput(ns("filtmissinglang"))
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.