From 18569c7a9b86868bbee74615888367766be930ac Mon Sep 17 00:00:00 2001 From: Jean-Philippe Raynaud Date: Wed, 7 Jun 2023 17:17:29 +0200 Subject: [PATCH] Remove 'project Charter' link from website footer --- docs/docusaurus.config.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 1ecbfb8368e..bdd09a0482d 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -33,7 +33,7 @@ const config = { path: 'root', routeBasePath: '/', sidebarPath: require.resolve('./sidebars.js'), - editUrl: ({docPath}) => { + editUrl: ({ docPath }) => { // We want users to submit doc updates to the upstream/next version! // Otherwise we risk losing the update on the next release. return `https://github.com/input-output-hk/mithril/edit/main/docs/root/${docPath}`; @@ -157,10 +157,6 @@ const config = { { title: 'Contributing', items: [ - { - label: 'Project Charter', - href: 'https://github.com/input-output-hk/mithril/wiki/Project-Charter', - }, { label: 'Contributing Guidelines', href: 'https://github.com/input-output-hk/mithril/blob/main/CONTRIBUTING.md', @@ -209,7 +205,7 @@ const config = { darkTheme: darkCodeTheme, }, }), - markdown: { + markdown: { mermaid: true, }, themes: ['@docusaurus/theme-mermaid'],