MCPcopy
hub / github.com/unicity-sphere/sphere / MarkdownContentProps

Interface MarkdownContentProps

src/utils/markdown.tsx:613–617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

611// unordered lists (* or - followed by space), HTML tags: <br>, <b>, <strong>, <i>, <em>, <code>, <a href="">
612// Links: [text](url), plain URLs (https://... http://...)
613interface MarkdownContentProps {
614 text: string;
615 /** Custom class for @mentions. Defaults to "text-white" */
616 mentionClassName?: string;
617}
618
619export function MarkdownContent({ text, mentionClassName = 'text-white' }: MarkdownContentProps) {
620 const parts: React.ReactNode[] = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected