forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 2
/
next.mdx.compiler.mjs
53 lines (44 loc) · 1.9 KB
/
next.mdx.compiler.mjs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';
import { evaluate } from '@mdx-js/mdx';
import { Fragment, jsx, jsxs } from 'react/jsx-runtime';
import { matter } from 'vfile-matter';
import { NEXT_REHYPE_PLUGINS, NEXT_REMARK_PLUGINS } from './next.mdx.mjs';
import { createGitHubSlugger } from './util/gitHubUtils';
// Defines the React Runtime Components
const reactRuntime = { Fragment, jsx, jsxs };
/**
* This is our custom simple MDX Compiler that is used to compile Markdown and MDX
* this returns a serializable VFile as a string that then gets passed to our MDX Provider
*
* @param {import('vfile').VFile} source
* @param {'md' | 'mdx'} fileExtension
* @returns {Promise<{
* MDXContent: import('mdx/types').MDXContent;
* headings: Array<import('@vcarl/remark-headings').Heading>;
* frontmatter: Record<string, any>;
* readingTime: import('reading-time').ReadTimeResults;
* }>}
*/
export async function compileMDX(source, fileExtension) {
// Parses the Frontmatter to the VFile and removes from the original source
// cleaning the frontmatter to the source that is going to be parsed by the MDX Compiler
matter(source, { strip: true });
const slugger = createGitHubSlugger();
// This is a minimal MDX Compiler that is lightweight and only parses the MDX
const { default: MDXContent } = await evaluate(source, {
rehypePlugins: NEXT_REHYPE_PLUGINS,
remarkPlugins: NEXT_REMARK_PLUGINS,
format: fileExtension,
baseUrl: import.meta.url,
...reactRuntime,
});
// Retrieve some parsed data from the VFile metadata
// such as frontmatter and Markdown headings
const { headings, matter: frontmatter, readingTime } = source.data;
headings.forEach(heading => {
// we re-sluggify the links to match the GitHub slugger
// since some also do not come with sluggifed links
heading.data = { ...heading.data, id: slugger(heading.value) };
});
return { MDXContent, headings, frontmatter, readingTime };
}