Rmarkdown 添加自定义 div 到 table 的内容

Rmarkdown add custom div to table of contents

我正在处理 Rmarkdown 文档,我使用 css:

创建了一个具有多种颜色的标题
---
title: "Test"
output: 
  html_document:
    toc: true
    toc_float: true
    code_folding: "hide"
    theme: readable    
---
<div>
  <span style="font-size:2em;font-weight: bold">Part 1 </span> 
  <span style="color:green;font-size:2em;font-weight: bold">Part 2</span> 
</div>

如何将句子添加到 table 的内容中?

我尝试将 <div> 的属性更改为 class="section level1 unnumbered" 但这没有用。

我认为 rmarkdown 只是寻找带有标准 header 标记的东西,例如 # 或由此产生的 <h1> 来确定要放入目录中的内容。但是您可以在其中包含 HTML 标记,例如

---
title: "Test"
output: 
  html_document:
    toc: true
    toc_float: true
    code_folding: "hide"
    theme: readable    
---

# Part 1 <span style="color:green">Part 2</span>

显示为