import React from 'react'; import ContentSection from '../ContentSection/ContentSection'; interface PropTypes { data: string; } interface RawLinesPropType { rawLines: string[]; level?: number; } const header = (level: number): string => { return `^#{${level}} .*$`; }; const Content: React.FC = ({ rawLines }) => { const plainText = rawLines.join(); return

{plainText}

; } const Level: React.FC = ({ rawLines, level = 0 }) => { const name = rawLines[0].slice(level); const contentSize = rawLines.findIndex(line => line.match(header(level + 1))); const rawContent = (contentSize > 0) ? rawLines.slice(1, contentSize) : rawLines.slice(1); const rawChildren = rawLines.slice(contentSize); const childrenLineGroups = rawChildren.reduce((acc: any[], cur: string) => { if (cur.match(header(level + 1))) acc.push([]); if (acc.length) acc[acc.length - 1].push(cur); return acc; }, []); const children = childrenLineGroups.map(lineGroup => ) return level ? ( {children} ) : ( <> {children} ); } const Markdown: React.FC = ({ data }) => { const rawLines = data.split('\n'); return }; export default Markdown;