Closed rdiaz02 closed 2 years ago
Hello, I'm not sure using HTML codes work but I'll keep investigating on that. However, it seems that you can simply pass the greek letter directly in the text:
library(prompter)
library(shiny)
ui <- fluidPage(
use_prompt(),
add_prompt(
actionButton("plot", "click"),
position = "bottom", message = "this is a greek letter: Θ"
)
)
server <- function(input, output, session) {}
shinyApp(ui, server)
Thanks a lot! And now that I see it, it was obvious. Sorry this did not occur to me. I guess we can close it, since the problem is solved.
Hi, Is it possible to display Greek letters in the message? The first image shows what I'd like. The second what I am getting with prompter. I've tried using
message = paste(Θ)
andmessage = HTML(Θ)
as well as usingΘ
instead ofΘ
, without success.What I'd like:
What I am getting with prompter: