divzeroweb

2f30.org website
git clone git://git.2f30.org/divzeroweb
Log | Files | Refs | README | LICENSE

commit 2ad01dc01593827299b856252568e7d25662a0a5
parent 5a583fa8d7a40292079352ba003245fa2ee974dc
Author: dsp <dsp@2f30.org>
Date:   Fri, 18 Nov 2022 21:44:22 -0700

changing from markdown to markdown_py since the previous package has been renamed

Diffstat:
MMakefile | 2+-
MREADME | 4+++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -54,7 +54,7 @@ SFOOTER = footer.shtml .md.html: $(DHEADER) $(DFOOTER) cat $(DHEADER) | ./config.sh $@ $(BASE) $(MENUPAGES) > $(SHEADER) cat $(DFOOTER) | ./config.sh $@ $(BASE) $(MENUPAGES) > $(SFOOTER) - markdown $< | cat $(SHEADER) - $(SFOOTER) > $@ + markdown_py $< | cat $(SHEADER) - $(SFOOTER) > $@ rm $(SHEADER) $(SFOOTER) .PHONY: all package install clean diff --git a/README b/README @@ -1,4 +1,4 @@ -This is a simplistic website generator created for the www.2f30.org +This is a simpxlistic website generator created for the www.2f30.org website. It consists of: * Makefile @@ -15,3 +15,5 @@ Because some paths are absolute (see how `${BASE}` is used in header.dhtml), remember to adjust the `BASE` variable in Makefile accordingly in order for config.sh to generate correct paths for online or offline viewing. + +Requires the py3-markdown package to be installed on OpenBSD.