diff --git a/bin/docs b/bin/docs index 82c5ffee..a5c93727 100755 --- a/bin/docs +++ b/bin/docs @@ -118,7 +118,11 @@ class DocWriter end def linkify(text) - text.downcase.gsub(" ", "-") + if text == "Configuration overview" + "overview" + else + text.downcase.gsub(" ", "-") + end end def titlify(text)