forked from fuhrmanator/pandoc-filter-fr-nbsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
67 lines (57 loc) · 1.86 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Name of the filter file, *with* `.lua` file extension.
FILTER_FILE := $(wildcard *.lua)
# Name of the filter, *without* `.lua` file extension
FILTER_NAME = $(patsubst %.lua,%,$(FILTER_FILE))
# Allow to use a different pandoc binary, e.g. when testing.
PANDOC ?= pandoc
# Allow to adjust the diff command if necessary
DIFF = diff
# Test that running the filter on the sample input document yields
# the expected output.
#
# The automatic variable `$<` refers to the first dependency
# (i.e., the filter file).
test: $(FILTER_FILE) test/input.md
$(PANDOC) --lua-filter=$< --to=native --standalone test/input.md | \
$(DIFF) test/expected.native -
# Ensure that the `test` target is run each time it's called.
.PHONY: test
# Re-generate the expected output. This file **must not** be a
# dependency of the `test` target, as that would cause it to be
# regenerated on each run, making the test pointless.
test/expected.native: $(FILTER_FILE) test/input.md
$(PANDOC) --lua-filter=$< --standalone --to=native --output=$@ \
test/input.md
#
# Docs
#
.PHONY: docs
docs: docs/index.html docs/$(FILTER_FILE)
docs/index.html: README.md test/input.md $(FILTER_FILE) .tools/docs.lua \
docs/output.md docs/style.css
@mkdir -p docs
pandoc \
--standalone \
--lua-filter=.tools/docs.lua \
--metadata=sample-file:test/input.md \
--metadata=result-file:docs/output.md \
--metadata=code-file:$(FILTER_FILE) \
--css=style.css \
--toc \
--output=$@ $<
docs/style.css:
curl \
--output $@ \
'https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/light.css'
docs/output.md: $(FILTER_FILE) test/input.md
$(PANDOC) \
--output=$@ \
--lua-filter=$< \
--to=markdown \
--standalone \
test/input.md
docs/$(FILTER_FILE): $(FILTER_FILE)
(cd docs && ln -sf ../$< $<)
.PHONY: clean
clean:
rm -f docs/output.md docs/index.html docs/style.css