如何在闪亮的应用程序中突出显示活动代码?

时间:2017-04-19 17:12:18

标签: css r shiny rstudio

有没有办法在代码更改后突出显示闪亮的应用编码?

例如," Hello Shiny"示例应用程序:

library(shiny)
runExample("01_hello")

创建一个包含应用代码的应用。每次执行操作时都会突出显示此代码(突出显示受影响的代码)。

enter image description here

如何使用自己的应用程序执行此操作?

1 个答案:

答案 0 :(得分:3)

也许这会有所帮助:

shiny::runApp(display.mode="showcase")

您可以获得有关此here的更多信息。见Showcase Mode

如果您直接使用shinyApp(),请尝试以下操作:

shinyApp(ui, server, options = list(display.mode='showcase'))