Files
Apes-Notes/convert.sh
2025-09-02 00:29:22 -05:00

13 lines
197 B
Bash

#!/bin/sh
if [ $# -lt 1 ]; then
echo "Usage: $0 <markdown-file>"
exit 1
fi
input="$1"
output="${input%.md}.pdf"
pandoc -V geometry:margin=1cm --pdf-engine=xelatex "$input" -o "$output"