The package exports a single function, deltaToHtml: import { deltaToHtml } from '@luca_scorpion/quill-delta-to-html'; const quill = new Quill('#editor', {}); // Use `getContents` to get the delta from the Quill editor. const html = deltaToHtml(quill.getContents());About...