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:
parent
35ecd1d0b7
commit
d0e6fabf9e
26 changed files with 37 additions and 2785 deletions
12
theme/navbar.js
Normal file
12
theme/navbar.js
Normal 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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue