Skip to content

Commit

Permalink
adding sphinx design dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mhubii committed May 14, 2024
1 parent 0c7bc2d commit 0931652
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@

# convert doxygen to sphinx, source and build directory need
# to follow https://boschglobal.github.io/doxysphinx/docs/getting_started.html#build
subprocess.run(f"doxysphinx build . $READTHEDOCS_OUTPUT/html {doxyfile}", shell=True)
subprocess.run(
f"doxysphinx build . $READTHEDOCS_OUTPUT/html {doxyfile}", shell=True
)

# Configuration file for the Sphinx documentation builder.
#
Expand All @@ -36,13 +38,14 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
"sphinx_markdown_tables",
"sphinx_copybutton",
"myst_parser",
"sphinx.ext.autosectionlabel",
"sphinx_copybutton",
"sphinx_design",
"sphinx_markdown_tables",
"sphinx_panels",
"sphinxcontrib.images",
"sphinxcontrib.doxylink",
"myst_parser",
"sphinxcontrib.images",
]

templates_path = ["_templates"]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
doxysphinx
myst_parser
sphinx-copybutton
sphinx-design
sphinx-markdown-tables
sphinx-panels
sphinx-rtd-theme
Expand Down

0 comments on commit 0931652

Please sign in to comment.