From 4eaae29fc5663a3915c4614a6b01dcbbdf86ae2f Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Fri, 10 Jan 2020 15:27:44 +0100 Subject: fix catch Slidy URL under https protocol --- slidy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slidy/Makefile b/slidy/Makefile index 2f200f0..5c066f1 100644 --- a/slidy/Makefile +++ b/slidy/Makefile @@ -9,4 +9,4 @@ all: $(presentations) $(presentations): %/index.html : %.mkd mkdir -p $(dir $@) pandoc --from Markdown --to Slidy -o $@ -s -c local.css $< - perl -i -pe 's{http://www.w3.org/Talks/Tools/Slidy2/(?:styles|scripts)/(slidy.(?:css|js))(?:\.gz)?}{../../../slidy/$$1}g' $@ + perl -i -pe 's{https?://www.w3.org/Talks/Tools/Slidy2/(?:styles|scripts)/(slidy.(?:css|js))(?:\.gz)?}{../../../slidy/$$1}g' $@ -- cgit v1.2.3