Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.34 KB

File metadata and controls

34 lines (23 loc) · 1.34 KB

DETECT Follow-up Interviews Master Descriptive Tables

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.

Documentation

The file structure and other information needed to work with this repository is located in the repository's wiki.

Rendering

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
```

Publishing to GitHub pages

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:

  1. Make sure to commit and push all changes on the main branch.
  2. From the main branch, type quarto publish gh-pages in the terminal.
  3. Click "Yes" when asked if we want to update the site or not.
  4. Quarto will publish the book to the gh-pages branch.
```{bash}
quarto publish gh-pages
```