From 249aa9af5b3497aaeb37e453e703aa83000cbd61 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sat, 26 Mar 2022 18:09:34 +0100 Subject: modernize to use tags nav and footer (not div with classes topbar and footer) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 995868a..d3e4d04 100644 --- a/Makefile +++ b/Makefile @@ -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
' -e '$$ a
' $@ + 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 $@ $< -- cgit v1.2.3