2023-03-27 22:04:37 +00:00
|
|
|
import type { Config as MarkdocConfig } from '@markdoc/markdoc';
|
|
|
|
import Markdoc from '@markdoc/markdoc';
|
|
|
|
//@ts-expect-error Cannot find module 'astro:assets' or its corresponding type declarations.
|
|
|
|
import { Image } from 'astro:assets';
|
|
|
|
|
|
|
|
// Separate module to only import `astro:assets` when
|
|
|
|
// `experimental.assets` flag is set in a project.
|
2023-05-17 13:13:10 +00:00
|
|
|
// TODO: merge with `./runtime.ts` when `experimental.assets` is baselined.
|
2023-03-27 22:04:37 +00:00
|
|
|
export const experimentalAssetsConfig: MarkdocConfig = {
|
|
|
|
nodes: {
|
|
|
|
image: {
|
|
|
|
attributes: {
|
|
|
|
...Markdoc.nodes.image.attributes,
|
|
|
|
__optimizedSrc: { type: 'Object' },
|
|
|
|
},
|
|
|
|
transform(node, config) {
|
|
|
|
const attributes = node.transformAttributes(config);
|
|
|
|
const children = node.transformChildren(config);
|
|
|
|
|
|
|
|
if (node.type === 'image' && '__optimizedSrc' in node.attributes) {
|
|
|
|
const { __optimizedSrc, ...rest } = node.attributes;
|
|
|
|
return new Markdoc.Tag(Image, { ...rest, src: __optimizedSrc }, children);
|
|
|
|
} else {
|
|
|
|
return new Markdoc.Tag('img', attributes, children);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|