将RMarkdown页面嵌入闪亮的应用程序:目录丢失

时间:2018-07-06 18:00:48

标签: r shiny markdown r-markdown

我有一个闪亮的应用程序,我想在其中包含一个RMarkdown页面。这就是我所拥有的:

文件名:About.rmd

---
title: "Title"
author: Me
date: July 6, 2018

output:
  html_document:
  toc: TRUE
  toc_depth: 4
  runtime: shiny
---


# Header 1

Some content

# Header 2

Some content

这就是我尝试呈现此rmd页面的方式:

文件名:server.R

  output$aboutPage <- renderUI({
    includeMarkdown("About.rmd")
  })

ui.R

fluidRow(div(column(12, uiOutput("aboutPage"))

除目录外,其他所有内容都呈现良好。尽管我有toc: TRUE,但缺少它。我不知道如何进行。

注意:我希望它显示在网络应用程序中,而不是下载的pdf文件中。

0 个答案:

没有答案