Enhance documentation with theme migration, new features, and updates#81
Open
rafaelscsilva wants to merge 81 commits into
Open
Enhance documentation with theme migration, new features, and updates#81rafaelscsilva wants to merge 81 commits into
rafaelscsilva wants to merge 81 commits into
Conversation
…EMG, PCG, PPG, RESP, RRI
# Conflicts: # docs/index.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR focuses on improving and expanding BioSPPy's documentation while standardizing docstrings across the codebase. The goal is to provide a more consistent experience and ensure compatibility with the documentation generation pipelin with theme improvements. No functional changes have been made: all code behavior, APIs, and implementations remain unchanged.
Documentation updates
Documentation restructure
The documentation has been reorganized into a module-centric structure, making it easier to navigate and discover functionality.
In addition, the documentation now includes:
Docstring improvements
Docstrings were standardized across the project to improve consistency and ensure they are correctly parsed by the documentation generation pipeline. These updates include:
Parameters,Returns, andNotes.Notessections where applicable.Modules updated
The following modules received documentation and formatting updates only, with no changes to function behavior or implementation:
biosppy/features/time.pybiosppy/quality.pybiosppy/signals/bvp.pybiosppy/signals/ecg.pybiosppy/signals/eda.pybiosppy/signals/eeg.pybiosppy/signals/egm.pybiosppy/signals/ppg.pybiosppy/storage.pybiosppy/synthesizers/ecg.pybiosppy/synthesizers/emg.pyGenerating the documentation locally
To build and preview the documentation locally, run the following commands from the project root:
cd BioSPPy python -m sphinx -b html -E docs docs/_build/htmlThis generates the HTML documentation in:
To serve the generated documentation locally, start a local HTTP server from the generated documentation directory:
cd docs/_build/html python -m http.server 8000Then open the documentation in your browser: