summaryrefslogtreecommitdiffhomepage
path: root/src/features/markdown/index.ts
blob: f5406b2ac44d40df508e4cdd9fbb117d72374730 (plain)
1
2
3
4
5
6
7
8
export { renderMarkdown } from "./logic/markdown";
export { default as Markdown } from "./ui/Markdown.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
	name: "markdown",
	description: "Renders assistant messages as sanitized Markdown (GFM + syntax highlighting)",
} as const;