contrib/Makefile: hide the hint on broken site

This commit is contained in:
Christian Hesse 2025-11-11 23:56:16 +01:00
parent 7b6c18eef3
commit 45f446e688

View file

@ -7,4 +7,6 @@ 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)