diff options
author | Jonas Smedegaard <dr@jones.dk> | 2015-10-16 11:32:34 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2015-10-16 11:32:34 +0200 |
commit | cb62cfeb403a60a1fd125c19dd680bb0f0b93a8a (patch) | |
tree | dab8d3ff4288d664659bd7d7ce37b2e2372f95d8 | |
parent | 5df54babb6393900f4a70fa6773502ee9b0b2b1c (diff) |
Fix create standalone hypertext (not snippets).
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |