shiny (version 0.5.0)

textOutput: Create a text output element

Description

Render a reactive output variable as text within an application page. The text will be included within an HTML div tag.

Usage

textOutput(outputId)

Arguments

outputId
output variable to read the value from

Value

  • A text output element that can be included in a panel

Details

Text is HTML-escaped prior to rendering. This element is often used to display renderText output variables.

Examples

Run this code
h3(textOutput("caption"))

Run the code above in your browser using DataCamp Workspace