Enhancing output with custom HTML
Doxygen Awesome offers a few additional features that can be enabled by including a few JavaScript snippets in the documentation header, within the HTML <head>
tags. They can be quite useful, as they allow switching between light and dark mode, adding a Copy button for code snippets, paragraph-header permalinks, and an interactive table of contents.
However, implementing these features requires copying additional code to the output directory and including it in the generated HTML files.
Here is the JavaScript code to be included just before the </head>
tag:
ch13/cmake/extra_headers
<script type="text/javascript" src="$relpath^doxygen-awesome-darkmode-toggle.js"></script>
<script type="text/javascript" src="$relpath^doxygen-awesome-fragment-copy-button.js"></script>
<script type="text/javascript" src="$relpath^doxygen-awesome-paragraph-link...