summaryrefslogtreecommitdiffhomepage
path: root/src/features/markdown/index.ts
blob: ff3aefac877bcb27352bed4787e7b774d093108f (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;