summaryrefslogtreecommitdiff
path: root/packages/markdown-support/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/markdown-support/src')
-rw-r--r--packages/markdown-support/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/markdown-support/src/index.ts b/packages/markdown-support/src/index.ts
index f311efa7c..f3ceda1a1 100644
--- a/packages/markdown-support/src/index.ts
+++ b/packages/markdown-support/src/index.ts
@@ -68,7 +68,7 @@ export async function renderMarkdown(content: string, opts?: MarkdownRenderingOp
}
return {
- astro: { headers, source: content },
+ astro: { headers, source: content, html: result.toString() },
content: result.toString(),
};
}