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
|
import mdx from '@astrojs/mdx';
export default {
integrations: [
mdx({
optimize: {
ignoreElementNames: ['strong'],
},
}),
],
markdown: {
rehypePlugins: [
() => {
return (tree) => {
tree.children.push({
type: 'root',
children: [
{
type: 'element',
tagName: 'p',
properties: {
id: 'injected-root-hast',
},
children: [
{
type: 'text',
value: 'Injected root hast from rehype plugin',
},
],
},
],
});
};
},
],
},
};
|