--- import { Debug } from 'astro/components'; import { markdownToHtml } from '../lib/markdown'; export interface Props { text: string; } const { text } = Astro.props; ---