From 698d5f5424241bedd9d25d253c5e166cb5d76b5b Mon Sep 17 00:00:00 2001 From: sql-hkr Date: Sun, 26 Oct 2025 18:26:07 +0900 Subject: [PATCH] Add napoleon extension to Sphinx config (#15) Enabled the `sphinx.ext.napoleon` extension in `docs/conf.py` to support Google-style docstrings. --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 0914529..72d90f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,6 +18,7 @@ "sphinx.ext.viewcode", "sphinx.ext.todo", "sphinx.ext.mathjax", + "sphinx.ext.napoleon", ] templates_path = ["_templates"]