Files
manuals/build-pandoc.sh

91 lines
1.6 KiB
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-07-26 15:11:23 +02:00
2021-08-25 17:46:54 +02:00
set -e
2021-07-26 15:11:23 +02:00
# enter the current directory
cd "$(dirname $0)"
export PANDOC_DIR="$(pwd)/pandoc/cl"
export OUTPUT_DIR="$(pwd)"
2021-07-26 15:11:23 +02:00
if [ -z $1 ]; then
export target=pdf
else
export target=$1
fi
2021-08-25 17:46:54 +02: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 23:00:39 +02:00
adresses.md
exports.md
2023-10-23 23:05:22 +02:00
exports_person.md
exports_activity.md
exports_accompanying_period.md
2023-04-28 10:13:34 +02:00
nouveautes.md
2021-08-25 17:46:54 +02: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 17:46:54 +02:00
elif [ $kind = 'admin' ]; then
export files="
start.md
generation-documents.md
2021-08-25 17:46:54 +02:00
"
2022-03-11 14:44:33 +01:00
else
2021-08-25 17:46:54 +02:00
echo "kind '$kind' is not valid";
exit 1;
fi
export PDF_TEMPLATE="$(pwd)/eisvogel.latex"
cd $kind/docs
2021-07-26 15:11:23 +02:00
export ARGS="
--from markdown
--number-sections
--resource-path ./.
--metadata-file ./metadata.yaml
2021-07-26 15:11:23 +02:00
"
export LATEX_ARGS="
2022-05-16 12:19:46 +02:00
--metadata=footer-left:$(date +%d-%m-%Y)
--template ${PDF_TEMPLATE}
--lua-filter "${PANDOC_DIR}/boxes.lua"
2021-07-26 15:11:23 +02:00
"
2021-08-25 17:46:54 +02:00
if [ $target = "latex" ]; then
2021-07-26 15:11:23 +02:00
pandoc $ARGS $LATEX_ARGS \
--to latex \
$files;
2021-08-25 17:46:54 +02:00
elif [ $target = "pdf" ]; then
2021-07-26 15:11:23 +02:00
pandoc $ARGS $LATEX_ARGS \
--to pdf \
--pdf-engine xelatex \
-o "${OUTPUT_DIR}/$kind-manual.pdf" \
2021-07-26 15:11:23 +02:00
$files
fi