Skip to content
Snippets Groups Projects
Commit c877f385 authored by Aaron O'Leary's avatar Aaron O'Leary
Browse files

make: add filter dependencies to html recipe

parent eaadf482
No related merge requests found
...@@ -4,6 +4,9 @@ EXCLUDES = README.md LAYOUT.md FAQ.md DESIGN.md ...@@ -4,6 +4,9 @@ EXCLUDES = README.md LAYOUT.md FAQ.md DESIGN.md
SRC_PAGES = $(filter-out $(EXCLUDES), $(MARKDOWN)) SRC_PAGES = $(filter-out $(EXCLUDES), $(MARKDOWN))
DST_PAGES = $(patsubst %.md,%.html,$(SRC_PAGES)) DST_PAGES = $(patsubst %.md,%.html,$(SRC_PAGES))
# Pandoc filters
FILTERS = $(wildcard tools/filters/*.py)
# Inclusions. # Inclusions.
INCLUDES = \ INCLUDES = \
-Vheader="$$(cat _includes/header.html)" \ -Vheader="$$(cat _includes/header.html)" \
...@@ -24,7 +27,7 @@ motivation.html : motivation.md _layouts/slides.html ...@@ -24,7 +27,7 @@ motivation.html : motivation.md _layouts/slides.html
-o $@ $< -o $@ $<
# Pattern to build a generic page. # Pattern to build a generic page.
%.html : %.md _layouts/page.html %.html : %.md _layouts/page.html $(FILTERS)
pandoc -s -t html \ pandoc -s -t html \
--template=_layouts/page \ --template=_layouts/page \
--filter=tools/filters/blockquote2div.py \ --filter=tools/filters/blockquote2div.py \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment