mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-01-01 09:47:51 +01:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
/* SPDX-License-Identifier: AGPL-3.0-or-later */
|
|
|
|
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
module.exports = {
|
|
sidebarId: [
|
|
"index",
|
|
{
|
|
type: "html",
|
|
value: '<a class="menu__link" href="/input/">Input math problems</a>',
|
|
className: "menu__list-item",
|
|
},
|
|
"mirror",
|
|
"source",
|
|
"community",
|
|
"acknowledgment",
|
|
],
|
|
};
|