import React from 'react'; import ReactDOM from 'react-dom'; import { Link } from 'react-router'; import hljs from 'highlight.js'; import antd from '../../'; function isHeading(type) { return /h[1-6]/i.test(type); } function mdLangToHljsLang(lang) { return lang.toLowerCase() === 'jsx' ? 'javascript' : lang; } export function objectToComponent(pathname, object, index) { if (object === null) return; if (React.isValidElement(object)) { return React.cloneElement(object, { key: index }); } if (typeof object === 'function') { return React.cloneElement(object(React, ReactDOM, antd, antd), { key: index }); } if (typeof object === 'string') { return { object }; } const children = object.children; if (object.type === 'html') { return React.createElement('div', { className: 'markdown', key: index, dangerouslySetInnerHTML: { __html: children } }); } if (isHeading(object.type)) { return React.createElement(object.type, { key: index, id: children, }, [ , #, ]); } if (object.type === 'code') { const highlightedCode = hljs.highlight( mdLangToHljsLang(object.props.lang), children ).value; return (