globjects
Integration of a new Documentation
The following manual steps are necessary for each added documentation:
- Create a subfolder with the name of the release identifier (e.g., master, v2.0)
- Copy contents of Doxygen html folder into directory
- Add documentation meta data to
docs/docs.pug - Adjust the sort order of the documentations array in the config file; the order is used for display
- Adjust doxy-boot.js
- Add code to generate backlink in the
$(document).readycallback
- Add code to generate backlink in the
The resulting head of the file should look like this:
$( document ).ready(function() {
$("#projectlogo").each(function() {
var td = $(this);
td.html($("<a>").attr("href", "/").append(td.html()));
});
// ...
});