summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2015-10-16 11:32:34 +0200
committerJonas Smedegaard <dr@jones.dk>2015-10-16 11:32:34 +0200
commitcb62cfeb403a60a1fd125c19dd680bb0f0b93a8a (patch)
treedab8d3ff4288d664659bd7d7ce37b2e2372f95d8
parent5df54babb6393900f4a70fa6773502ee9b0b2b1c (diff)
Fix create standalone hypertext (not snippets).
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9a3d6e3..d4c5401 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ source: .git
%.html %/index.html: %.mdwn Makefile
$(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@))
- pandoc -f markdown -t html -o $@ $<
+ pandoc -s -f markdown -t html -o $@ $<
clean:
find -type f -name '*.html' -delete