simple-image-editorjs
Version:
SimpleImage Tool for Editor.js
25 lines (19 loc) • 371 B
HTML
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
<script src="../dist/bundle.js"></script>
</head>
<body>
<div id="editorjs"></div>
<script>
const editor = new EditorJS({
autofocus: true,
tools: {
header: {
class: SimpleImage
}
}
});
</script>
</body>
</html>