qmc-lttc/docs/create.sh

15 lines
391 B
Bash
Raw Normal View History

2021-01-13 17:59:48 +01:00
#!/bin/bash
INPUT=$1
if [[ -f ../docs/htmlize.el ]]
then
emacs --batch --load ../docs/htmlize.el --load ../docs/config.el $INPUT -f org-html-export-to-html
else
emacs --batch --load ../docs/config.el $INPUT -f org-html-export-to-html
fi
mv ../QMC.html index.html