I want a layout where the H1 sections are the tabs. Is there a way to do that?
It already bothers me that Rmarkdown uses H1 for section headings instead of titles, which is why this is not straightforward.
Example:
---
title: "The Actual Title"
output:
html_notebook:
number_sections: yes
toc: yes
code_folding: hide
---
# Heading 1
Stuff including lots of subheadings
# Heading 2
Stuff including lots of subheadings
# Heading 3
Stuff including lots of subheadings
Output:
_____________
Heading 1 | Heading 2 | Heading 3