contrib/Makefile: hide the hint on broken site

This commit is contained in:
Christian Hesse 2025-11-11 23:56:16 +01:00
parent 8ef6ec9819
commit b24435decb

View file

@ -7,4 +7,7 @@ HTML := $(wildcard *.html)
all: docs
docs: $(HTML)
sed -i '/href=/s|\.md|\.html|' $(HTML)
sed -i \
-e '/href=/s|\.md|\.html|' \
-e '/blockquote/s|/\*! display \*/|display: none;|' \
$(HTML)