cu-chess-lectures-2024/make.sh

9 lines
210 B
Bash
Raw Normal View History

2024-08-08 22:55:05 -04:00
#!/bin/bash
if ! [ $# -eq 1 ]; then
echo -e "usage: $0 <presentation.md>\n\nmake sure media is in ./media!" | cowsay -n
exit 1
fi
mdslides $1 --include media --output_dir out_$1
firefox ./out_$1/index.html