diff options
author | Jonas Smedegaard <dr@jones.dk> | 2020-01-10 15:27:44 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2020-01-10 15:27:44 +0100 |
commit | 4eaae29fc5663a3915c4614a6b01dcbbdf86ae2f (patch) | |
tree | ab99970cee6eb317efd4c4f63bd3e610a005f82d | |
parent | 2ef073e10110c15a1a81056894d5884ed22ce066 (diff) |
fix catch Slidy URL under https protocol
-rw-r--r-- | slidy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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' $@ |