diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -markdown-snippets := topbar.md footer.md +markdown-snippets := nav.md footer.md hypertext-snippets = $(markdown-snippets:%.md=%.html) markdown := $(filter-out $(markdown-snippets),$(wildcard *.md */*.md */*/*.md)) hypertext = $(subst index/index,index,$(markdown:%.md=%/index.html)) @@ -16,7 +16,7 @@ update: .git $(hypertext-snippets): %.html: %.md Makefile pandoc -f markdown -t html -o $@ $< - sed -i -e '1i <div class=\"$*\">' -e '$$ a </div>' $@ + sed -i -e '1i <$*>' -e '$$ a </$*>' $@ $(vectorimage-graph): %.svg: %.dot Makefile dot -Tsvg -o$@ $< @@ -25,14 +25,14 @@ $(vectorimage-graph): %.svg: %.dot Makefile $(eval title = $(shell head --lines=1 $< \ | grep --perl-regexp --only-matching '^\#\s*\K(\S+(\s\S+)*)+')) $(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@)) - pandoc -f markdown -t html -s \ + pandoc -f markdown -t html5 -s \ --metadata lang=da \ $(if $(title),\ $(if $(filter-out $(sitetitle),$(title)),$(strip \ --metadata pagetitle='$(sitetitle) -- $(title)'),$(strip \ --metadata pagetitle='$(title)'))) \ -c $(shell realpath --relative-to=$(dir $@) style.css) \ - -B topbar.html \ + -B nav.html \ -A footer.html \ -o $@ $< |