Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -1,7 +1,6 @@ REFS=refs.bib -RAWBIB=refs.md PROCBIB=docs/bib.md .PHONY: publish clean serve purge site: build @@ -17,11 +16,9 @@ mkdocs serve purge: fossil uv ls | xargs fossil uv rm {} rm -rf site/ -$(PROCBIB): $(REFS) $(RAWBIB) - pandoc -C \ - --bibliography=$(REFS) \ - $(RAWBIB) \ - -t markdown_strict \ - -o $@ +$(PROCBIB): $(REFS) + echo -e "# References\n" > $@ + pandoc -C $(REFS) \ + -t markdown_strict >> $@