diff --git a/.readthedocs.yaml b/.readthedocs.yaml index c312894..e7cf47a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -19,7 +19,6 @@ build: sphinx: configuration: docs/conf.py -source_dir: docs/docs # Optionally build your docs in additional formats such as PDF and ePub # formats: diff --git a/docs/conf.py b/docs/conf.py index 1a96967..9672235 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,10 @@ # Configuration file for the Sphinx documentation builder. +import os +import sys +sys.path.insert(0, os.path.abspath('../docs/docs')) # Adjust the path to where your documentation files are + +# Set the source directory for your Sphinx documentation files +source_suffix = ['.rst', '.md'] # If using Markdown files with MyST # -- Project information