UNPKG

markdown-to-poster

Version:

markdown-to-poster component renders Markdown as visually appealing social media images. The project also includes a built-in web editor that can be used as an online Markdown-to-poster editor with a simple one-click deployment.

10 lines (9 loc) 382 B
interface Md2PosterContentProps { children?: any; className?: string; markdownProps?: Record<string, any>; articleClassName?: string; } declare const Md2PosterContent: ({ children, className, markdownProps, articleClassName }: Md2PosterContentProps) => import("react/jsx-runtime").JSX.Element; export type { Md2PosterContentProps }; export default Md2PosterContent;