mirror of
https://github.com/dunyakirkali/letterpress.git
synced 2025-11-06 21:37:33 +00:00
52 lines
606 B
Markdown
52 lines
606 B
Markdown
# letterpress
|
|
|
|
Gutenberg the 💩 out of it!
|
|
|
|
<img src="figures/gutenberg.jpg" width=530>
|
|
|
|
## Batteries included
|
|
|
|
- Devcontainers
|
|
- GitHub Workflows
|
|
|
|
## Bring your own
|
|
|
|
- Content
|
|
- Images
|
|
|
|
## Commands
|
|
|
|
### 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
|
|
```
|