如何将rmarkdown作为列表的一部分包含代码块?
示例:
this_fun
最初我使用的是vanilla```代码块,但是它放弃了语法高亮,并且内联放弃了突出显示和换行符/缩进。如果代码如上所述使用,则列表中断,并且块后面的文本嵌入在一个奇怪的环境中(类似于输出格式)。
有人知道是否可以这样做吗?
答案 0 :(得分:6)
---
title: "Untitled"
output: html_document
---
1. Something about some code - you could try this_fun.
1. A more complicated way is to do
```{r, eval = FALSE}
a <- function() { # whole chunk indented by 4!
return(2)
}
print(a())
```
And that may suit your use case
1. Skip it all together