fix: Remove unsupported book.toml keys

Removed configuration keys from book.toml not supported by the current
version of mdbook, which were causing build warnings.
This commit is contained in:
Matthew Binning 2026-03-22 15:41:29 -07:00
parent 35ecd1d0b7
commit d0e6fabf9e
26 changed files with 37 additions and 2785 deletions

12
theme/navbar.js Normal file
View file

@ -0,0 +1,12 @@
document.addEventListener('DOMContentLoaded', function () {
var navbar = document.createElement('nav');
navbar.className = 'navbar';
navbar.innerHTML =
'<div class="nav-container">' +
'<a href="/" class="nav-brand">Home</a>' +
'<ul class="nav-menu">' +
'<li><a href="https://forgejo.binning.net" target="_blank">Git</a></li>' +
'</ul>' +
'</div>';
document.body.insertBefore(navbar, document.body.firstChild);
});