UNPKG

markdown-text-editor

Version:

A simple JavaScript Markdown editor plugin with real-time preview, and easy integration.

8 lines (5 loc) 133 B
// utils/markdownUtils.js import { marked } from 'marked'; export function renderMarkdown(content) { return marked(content); }