From a31e99e5e28da21a35ad7417ee616a79fc931bfa Mon Sep 17 00:00:00 2001 From: patrick-scho Date: Wed, 16 Jul 2025 12:10:24 +0200 Subject: [PATCH] update Makefile --- Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 532c7cb..1cd42a4 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ +FLAGS=--standalone --slide-level=4 --strip-comments + all: - pandoc -t revealjs --standalone pres.md -o pres.html --slide-level=4 + pandoc -t revealjs pres.md -o pres.html $(FLAGS) + +embed: + pandoc -t revealjs pres.md -o pres.html $(FLAGS) --embed-resources entr: ls pres.md | entr -s make -embed: - pandoc -t revealjs --standalone --embed-resources pres.md -o pres.html --slide-level=4 - -.PHONS: all embed +PHONY: all embed entr -- 2.50.1