1
0
mirror of https://github.com/GijsVermarien/marktex.git synced 2025-12-19 11:11:22 +00:00
marktex/compile.sh

18 lines
622 B
Bash

# /bin/bash
notforconversion="readme.md"
echo $notforconversion is excluded from the conversion
markdownfiles=$(find ./ -iname "*.md" -and ! -name $notforconversion)
echo Trying to convert: $markdownfiles
for markdownfile in $markdownfiles; do
latextarget="$(echo $markdownfile | sed -e 's/.md/.tex/')"
if [ $latextarget -ot $markdownfile ]; then
latextarget="$(echo $markdownfile | sed -e 's/.md/.tex/')"
pandoc -f markdown -t latex $markdownfile >$latextarget
echo "converted" $markdownfile "to" $latextarget
else
echo $markdownfile did not need converting as $latextarget is newer
fi
done
echo "done"
exit 0