I have an app running on shiny server and I would like to format smalls parts of text without needing to manage the css/html for the entirety of the page.
Simple example:
In the ui.r
, I have some lines of help text that I would like to stylize.
sidebarPanel(
...
, helpText("<I>Can</I> <em>this</em> <strong>happen</strong>?")
)
Which gives:
# Current Output:
<I>Can</I> <em>this</em> <strong>happen</strong>?
#desired Output:
Can this happen?
The text is (understandably) rendered as a literal string.
Is there a function or command to force the HTML to be parsed?