I have a Rmarkdown file ( info.rmd ) that looks like this:
--- title: "Information" theme: yeti date: "4/1/2017" output: html_document ---
And ShinyApp, which calls Rmarkdown as follows:
server.R
contains this
output$markdown <- renderUI({ HTML(markdown::markdownToHTML(knit('info.rmd', quiet = TRUE), fragment.only=TRUE)) })
ui.R
contains the following:
fluidPage(uiOutput('markdown'))
But how did the table and math look like this?

What is the right way to do this?
When running offline outside of Shiny, info.rmd creates the table correctly:

I tried this in ui.R
includeHTML("info.html")
How to correctly display the html file, but prevents tabPanel() and reactivity in other tabPanel() to work.
Update
Here is the new result after @Nice's solution:

source share