2a4bb23b2f
* fix: propagate assets when using document `render: null` * fix: reverse spread order * refactor: use README rec in test * chore: changeset * chore: revert unneeded changes
24 lines
584 B
Text
24 lines
584 B
Text
---
|
|
//! astro-head-inject
|
|
import type { Config } from '@markdoc/markdoc';
|
|
import Markdoc from '@markdoc/markdoc';
|
|
import { ComponentNode, createTreeNode } from './TreeNode.js';
|
|
|
|
type Props = {
|
|
config: Config;
|
|
stringifiedAst: string;
|
|
};
|
|
|
|
const { stringifiedAst, config } = Astro.props as Props;
|
|
|
|
const ast = Markdoc.Ast.fromJSON(stringifiedAst);
|
|
const content = Markdoc.transform(ast, config);
|
|
---
|
|
|
|
{
|
|
Array.isArray(content) ? (
|
|
content.map(async (c) => <ComponentNode treeNode={await createTreeNode(c)} />)
|
|
) : (
|
|
<ComponentNode treeNode={await createTreeNode(content)} />
|
|
)
|
|
}
|