Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 4x 4x | import React from 'react'; import rehypePrism from 'rehype-prism-plus'; import type { PluggableList } from 'unified'; import rehypeRewrite from 'rehype-rewrite'; import rehypeAttrs from 'rehype-attr'; import rehypeRaw from 'rehype-raw'; import MarkdownPreview from './preview'; import { reservedMeta } from './plugins/reservedMeta'; import { retrieveMeta } from './plugins/retrieveMeta'; import { rehypeRewriteHandle, defaultRehypePlugins } from './rehypePlugins'; import type { MarkdownPreviewProps, MarkdownPreviewRef } from './Props'; export * from './Props'; export default React.forwardRef<MarkdownPreviewRef, MarkdownPreviewProps>((props, ref) => { const rehypePlugins: PluggableList = [ reservedMeta, rehypeRaw, retrieveMeta, ...defaultRehypePlugins, [rehypeRewrite, { rewrite: rehypeRewriteHandle(props.disableCopy ?? false, props.rehypeRewrite) }], [rehypeAttrs, { properties: 'attr' }], ...(props.rehypePlugins || []), [rehypePrism, { ignoreMissing: true }], ]; return <MarkdownPreview {...props} rehypePlugins={rehypePlugins} ref={ref} />; }); |