Getting Started
Include Iblize on your project
<script src="https://unpkg.com/iblize/dist/iblize.js"></script>$ npm install iblize --saveCreate editor container
<div id="editor"></div>#editor { width: 100%; height: 400px }Create initialization
// use selector
const iblize = new Iblize("#editor");
// use dom element
const iblize = new Iblize(document.querySelector("#editor"));Set editor default value (optional)
Listening change
Last updated