manuals/build-pandoc.sh

102 lines
1.8 KiB
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-07-26 13:11:23 +00:00
2021-08-25 15:46:54 +00:00
set -e
2021-07-26 13:11:23 +00:00
# enter the current directory
cd "$(dirname $0)"
export PANDOC_DIR="/pandoc/cl"
2021-07-26 13:11:23 +00:00
if [ -z $1 ]; then
export target=pdf
else
export target=$1
fi
2021-08-25 15:46:54 +00:00
if [ -z $2 ]; then
export kind=user
else
export kind=$2
fi
if [ $kind = 'user' ]; then
export files="
intro.md
concept.md
interface.md
search.md
person.md
person-vendee.md
activite.md
document.md
thirdparty.md
menage.md
parcours.md
social_actions.md
notifications.md
tasks.md
workflows.md
2023-04-27 21:00:39 +00:00
adresses.md
exports.md
2023-10-23 21:05:22 +00:00
exports_person.md
exports_activity.md
exports_accompanying_period.md
2023-04-28 08:13:34 +00:00
nouveautes.md
2021-08-25 15:46:54 +00:00
"
# missing pages to once completed
# exports_accompanying_period_work.md
# exports_accompanying_period_work_evaluation.md
# exports_aside_activity.md
# exports_calendar.md
# exports_household.md
2021-08-25 15:46:54 +00:00
elif [ $kind = 'admin' ]; then
export files="
start.md
generation-documents.md
2021-08-25 15:46:54 +00:00
"
2022-03-11 13:44:33 +00:00
else
2021-08-25 15:46:54 +00:00
echo "kind '$kind' is not valid";
exit 1;
fi
cd $kind
2021-07-26 13:11:23 +00:00
export ARGS="
--from markdown
--number-sections
--resource-path ./.
--metadata-file ./metadata.yaml
`#--lua-filter "../${PANDOC_DIR}/format-link.lua`
2021-07-26 13:11:23 +00:00
"
export PDF_TEMPLATE="./../pandoc/template/eisvogel.tex"
2021-07-26 13:11:23 +00:00
export LATEX_ARGS="
2022-05-16 10:19:46 +00:00
--metadata=footer-left:$(date +%d-%m-%Y)
2021-07-26 13:11:23 +00:00
--template "${PDF_TEMPLATE}"
--lua-filter "../${PANDOC_DIR}/boxes.lua"
2021-07-26 13:11:23 +00:00
"
2021-08-25 15:46:54 +00:00
if [ $target = "latex" ]; then
2021-07-26 13:11:23 +00:00
pandoc $ARGS $LATEX_ARGS \
--to latex \
$files;
2021-08-25 15:46:54 +00:00
elif [ $target = "pdf" ]; then
2021-07-26 13:11:23 +00:00
pandoc $ARGS $LATEX_ARGS \
--to pdf \
--pdf-engine xelatex \
-o "./../$kind-manual.pdf" \
2021-07-26 13:11:23 +00:00
$files
2021-08-25 15:46:54 +00:00
elif [ $target = "html" ]; then
2021-07-26 13:11:23 +00:00
# check target directory exists
if [ ! -d "./../build/html" ]; then
2021-07-26 13:11:23 +00:00
echo "create build/html directory"
mkdir -p "./../build/html"
2021-07-26 13:11:23 +00:00
fi
pandoc $ARGS \
--to html \
-o ./../build/html/index.html \
2021-07-26 13:11:23 +00:00
$files
fi