I've started to use Quarto for a book I'm writing. org-mode is causing me trouble for now, so I'm using Markdown. My content is split across several files. I include those files in my Rakefile, as follows:
config.source_files =
[
'content/01_Welcome.md',
'content/02_Numbers/ideas.md',
'content/03_Strings/ideas.md',
'content/04_Lists/ideas.md'
]
When I run "rake deliverables", everything seems to work fine, except that each chapter ls labeled "chapter 1". What do I need to do in order to convince Quarto that each file is a new chapter?
I've started to use Quarto for a book I'm writing. org-mode is causing me trouble for now, so I'm using Markdown. My content is split across several files. I include those files in my Rakefile, as follows:
When I run "rake deliverables", everything seems to work fine, except that each chapter ls labeled "chapter 1". What do I need to do in order to convince Quarto that each file is a new chapter?