I have the basic flexdashboard below. What I want is to change line after "hello" in order to place "world" below it,inside the renderText()
. I have found that I can use htmlOutput()
and verbatimTextOutput()
but these are not used in flexdashboard
.
---
title: "[School Name] Enrollment Projections for Fall 2019"
output:
flexdashboard::flex_dashboard:
orientation: rows
runtime: shiny
---
```{r setup, include = FALSE}
library(flexdashboard)
library(shiny)
```
Column {.sidebar }
-------------------------------------
### Menu
```{r}
renderText({
paste("hello", "world", sep="\n")
})
```
Row {data-height=400}
-------------------------------------
### Enrollments
```{r}
```