From 46e69b4238bbc5ac521e5ad43970622d92e7fcc0 Mon Sep 17 00:00:00 2001 From: Ethan Robert <ethan.rbrt90@gmail.com> Date: Tue, 25 Feb 2025 12:43:58 +0100 Subject: [PATCH] Fixed html version --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 51f461e..a8b23b1 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,11 @@ clean: @rm dist/Output.html || (echo) pdf: prerequisites-pdflatex clean - pandoc --defaults=config.yaml -o dist/Output.pdf + @echo "Génération de Output.pdf" + @pandoc --defaults=config.yaml -o dist/Output.pdf html: prerequisites clean - pandoc --defaults=config.yaml -o dist/Output.html + @echo "Génération de Output.html" + @pandoc --defaults=config.yaml -o dist/Output.html --embed-resources --standalone all: pdf html \ No newline at end of file -- GitLab