This repository is contains the code for the DETECT follow-up interviews master descriptive tables. The tables are currently published online as a Quarto Website project.
The file structure and other information needed to work with this repository is located in the repository's wiki.
We can render individual Quarto files by clicking the Render button in RStudio. To render all of the website files at once, it's best to type quarto render
in the terminal.
```{bash}
quarto render
```
The DETECT follow-up interviews master descriptive tables are currently published online as a Quarto Website project. They are hosted by GitHub Pages using the methods described in this article.
To publish updates to the book:
- Make sure to commit and push all changes on the main branch.
- From the main branch, type
quarto publish gh-pages
in the terminal. - Click "Yes" when asked if we want to update the site or not.
- Quarto will publish the book to the
gh-pages
branch.
```{bash}
quarto publish gh-pages
```