3

I can't seem to get collapsed: FALSE in 's html_notebook.

With the below YAML I do not get at collapsed TOC.

---
title: "R Notebook TEST"
output:
  html_notebook:
    toc: yes
    toc_float: TRUE
    collapsed: FALSE
    theme: flatly
 ---

Did I overlook something in the manual?

camille
  • 16,432
  • 18
  • 38
  • 60
Eric Fail
  • 8,191
  • 8
  • 72
  • 128

1 Answers1

4

Fix your indentations in your YAML header, i.e.:

---
title: "R Notebook TEST"
output:
  html_notebook:
    toc: yes
    toc_float:
      collapsed: FALSE
    theme: flatly
---

This works for me:

enter image description here

Marco
  • 2,368
  • 6
  • 22
  • 48
Johnny
  • 751
  • 12
  • 24