laobubu / HyperMD

A WYSIWYG Markdown Editor for browsers. Break the Wall between writing and previewing.
MIT License
1.47k stars 137 forks source link

How to import this as ES Module? #74

Closed kota-yata closed 3 years ago

kota-yata commented 3 years ago

I tried

import hypermd from "hypermd";

but it doesn't work.

Armando-GarzaTech commented 3 years ago

try:

import * as HyperMD from 'hypermd';

and for powerpack items:

import 'hypermd/powerpack/fold-code-with-flowchart';
kota-yata commented 3 years ago

thx