Description Usage Arguments Details Value Examples
Render a reactive output variable as verbatim text within an
application page. The text will be included within an HTML pre
tag.
1 | verbatimTextOutput(outputId)
|
outputId |
output variable to read the value from |
Text is HTML-escaped prior to rendering. This element is often used with the renderPrint function to preserve fixed-width formatting of printed objects.
A verbatim text output element that can be included in a panel
1 2 3 4 5 6 7 | mainPanel(
h4("Summary"),
verbatimTextOutput("summary"),
h4("Observations"),
tableOutput("view")
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.