use abbr tag from html in shiny server

I have a shiny app wich give me different tables. the tables have different columns. the columns names are An abbreviation. I want to use "abbr" tag from html to get the complete column names
...

ui <- fluidPage(

titlePanel("VOC Monitor"),

sidebarLayout(

sidebarPanel(
  radioButtons("db", "Daten auswählen:",choices = list("Responses", "Kunden", "Votes"), selected = "Responses" )
),

mainPanel(
  
  tableOutput("tbl"),
)

)
)
...

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.