diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-05-02 00:00:12 +0200 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-05-02 00:02:12 +0200 |
| commit | 127925edde268d29f20b811400b2cebd49eac6ec (patch) | |
| tree | 4fc785bc1f42ece26b7d047146c58157a5244697 /doxygen_config.py | |
| parent | 2533e0738b0ae6dd30f92e14adb848ba980b3e05 (diff) | |
Test doxygen m.css theme
Diffstat (limited to 'doxygen_config.py')
| -rw-r--r-- | doxygen_config.py | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/doxygen_config.py b/doxygen_config.py new file mode 100644 index 00000000..9d37b519 --- /dev/null +++ b/doxygen_config.py @@ -0,0 +1,63 @@ +# Configuration file for https://mcss.mosra.cz/documentation/doxygen/ +DOXYFILE = "Doxyfile" +MAIN_PROJECT_URL = "https://github.com/zeldaret/tmc" +SHOW_UNDOCUMENTED = True +SEARCH_RESULT_ID_BYTES = 4 +SEARCH_FILE_OFFSET_BYTES = 4 +SEARCH_NAME_SIZE_BYTES = 2 +SEARCH_DOWNLOAD_BINARY = True +HTML_HEADER = """ +<style> +html { + height: 100%; +} +dl { + padding-left: 1em; +} +body { + min-height: 100%; + background-image: url("../beanstalk-bg.png"); + background-attachment: fixed; + background-size: cover; +} +body > header > nav { + background: #2f363fe5; +} +main>article>.m-container { + padding-top: 1em; + padding-bottom: 1em; + background: #2f363fe5; +} +code { + background: #2f363fe5; +} +body > footer > nav { + background: transparent; + padding: 0; + color: #555; +} +body > footer > nav a { + color: #222; +} +ul.m-doc li.m-doc-expansible > a:first-child::before, ul.m-doc li.m-doc-collapsible > a:first-child::before { + background: transparent; +} +.m-doc-template, dl.m-doc dd, ul.m-doc li > span.m-doc, dl.m-doc dd svg.m-math, ul.m-doc li > span.m-doc svg.m-math { + color: #a4a4a4; +} +img.m-image, svg.m-image { + display: inline-block; +} +main p { + text-indent: 0; +} +</style> +""" +LINKS_NAVBAR1 = [ + ("Modules", 'modules', []), + ("Pages", 'pages', []) +] +LINKS_NAVBAR2 = [ + ("Classes", 'annotated', []), + ("Files", 'files', []) +]
\ No newline at end of file |
