Add confluent kafka docs (#1668)

* add elasticsearch to docs

* add confluent kafka to docs

* tox generate fix

* tox docs fix

---------

Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
This commit is contained in:
Nimrod Shlagman
2023-02-15 14:17:28 +02:00
committed by GitHub
parent 5e4766ed66
commit 1e89854832
5 changed files with 58 additions and 41 deletions

View File

@ -126,25 +126,14 @@ def getlistcfg(strval):
]
if "class_references" in mcfg:
class_references = getlistcfg(mcfg["class_references"])
for class_reference in class_references:
nitpick_ignore.append(
(
"py:class",
class_reference,
)
)
ignore_categories = ["py-class", "py-func", "py-exc", "any"]
for category in ignore_categories:
if category in mcfg:
items = getlistcfg(mcfg[category])
for item in items:
nitpick_ignore.append((category.replace("-", ":"), item))
if "anys" in mcfg:
anys = getlistcfg(mcfg["anys"])
for _any in anys:
nitpick_ignore.append(
(
"any",
_any,
)
)
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]