Post

Deploy Your ipynb/rmarkdown with GitHub Pages and Quarto

I created two websites by quarto: some R language notes at R Note for Statistics Learning and Computing, and some projects will be posted at Daniel Cheung’s Projects

You can download it at quarto.org and then install. Quarto can help you deploy. You can also download Position as an IDE to use together with quarto.

In your project: use either command to preview or publish

1
quarto preview
1
quarto publish gh-pages

If you have document that have a lot of computing, emember attach this in your qmd file to avoid execute every time when you don’t modify it:

1
2
3
4
---
execute:
  freeze: true
---

The last thing is, always remember to clean your memory. Quarto has very terrible design for garbage collection, especially you frequently preview the document.

This post is licensed under CC BY 4.0 by the author.