как получить то, что находится в htmlOutput - PullRequest
0 голосов
/ 14 декабря 2018

У меня есть следующая flexdashboard

---
title: "Untitled"
output: 
  flexdashboard::flex_dashboard:
    runtime: shiny
---

```{r setup, include=FALSE}
library(flexdashboard)
library(shiny)
```

Column
-----------------------------------------------------------------------

### 

```{r}
htmlOutput("ui_txt")
output$ui_txt <- renderText({
  "hi there <how@di.how>> sometimes html is just full of <> lovely symbols"
})
```

Этот в основном показывает мне это enter image description here

Как вы видите, он удаляет адрес электронной почты, который в порядкеи показывает только "hi there > sometimes html is just full of <> lovely symbols"

Я хотел бы иметь функцию в R, которая имитирует htmlOutput, так что я могу вызвать

thatfunction("hi there <how@di.how>> sometimes html is just full of <> lovely symbols")

, и он возвращает мне "hi there > sometimes html is just full of <> lovely symbols"

Как мне это сделать?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...