Last active
April 25, 2023 12:03
-
-
Save teroyks/eec419084c4642df4d8a4b916d05efa3 to your computer and use it in GitHub Desktop.
Quarto Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/.quarto/ | |
/_book/ | |
/.render-timestamp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: render | |
render: _book/My-Book.pdf | |
.PHONY: start-preview | |
start-preview: | |
quarto preview | |
.PHONY: start-preview-pdf | |
start-preview-pdf: | |
quarto preview --render pdf | |
_book/My-Book.pdf: .render-timestamp | |
.render-timestamp: $(wildcard *.qmd) _quarto.yml | |
quarto render | |
touch $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Preview and build a Quarto book
make render
– build the specified formats for My-Bookmake start-preview
– start an interactive HTML previewmake start-preview-pdf
– start an interactive PDF preview