1
0
mirror of https://github.com/TREX-CoE/qmc-lttc.git synced 2024-07-09 12:53:54 +02:00
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