Sphinx 5 Generate API Documentation

Sub-skill of sphinx: 5. Generate API Documentation (+1).

vamseeachanta 3febe2c 1.2 KB Updated

File contents

5. Generate API Documentation (+1)

5. Generate API Documentation

# Auto-generate API documentation stubs
sphinx-apidoc -o docs/source/api src/mypackage -f -e -M

# Options:
# -o: Output directory
# -f: Force overwrite
# -e: Separate pages for each module
# -M: Module-first ordering
# -d 2: TOC depth

# Build HTML documentation
sphinx-build -b html docs/source docs/build/html

# Build with verbose output
sphinx-build -b html docs/source docs/build/html -v

# Clean and rebuild
rm -rf docs/build && sphinx-build -b html docs/source docs/build/html

6. MyST Markdown Support

# conf.py - Enable MyST
extensions = [
    'myst_parser',
]

# MyST configuration
myst_enable_extensions = [
    'amsmath',
    'colon_fence',
    'deflist',
    'dollarmath',
    'fieldlist',
    'html_admonition',
    'html_image',
    'replacements',
    'smartquotes',
    'strikethrough',
    'substitution',
    'tasklist',
]

myst_heading_anchors = 3
myst_footnote_transition = True
<!-- docs/source/guide/overview.md -->

# Overview

This guide provides an overview of MyProject.

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/development/documentation/sphinx/5-generate-api-documentation commit 3febe2c675

Frequently asked questions

npx skillmds@latest add vamseeachanta/sphinx-5-generate-api-documentation