From 3671774224fcecb57711cdaae407354442e984ab Mon Sep 17 00:00:00 2001 From: Dunya Kirkali Date: Sun, 7 Jul 2024 18:11:29 +0200 Subject: [PATCH] Update README --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 484423d..2b12921 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,34 @@ Gutenberg the 💩 out of it! ### Generate +In order to generate the PDF and the EPUB versions of the book you can just run: + ```bash make ``` +If you just need to generate the PDF: + +```bash +make output/your_book_slug.pdf +``` + +If you just need to generate the EPUB: + +```bash +make output/your_book_slug.epub +``` + ### Count ```bash make count ``` + +### Clean + +In order to remove the generated files you can run: + +```bash +make clean +```