UNPKG

slide-cast

Version:

Web presentation tool with video recording included

9 lines (7 loc) 222 B
import { md2html } from 'jsda-kit/iso/md2html.js'; export default async function importMd(path) { const response = await fetch(path); const text = await response.text(); return md2html(text); } export { importMd };