I'm creating an RMarkdown site using {bookdown}.
I've created a header.html file that I want to be inserted in the <head>...</head> section of each of my chapters, not just the first chapter. My YAML has the following:
output:
bookdown::gitbook:
includes:
in_header: "header.html"
css: style.css
config:
toc:
collapse: section
but the header.html file is only appearing on the index.html page not any of my other Chapters. What is the correct syntax for this?