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.

7 lines (6 loc) 253 B
/** Placeholder renderer for blocked markdown token types. Displays the raw source text. */ declare const Unsupported: import("svelte").Component<{ raw: any; }, {}, "">; type Unsupported = ReturnType<typeof Unsupported>; export default Unsupported;