1
0
mirror of https://github.com/TREX-CoE/qmc-lttc.git synced 2024-07-09 21:04:08 +02:00
qmc-lttc/docs/create.sh
2021-01-13 17:59:48 +01:00

15 lines
391 B
Bash
Executable File

#!/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