# Module UI
#' @title mod_methode_ui and mod_methode_server
#' @description Methodologie
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_methode
#'
#' @keywords internal
#' @export
#' @importFrom shiny NS tagList
mod_methode_ui <- function(id){
ns <- NS(id)
tagList(
includeMarkdown(
system.file("app/www/methodo.md", package = "gravitype")
)
)
}
# Module Server
#' @rdname mod_methode
#' @export
#' @keywords internal
mod_methode_server <- function(input, output, session){
ns <- session$ns
}
## To be copied in the UI
# mod_methode_ui("methode_ui_1")
## To be copied in the server
# callModule(mod_methode_server, "methode_ui_1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.