mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
28 lines
479 B
Bash
28 lines
479 B
Bash
|
#!/bin/bash
|
||
|
# Usage: $0 [DIR]
|
||
|
|
||
|
if [[ -z $1 ]] ; then
|
||
|
echo "Usage: $0 [DIR]"
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
|
||
|
if [[ $(basename $PWD) != "QCaml" ]] ; then
|
||
|
echo "This script needs to be run in the QCaml directory"
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
DIR=${1%/}
|
||
|
|
||
|
rm -f docs/${DIR}.org
|
||
|
for i in ${DIR}/README.org ${DIR}/[a-z]*.org
|
||
|
do
|
||
|
cat $i >> docs/${DIR}.org
|
||
|
done
|
||
|
|
||
|
CONFIG="--load docs/htmlize.el --load docs/config.el"
|
||
|
|
||
|
emacs --batch $CONFIG docs/${DIR}.org -f org-html-export-to-html
|
||
|
|
||
|
|