/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, {type ComponentProps, type ReactNode} from 'react'; import {TitleFormatterProvider} from '@docusaurus/theme-common/internal'; import type {Props} from '@theme/ThemeProvider/TitleFormatter'; type FormatterProp = ComponentProps['formatter']; const formatter: FormatterProp = (params) => { // Add your own title formatting logic here! return params.defaultFormatter(params); }; export default function ThemeProviderTitleFormatter({ children, }: Props): ReactNode { return ( {children} ); }