Closed HeleneRoyo closed 3 years ago
In the latest version, currently on its way to CRAN, you can use {htmltools} and {shiny} tags in the title
and description
. Since it's not built on CRAN yet you will need to use the dev version from github remotes::install_github("JohnCoene/cicreone")
.
library(cicerone)
guide <- Cicerone$
new()$
step(
el = "text_inputId",
title = "Text Input",
description = p("This is in", strong("bold"))
)$
step(
"submit_inputId",
p("Send the", tags$i("italic"), "text"),
"Send the text to the server for printing"
)
Thanks a lot, great enhancement with the dev branch!
remotes::install_github("JohnCoene/cicerone")
Is it possible to enhance the description text so that we can display text in italic, insert new lines, display lists?