mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Handle MDX optimize for root hast node (#11975)
This commit is contained in:
parent
86ad1fd223
commit
c9ae7b1b89
5 changed files with 58 additions and 10 deletions
5
.changeset/lovely-dolphins-draw.md
Normal file
5
.changeset/lovely-dolphins-draw.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@astrojs/mdx': patch
|
||||
---
|
||||
|
||||
Handles nested root hast node when optimizing MDX
|
|
@ -64,8 +64,14 @@ export const rehypeOptimizeStatic: RehypePlugin<[OptimizeOptions?]> = (options)
|
|||
* A non-static node causes all its parents to be non-optimizable
|
||||
*/
|
||||
const isNodeNonStatic = (node: Node) => {
|
||||
// @ts-expect-error Access `.tagName` naively for perf
|
||||
return node.type.startsWith('mdx') || ignoreElementNames.has(node.tagName);
|
||||
return (
|
||||
node.type.startsWith('mdx') ||
|
||||
// @ts-expect-error `node` should never have `type: 'root'`, but in some cases plugins may inject it as children,
|
||||
// which MDX will render as a fragment instead (an MDX fragment is a `mdxJsxFlowElement` type).
|
||||
node.type === 'root' ||
|
||||
// @ts-expect-error Access `.tagName` naively for perf
|
||||
ignoreElementNames.has(node.tagName)
|
||||
);
|
||||
};
|
||||
|
||||
visit(tree as any, {
|
||||
|
|
|
@ -1,9 +1,37 @@
|
|||
import mdx from '@astrojs/mdx';
|
||||
|
||||
export default {
|
||||
integrations: [mdx({
|
||||
optimize: {
|
||||
ignoreElementNames: ['strong']
|
||||
}
|
||||
})]
|
||||
}
|
||||
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',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
});
|
||||
};
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
|
@ -47,4 +47,15 @@ describe('MDX optimize', () => {
|
|||
assert.notEqual(blockquote, null);
|
||||
assert.equal(blockquote.textContent.includes('I like pancakes'), true);
|
||||
});
|
||||
|
||||
it('renders MDX with rehype plugin that incorrectly injects root hast node', async () => {
|
||||
const html = await fixture.readFile('/import/index.html');
|
||||
const { document } = parseHTML(html);
|
||||
|
||||
assert.doesNotMatch(html, /set:html=/);
|
||||
assert.equal(
|
||||
document.getElementById('injected-root-hast').textContent,
|
||||
'Injected root hast from rehype plugin',
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
2
pnpm-lock.yaml
generated
2
pnpm-lock.yaml
generated
|
@ -8865,12 +8865,10 @@ packages:
|
|||
|
||||
libsql@0.3.19:
|
||||
resolution: {integrity: sha512-Aj5cQ5uk/6fHdmeW0TiXK42FqUlwx7ytmMLPSaUQPin5HKKKuUPD62MAbN4OEweGBBI7q1BekoEN4gPUEL6MZA==}
|
||||
cpu: [x64, arm64, wasm32]
|
||||
os: [darwin, linux, win32]
|
||||
|
||||
libsql@0.4.1:
|
||||
resolution: {integrity: sha512-qZlR9Yu1zMBeLChzkE/cKfoKV3Esp9cn9Vx5Zirn4AVhDWPcjYhKwbtJcMuHehgk3mH+fJr9qW+3vesBWbQpBg==}
|
||||
cpu: [x64, arm64, wasm32]
|
||||
os: [darwin, linux, win32]
|
||||
|
||||
lilconfig@2.1.0:
|
||||
|
|
Loading…
Add table
Reference in a new issue