From acada5ac021b8851f130a262c09863888576c61c Mon Sep 17 00:00:00 2001 From: Jon Rood Date: Fri, 27 Sep 2024 15:13:00 -0600 Subject: [PATCH] Try something. --- docs/sphinx/conf.py | 3 ++- docs/sphinx/source/developer/write_developer_doc.rst | 9 --------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index a3a958cd9c..fadf6555ce 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -29,7 +29,8 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [ 'sphinx.ext.mathjax'] +extensions = ['sphinx.ext.mathjax', 'sphinxcontrib.bibtex'] +bibtex_bibfiles = ['references/references.bib'] # Add any paths that contain templates here, relative to this directory. diff --git a/docs/sphinx/source/developer/write_developer_doc.rst b/docs/sphinx/source/developer/write_developer_doc.rst index 53b47a6ad3..a494abaa16 100644 --- a/docs/sphinx/source/developer/write_developer_doc.rst +++ b/docs/sphinx/source/developer/write_developer_doc.rst @@ -18,12 +18,3 @@ copy of the file. .. literalinclude:: dox_example/example.h :language: c++ :caption: Sample C++ header file showing inline documentation using specially formatted comments. - -Once processed by Doxygen and embedded in Sphinx, the resulting documentation of -the class looks as shown below: - -.. doxygenclass:: ExampleClass - :project: example_cpp - :members: - :private-members: - :protected-members: