Added medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-02-18 21:37:22 -05:00
parent a51e20fbc7
commit a22bb998cb
14 changed files with 78 additions and 68 deletions

View file

@ -1,10 +1,11 @@
---
title: "Convert DJVU to PDF"
date: 2021-08-27T22:00:00-04:00
date: 2021-08-28 02:00:00
draft: false
tags: []
math: false
medium_enabled: true
medium_post_id: ddf23ae64f9a
tags: []
title: Convert DJVU to PDF
---
I've recently come across the DJVU file format before and needed to convert it to a PDF. The most reliable way I've found to do it is via the following command.
@ -42,5 +43,4 @@ if ! command -v ps2pdf > /dev/null ; then
fi
djvups "$1" | ps2pdf - "${1%.*}.pdf"
```
```