From 1924bd60969e75eabdfa78cce2629fb7358de2c5 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Wed, 7 Jun 2023 17:56:34 +0200 Subject: [PATCH] --self-contained is deprecated --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 357cbb2..f024b06 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ publish: $(TARGET) rsync $(TARGET) -vzc $(TARGET_REMOTE) $(TARGET): $(SRC) $(STYLE_MIN) - pandoc --self-contained -s -t html5 "$(SRC)" --css "$(STYLE_MIN)" -o "$@" + pandoc --embed-resources -s -t html5 "$(SRC)" --css "$(STYLE_MIN)" -o "$@" $(STYLE_MIN) : $(STYLE) minify "$(STYLE)" > "$(STYLE_MIN)"