UNPKG

@humanspeak/svelte-markdown

Version:

Fast, customizable markdown renderer for Svelte with built-in caching, TypeScript support, and Svelte 5 runes

8 lines (7 loc) 177 B
interface Props { lang: string; text: string; } declare const Code: import("svelte").Component<Props, {}, "">; type Code = ReturnType<typeof Code>; export default Code;