diff options
| -rw-r--r-- | .github/workflows/doxygen.yml | 2 | ||||
| -rw-r--r-- | docs/Doxyfile | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 2920c7c..f8a2ca3 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -28,9 +28,9 @@ jobs: - name: Configure m.css run: | cp mcss/css/m-dark+documentation.compiled.css ./docs/m-dark.css - cp mcss/documentation/templates/doxygen/base-class-reference.html ./docs/base-class-reference.html cp mcss/css/m-dark.compiled.css ./docs/m-dark.compiled.css cp mcss/css/m-light.compiled.css ./docs/m-light.compiled.css + cp mcss/documentation/search.js ./docs/m.js # Generate Doxygen documentation - name: Generate Doxygen documentation diff --git a/docs/Doxyfile b/docs/Doxyfile index e3511ac..2b9bdbc 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -10,7 +10,6 @@ GENERATE_LATEX = NO GENERATE_MAN = NO GENERATE_RTF = NO GENERATE_XML = NO -GENERATE_JSON = NO # Input sources INPUT = fbgl.h README.md @@ -41,8 +40,8 @@ HTML_DYNAMIC_SECTIONS = YES GENERATE_TREEVIEW = YES # Integrating Doxygen with m.css -HTML_EXTRA_STYLESHEET = ./docs/m-dark.css -HTML_EXTRA_FILES = ./docs/m.js +HTML_EXTRA_STYLESHEET = ./m-dark.css +HTML_EXTRA_FILES = ./m.js # Warnings WARNINGS = YES |
