diff options
author | 2023-05-23 12:16:50 -0400 | |
---|---|---|
committer | 2023-05-23 12:16:50 -0400 | |
commit | 57e65d247f67de61bcc3a585c2254feb61ed2e74 (patch) | |
tree | c3919841a2814969e34c108239c2a55634256613 /packages/integrations/markdoc/components/Renderer.astro | |
parent | cbdb0fdbd6dd2d19237eccab40d9253f0909bf35 (diff) | |
download | astro-57e65d247f67de61bcc3a585c2254feb61ed2e74.tar.gz astro-57e65d247f67de61bcc3a585c2254feb61ed2e74.tar.zst astro-57e65d247f67de61bcc3a585c2254feb61ed2e74.zip |
revert: markdoc asset bleed (#7178)
* revert: markdoc asset bleed
* chore: changeset
Diffstat (limited to 'packages/integrations/markdoc/components/Renderer.astro')
-rw-r--r-- | packages/integrations/markdoc/components/Renderer.astro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/integrations/markdoc/components/Renderer.astro b/packages/integrations/markdoc/components/Renderer.astro index 6571e8c71..5e2b6833a 100644 --- a/packages/integrations/markdoc/components/Renderer.astro +++ b/packages/integrations/markdoc/components/Renderer.astro @@ -1,5 +1,4 @@ --- -//! astro-head-inject import type { Config } from '@markdoc/markdoc'; import Markdoc from '@markdoc/markdoc'; import { ComponentNode, createTreeNode } from './TreeNode.js'; @@ -15,4 +14,4 @@ const ast = Markdoc.Ast.fromJSON(stringifiedAst); const content = Markdoc.transform(ast, config); --- -<ComponentNode treeNode={await createTreeNode(content)} /> +<ComponentNode treeNode={createTreeNode(content)} /> |