如何在Shiny renderUI中渲染换行?

时间:2018-01-17 22:13:19

标签: r shiny shiny-server shinydashboard

我试图在try/catch标记内包含一行包含换行符,但是,一旦它被渲染,就会执行换行标记。我不希望这种情况发生。我认为包括<pre>标签会阻止这种情况发生吗?

<pre>

可重复的例子: 忽略Current output: this is a test Desired output: this is\na test 标记,我只是包含它,以表明此代码的内容比显示的内容更多。但是,我的主要问题是没有执行换行符。

<script>

1 个答案:

答案 0 :(得分:0)

找到解决方案,你必须包含c(),它将输出所需的输出和换行符,所以:

pre(id = 'txt', c('this is\\na test'))

输出: '这是\ na测试'