Public
Like
markdownToHtml
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Converts markdown string into HTML string. Usage example:
import { markdownToHtml } from "https://esm.town/v/xkonti/markdownToHtml";
const markdown = `
# Hello there
How are you doing *these* days?
`;
const html = await markdownToHtml(markdown);
console.log(html)
Migrated from folder: Utilities/markdownToHtml