diff --git a/docs/waterfall/README.mdx b/docs/waterfall/README.mdx index 92510df50..3dda1584a 100644 --- a/docs/waterfall/README.mdx +++ b/docs/waterfall/README.mdx @@ -1,6 +1,6 @@ --- sunsetted: true -sunsettingMessage: We recommend you transition to Velocity. +sunsettingMessage: We recommend you transition to [Velocity](/velocity). --- import DocCardList from "@theme/DocCardList"; @@ -10,14 +10,6 @@ import { useCurrentSidebarCategory } from "@docusaurus/theme-common"; Waterfall is the BungeeCord fork that aims to improve performance and stability. -:::danger - -**The Paper team strongly recommends using [Velocity](../velocity) over Waterfall**. Waterfall is a legacy solution, -and only receives critical updates and whatever is released from upstream BungeeCord. All future -development by PaperMC is done on [Velocity](../velocity). - -::: - --- diff --git a/docs/waterfall/configuration.mdx b/docs/waterfall/configuration.mdx index a81f27b8b..fb65df861 100644 --- a/docs/waterfall/configuration.mdx +++ b/docs/waterfall/configuration.mdx @@ -2,7 +2,7 @@ slug: /configuration description: Configuration guide for Waterfall. sunsetted: true -sunsettingMessage: We recommend you transition to Velocity. +sunsettingMessage: We recommend you transition to [Velocity](/velocity). --- import React from 'react'; diff --git a/docs/waterfall/getting-started.md b/docs/waterfall/getting-started.md index 4145f4090..52926902e 100644 --- a/docs/waterfall/getting-started.md +++ b/docs/waterfall/getting-started.md @@ -2,7 +2,7 @@ slug: /getting-started description: How to get started with running Waterfall. sunsetted: true -sunsettingMessage: We recommend you transition to Velocity. +sunsettingMessage: We recommend you transition to [Velocity](/velocity). --- # Getting Started diff --git a/src/theme/DocItem/index.tsx b/src/theme/DocItem/index.tsx index 639d1c001..e79a3ae0c 100644 --- a/src/theme/DocItem/index.tsx +++ b/src/theme/DocItem/index.tsx @@ -3,14 +3,14 @@ import {HtmlClassNameProvider} from '@docusaurus/theme-common'; import {DocProvider} from '@docusaurus/theme-common/internal'; import DocItemMetadata from '@theme/DocItem/Metadata'; import DocItemLayout from '@theme/DocItem/Layout'; +import ReactMarkdown from 'react-markdown'; +import style from '@site/src/css/markdown-styles.module.css'; import type {Props} from '@theme/DocItem'; function SunsettedPage(message: string) { return (
- - {message} - + {"**" + message + "**"}
); }