26 lines
613 B
Bash
Executable file
26 lines
613 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPT=`realpath $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
ADDITIONAL_ARGS=${@:2}
|
|
|
|
INPUT_FILE=`realpath $1`
|
|
INPUT_DIR=`dirname $INPUT_FILE`
|
|
METADATA_FILE="$INPUT_DIR/metadata.yaml"
|
|
OUTPUT_FILE=`realpath output.pdf`
|
|
|
|
INPUT_FILES="$INPUT_FILE"
|
|
|
|
if [ -f "$METADATA_FILE" ]
|
|
then
|
|
INPUT_FILES="$INPUT_FILES $METADATA_FILE"
|
|
fi
|
|
|
|
PANDOC_ARGS="$INPUT_FILES --lua-filter=$SCRIPTPATH/variables.lua --template $SCRIPTPATH/main.tex -o $OUTPUT_FILE $ADDITIONAL_ARGS"
|
|
|
|
echo "> Building document..."
|
|
pandoc $PANDOC_ARGS
|
|
|
|
echo "> Running second pass..."
|
|
pandoc --lua-filter=$SCRIPTPATH/word-count.lua $PANDOC_ARGS
|