Vanderbilt Biostatistics Grad Student Survival Guide
Currently hosted at https://vandybgsa.github.io/handbook/
To add a chapter create a file called chapternumber_chaptername.qmd (for example 01_Introduction.qmd).
- Click the green Code button in the top right of the repo and the copy button.
- In RStudio, go into the Terminal on the bottom and
cdyour way into wherever you'd like to copy the repo. - Clone the repo by typing
git clone XXXXinto the terminal, where XXXX is the URL you copied. - Edit the QMD of the chapter you want to edit, and save your changes.
- Type
quarto renderinto your terminal, which will generate HTML output in the docs directory. - In the terminal, stage all your changes with
git add -A. Feel free to check your work withgit status. - Commit your staged changes with
git commit -m YOUR_MESSAGE_HERE. - Push and deploy your changes with
git push. This will update the build of the site via GitHub Pages.
THIS SECTION IS UNDER CONSTRUCTION.
The Quarto book guide is your best friend here. It has lots of examples of documentation. Many former students host their websites with Quarto as well, and you can always nose through their source code for examples!