Commands Quarto

A useful list of Quarto commands
Author
Published

August 22, 2023

# Creates website in folder 'mysite'
quarto create-project /Users/datoapanta/Desktop/mysite --type website  

# To render it and preview in local host
quarto preview mysite

# Creates blog in folder 'blog'
quarto create-project /Users/datoapanta/Desktop/blog --type website:blog

# To render it and preview in local host
quarto preview blog