将 CSS 类应用于 RMarkdown 中的代码块
如果您希望将 CSS 类专门添加到 RMarkdown 中的代码块,有
class.source 和 class.output 选项
对于 knit 版本 1.16 及更高版本,您可以使用 class.source 和 class.output 选项将 HTML 类分配给源代码块和输出代码块。例如:
summary(cars)
这会将 'myClass' 类添加到源代码块中。
使用 fenced_code_attributes 和 knit Hooks
在knitr 1.16之前,您可以将fenced_code_attributes Pandoc扩展与knitr中的输出挂钩结合使用。考虑以下内容:
--- title: "Untitled" output: html_document: md_extensions: +fenced_code_attributes ---
knitr::knit_hooks$set(source = function(x, options) {
return(paste0(
"```{.r", ifelse(is.null(options$class), "", paste0(" .", gsub(" ", " .", options$class)) ), "}\n", x, "\n```"
))
})
Then, within the code chunk, you can specify the class as follows:
summary(cars)
This will render the code chunk with the HTML class:
</p><pre class="brush:php;toolbar:false"><code> summary(cars) <</code>/code>
以上是如何将 CSS 类应用于 RMarkdown 中的代码块?的详细内容。更多信息请关注PHP中文网其他相关文章!