-
With
By default, Quarto always creates multiple files and inserts paging code. How can I get one contiguous file with Quarto? |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Nov 10, 2022
Replies: 1 comment 8 replies
-
Use the include shortcode, see https://quarto.org/docs/authoring/includes.html. ---
title: Title
format: html
---
{{< include index.Rmd >}}
{{< include Exclusion.Rmd >}}
<!-- {{< include Demographics.Rmd >}} -->
<!-- {{< include Genotype.Rmd >}} --> |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
dmenne
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use the include shortcode, see https://quarto.org/docs/authoring/includes.html.
Comments are HTML comments.