IS there a way to highlight shiny app coding when the code is changed?
For example, the \"Hello Shiny\" example app:
library(shiny) runExample(\"01_hello
Maybe this can help:
shiny::runApp(display.mode="showcase")
You can get more information about this here. See Showcase Mode
Showcase Mode
If you're using shinyApp() directly, try this:
shinyApp()
shinyApp(ui, server, options = list(display.mode='showcase'))