mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 09:47:48 +02:00
* Upgrade to TS 5.8 * increase build perf CI timeout values * enable erasableSyntaxOnly * enable erasableSyntaxOnly
23 lines
643 B
TypeScript
23 lines
643 B
TypeScript
/**
|
|
* 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 type {Transformer} from 'unified';
|
|
|
|
import type {Root} from 'mdast';
|
|
|
|
// Transform <head> to <Head>
|
|
// MDX 2 doesn't allow to substitute html elements with the provider anymore
|
|
export default function plugin(): Transformer<Root> {
|
|
return async (root) => {
|
|
const {visit} = await import('unist-util-visit');
|
|
visit(root, 'mdxJsxFlowElement', (node) => {
|
|
if (node.name === 'head') {
|
|
node.name = 'Head';
|
|
}
|
|
});
|
|
};
|
|
}
|