From f2603ec50637ffabd016b5fe9223f62f9707467f Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Mon, 31 Aug 2015 09:13:19 +0200 Subject: [PATCH] Don't title the docs 'None', closes #2717 For some reason, mkdocs insists that the title of the homepage is 'None', even though we set it in the config. --- docs/process-md.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/process-md.sh b/docs/process-md.sh index 5aadb7468..d0d174388 100755 --- a/docs/process-md.sh +++ b/docs/process-md.sh @@ -25,6 +25,7 @@ post() { # Add class="table-bordered" to tables find html -type f -name '*.html' -exec perl -i -p \ -e 's/\/
/;' \ + -e 's/\None\<\/title>/<title>PowerDNS<\/title>/' \ {} + } -- 2.40.0