File size: 442 Bytes
cd8bd0a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import { Text } from "ink";

export function MarkdownView({ content = "" }) {
  // Render markdown as plain text with basic bold/italic stripping.
  // For rich rendering, use marked-terminal externally before passing content.
  const clean = content
    .replace(/\*\*(.+?)\*\*/g, "$1")
    .replace(/\*(.+?)\*/g, "$1")
    .replace(/`(.+?)`/g, "$1")
    .replace(/^#+\s+/gm, "");
  return <Text>{clean}</Text>;
}