I want to output multiple lines of text using one renderText() command. However, this does not seem possible. For example, from the shiny tutorial we have trunc
If you mean that you don't care for the line break:
output$text = renderText({
paste("You have selected ", input$var, ". You have chosen a range that goes
from", input$range[1], "to", input$range[2], ".")
})