...
Greetings
I am building an app with some code instructions, for tutorial purposes.
It has some interactivity on the main tab, and then the walkthrough code in a tab.
The code page, let's call it instructions, was made using Rmarkdown.
At the ui.R I wanted to include the instructions.Rmd in a tab, as following:
ui =
fluidPage(
navbarPage("Mainpage",
tabPanel("App",
h2("Some shiny stuff")
),
tabPanel("Instructions",
includeMarkdown("instructions.Rmd")
),
)
)
The instructions.Rmd are something like this:

(1/3)