File size: 295 Bytes
c8a32e7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# This will convert a markdown file generated by marker back into a pdf
# This is an example of how to work with the markdown output

if [ $# -ne 2 ]; then
    echo "Usage: $0 <input.md> <output.pdf>"
    exit 1
fi

pandoc $1 -o $2 --pdf-engine=xelatex --include-in-header=header.tex