mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-06-27 21:21:02 -06:00
21 lines
482 B
HTML
21 lines
482 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Default</title>
|
||
|
<link rel="stylesheet" href="../../../dist/easymde.min.css">
|
||
|
<script src="../../../dist/easymde.min.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<textarea id="textarea"></textarea>
|
||
|
<script>
|
||
|
const easyMDE = new EasyMDE({
|
||
|
previewImagesInEditor: true,
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|