From b42b5f3f0b82e3ea4c20af3dc8a879ac83f1a97a Mon Sep 17 00:00:00 2001 From: Sebastian Gode Date: Mon, 17 Apr 2023 09:07:41 +0000 Subject: [PATCH] Synchronized with GitHub --- doc/source/_ext/cont.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/_ext/cont.py b/doc/source/_ext/cont.py index 4c22130..69d4a78 100644 --- a/doc/source/_ext/cont.py +++ b/doc/source/_ext/cont.py @@ -184,6 +184,8 @@ def service_group_html(self, node): data = '
' for k, v in METADATA.services_with_docs_by_category( node['service_category'], environment=node['environment']).items(): + if not v.get("docs"): + continue title = v["service_title"] data += ( f'
' @@ -220,7 +222,6 @@ def setup(app): app.add_directive("container_item", ContainerItem) app.add_directive("navigator", Navigator) app.add_directive("service_group", ServiceGroup) - print(app.config.config_values) return { 'version': '0.1',