-
I use bookdown and the “Merge and Knit” rendering approach described at https://bookdown.org/yihui/bookdown/new-session.html. My understanding is that Quarto only support the “Knit and Merge” rendering approach. Do you have any plan to support the “Merge and Knit” rendering approach? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
For reference, related discussion #431 "Merge and Knit" approach requires a single render for the entire book (one HTML file), then splitting the chapters into several pieces (as bookdown does). It is different from the current assumption of rendering independently each chapters (which bring us some more flexibility and feature that bookdown does not have). From #431 (comment)
Thanks for the suggestion though. I think in the short term we really need to document better how to render a book by sharing some data between chapters (which the Knit and Merge approach is really efficient for), and also leveraging Projects Scripts |
Beta Was this translation helpful? Give feedback.
For reference, related discussion #431
"Merge and Knit" approach requires a single render for the entire book (one HTML file), then splitting the chapters into several pieces (as bookdown does). It is different from the current assumption of rendering independently each chapters (which bring us some more flexibility and feature that bookdown does not have).
From #431 (comment)
Thanks for the suggestion though.
I think in the short term we really need to document better how to render a book by sharing some data between chapters (which the Knit and Merge approa…