I want to have an infobox show text over two lines. For example, if I were to combine html and and shiny (like one does for the popups in leaflet):
output$myInfoBox <- renderInfoBox({infobox(paste("Output1: ", myout1, "<br>", "Output2: ", myout2, sep = ""))})
I've tried "<br>", "\n"
, etc. Nothing works.
Thanks!