mirror of
https://github.com/TREX-CoE/qmc-lttc.git
synced 2024-11-04 13:14:04 +01:00
15 lines
391 B
Bash
Executable File
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
|
|
|
|
|
|
|