2025-08-12 13:33:25 +03:00

16 lines
410 B
JSON
Executable File

<!-- required files -->
<link href="../assets/plugins/quill/dist/quill.snow.css" rel="stylesheet" />
<script src="../assets/plugins/quill/dist/quill.js"></script>
<!-- html -->
<div id="editor1">
...
</div>
<!-- javascript -->
<script>
const quill = new Quill('#editor1', {
theme: 'snow',
placeholder: 'Type something...'
});
</script>