This is what I put in the yml file:
project:
type: book
output-dir: /doc
book:
title: just a book
chapters: # for level 1 - part
- index.qmd
- part: part1.qmd
chapters: # for level 2 - chapter
- chap1.qmd
- chap2.qmd
chapters: # for level 3 - section
- sect1.qmd
- sect2.qmd
Then I got "ERROR: YAMLException: bad indentation of a sequence entry" message.
Is there an example for 3-level quarto book yaml file? Thank you!