UNPKG

@asafarim/simple-md-viewer

Version:

A professional markdown viewer with file tree navigation, directory content browsing, and advanced YAML front matter support

9 lines (8 loc) 274 B
import React from 'react'; interface MarkdownViewerProps { content: string; showFrontMatter?: boolean; frontMatterMode?: 'full' | 'minimal' | 'header-only' | 'hidden'; } declare const MarkdownViewer: React.FC<MarkdownViewerProps>; export default MarkdownViewer;