UNPKG

@humanspeak/svelte-markdown

Version:

Markdown and HTML renderer for Svelte 5 — built for rendering streaming AI agent output from Claude Code, ChatGPT, and agentic workflows. XSS-safe defaults, streaming-aware sanitization, token caching, TypeScript types, and Svelte 5 runes.

11 lines (10 loc) 269 B
interface Footnote { id: string; text: string; } interface Props { footnotes: Footnote[]; } declare const FootnoteSection: import("svelte").Component<Props, {}, "">; type FootnoteSection = ReturnType<typeof FootnoteSection>; export default FootnoteSection;