Skip to content

Instantly share code, notes, and snippets.

@haukex
Created March 28, 2024 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haukex/2b012e1490b538210d7279b94bffc4d5 to your computer and use it in GitHub Desktop.
Save haukex/2b012e1490b538210d7279b94bffc4d5 to your computer and use it in GitHub Desktop.
sphinx-markdown-builder unknown node type desc_returns
extensions = ["sphinx.ext.autodoc", "sphinx_markdown_builder"]
"Hello, World!"
def foo(bar: str) -> int:
"Foo!"
return len(bar)
.PHONY: docs clean
docs:
PYTHONPATH=. sphinx-build -M markdown . output
clean:
rm -rf output
sphinx == 7.2.6
sphinx-markdown-builder == 0.6.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment