Previously, both extensions were needed, but one is enough.
@@ -13,7 +13,10 @@ PANDOC_GEN := pandoc --standalone --wrap=none --template src/templates/main.html
build: $(GEN_FILES)
$(info HTML generated)
-%.gen.html: %.src.html %.src.md
+%.gen.html: %.src.html
+ $(PANDOC_GEN) --output $@ $<
+
+%.gen.html: %.src.md
$(PANDOC_GEN) --output $@ $<
dist: $(DIST_FILES)