1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-04 23:58:01 +00:00

Add Convert An ePub Document To PDF On Mac as a workflow til

Also add the new workflow section
This commit is contained in:
jbranchaud
2017-11-24 18:37:19 -06:00
parent a0780b59b5
commit 852a56260c
2 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
# Convert An ePub Document To PDF On Mac
If you have an ePub document and you'd like it in PDF format, you can
convert it using the `ebook-convert` binary from `Calibre`.
First, install `Calibre`:
```bash
$ brew cask install calibre
```
Then convert your ePub using `ebook-convert`:
```bash
$ ebook-convert book.epub book.pdf
```
You'll see a bunch of output as it processes the document. When it
completes, you'll have a nice pdf waiting for you.
[source](https://gist.github.com/AaronO/9962667)