如何格式化标签的粗体部分?

时间:2019-01-28 17:13:41

标签: shiny

我有一个带有长标签的按钮,我想将其部分加粗。怎么做?

library(shiny)

ui <- fluidPage(
  actionButton(inputId = "ab1",
               label = "The first 3 words should be bold.")
)

server <- function(input, output) {}

shinyApp(ui, server)

一种解决方案是将标签文本放在html文件中,然后使用label = includeHTML("custom_label.html")设置标签。有更简单的解决方案吗?

1 个答案:

答案 0 :(得分:1)

不确定是否了解。是您想要的吗?

HTML