Synchronized with GitHub

This commit is contained in:
Gode, Sebastian 2023-04-17 09:07:41 +00:00
parent da043bd5eb
commit b42b5f3f0b

View File

@ -184,6 +184,8 @@ def service_group_html(self, node):
data = '<div class="container-docsportal">'
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'<div class="card item-docsportal">'
@ -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',