forked from Virtual-Coffee/virtualcoffee.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
174 lines (161 loc) · 3.88 KB
/
next.config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/** @type {import('next').NextConfig} */
import path from 'path';
import { fileURLToPath } from 'url';
import createMDX from '@next/mdx';
import remarkFrontmatter from 'remark-frontmatter';
import { toc } from 'mdast-util-toc';
import rehypeHighlight from 'rehype-highlight';
import rehypeSlug from 'rehype-slug';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import { h as hastscript } from 'hastscript';
import { toString } from 'hast-util-to-string';
/**
* Plugin to generate a Table of Contents (TOC).
* Created from https://github.com/remarkjs/remark-toc
*
* @type {import('unified').Plugin<[Options?]|void[], Root>}
*/
function createRemarkToc() {
return (options = {}) => {
return (node) => {
// console.log(node.children);
// console.log(JSON.stringify(node.children[4], null, 2));
// console.log(
// JSON.stringify(
// node.children.filter((n) => n.type === 'paragraph'),
// null,
// 2,
// ),
// );
const result = toc(
node,
Object.assign({}, options, {
heading: options.heading || 'toc|table[ -]of[ -]contents?',
}),
);
if (
result.endIndex === null ||
result.index === null ||
result.index === -1 ||
!result.map
) {
return;
}
// console.log(JSON.stringify(result.map, null, 2));
// console.log({
// length: node.children.length,
// index: result.index,
// endIndex: result.endIndex,
// slice: node.children.slice(result.endIndex),
// });
if (node.children[result.index].type === 'mdxJsxFlowElement') {
node.children = [
...node.children.slice(0, result.index - 1),
{
...node.children[result.index],
children: [
node.children[result.index - 1],
result.map,
...node.children[result.index].children,
],
},
...node.children.slice(result.index + 1),
];
} else {
node.children = [
...node.children.slice(0, result.index - 1),
{
type: 'mdxJsxFlowElement',
name: 'div',
attributes: [
{
type: 'mdxJsxAttribute',
name: 'className',
value: 'pt-5 bg-white',
},
],
children: [
{
type: 'mdxJsxFlowElement',
name: 'div',
attributes: [
{
type: 'mdxJsxAttribute',
name: 'className',
value: 'container prose',
},
],
children: [node.children[result.index - 1], result.map],
data: { _xdmExplicitJsx: true },
},
],
data: { _xdmExplicitJsx: true },
},
...node.children.slice(result.index),
];
}
};
};
}
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
const __dirname = path.dirname(__filename);
const nextConfig = {
sassOptions: {
includePaths: [path.join(__dirname, 'node_modules')],
},
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
async headers() {
return [
{
source: '/feed/feed.rss',
headers: [
{
key: 'Content-Type',
value: 'text/xml; charset=utf-8',
},
],
},
];
},
};
const remarkToc = createRemarkToc();
const withMDX = createMDX({
// Add markdown plugins here, as desired
options: {
remarkPlugins: [
[
remarkToc,
{
tight: true,
parents: ['root', 'mdxJsxFlowElement'],
maxDepth: 3,
},
],
remarkFrontmatter,
],
rehypePlugins: [
rehypeSlug,
[
rehypeAutolinkHeadings,
{
behavior: 'after',
properties: { class: 'header-anchor' },
content: (node) => {
return [
hastscript('span.sr-only', `Permalink to “${toString(node)}”`),
hastscript('span', { ariaHidden: 'true' }, '#'),
];
},
group: (node) => {
return hastscript(
`.header-anchor-wrapper.header-anchor-wrapper-${node.tagName}`,
);
},
test: ['h2', 'h3'],
},
],
rehypeHighlight,
],
},
});
export default withMDX(nextConfig);