🗃️(backend) export to docx

We can now export our document to a docx file.
This is done by converting the html to a docx
file using the pypandoc and pandoc library.
We added the "format" param to the
generate-document endpoint, "format" accept
"pdf" or "docx" as value.
This commit is contained in:
Anthony LC
2024-08-07 14:44:18 +02:00
committed by Anthony LC
parent ffaccad014
commit 4280f0779e
10 changed files with 147 additions and 32 deletions

View File

@@ -75,6 +75,7 @@ RUN apt-get update && \
libgdk-pixbuf2.0-0 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
pandoc \
shared-mime-info && \
rm -rf /var/lib/apt/lists/*