This template provides a minimal setup to get React working in Vite with HMR, ESLint, and a lightweight markdown renderer.
- Custom JSX Markdown Renderer with support for:
- Headings (
#to####) - Inline styles: bold, italic,
strike,inline code - Links:
[text](url) - Images:
 - Code blocks:
code
- Headings (
The MarkdownRenderer component allows rendering markdown to JSX directly with no external dependencies.
import MarkdownRenderer from 'react-markdown-renderer-regie';
<MarkdownRenderer content={markdownString} />