У меня есть интерактивный документ RMarkdown. Оглавление (TOC) прекрасно работает с rmarkdown::render()
, но не работает с rmarkdown::run()
.
Вот мой тестовый код:
---
title: "Testing shiny Rmd"
output:
html_document:
toc: true
toc_float: true
number_sections: true
theme: united
highlight: textmate
runtime: shiny
---
# Section A
This is some text
# Section B
And some more text.
```{r,eval=FALSE}
data(iris)
plot(iris$Sepal.Length,iris$Sepal.Width)
```
Вот rmarkdown::render()
Вот rmarkdown::run()
R version 3.5.3 (2019-03-11)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)
rmarkdown_1.12
shiny_1.2.0