From ecd842ab9b158f4786bd6014b4e9dd7602860201 Mon Sep 17 00:00:00 2001 From: Dmytro Shteflyuk Date: Sun, 29 Sep 2024 14:00:08 -0400 Subject: [PATCH] 'Configuration overview' section was moved to overview.md file --- bin/docs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)