diff options
author | Jonas Smedegaard <dr@jones.dk> | 2012-11-05 03:59:44 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2012-11-05 03:59:44 +0100 |
commit | a3fbccab047a27c5cb132b123b1ebfc0c5837fd5 (patch) | |
tree | 4cb8ae5ced9e05b5f957e91c2bf30d47e5922197 /slidy | |
parent | 46b97fdf5125ebd00a98a9c7c33de40f725c3c8a (diff) |
FreedomBox talk rewrite with lots of photos.
Diffstat (limited to 'slidy')
-rw-r--r-- | slidy/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/slidy/Makefile b/slidy/Makefile index b7d07d9..2f200f0 100644 --- a/slidy/Makefile +++ b/slidy/Makefile @@ -5,7 +5,8 @@ presentations = $(pandoc_sources:%.mkd=%/index.html) all: $(presentations) # TODO: use --offline when working with Debian packaging of Pandoc +# FIXME: only add local stylesheet if it already exist in target dir $(presentations): %/index.html : %.mkd mkdir -p $(dir $@) - pandoc --from Markdown --to Slidy -o $@ -s $< + 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' $@ |