window.nextgenEditor.addHook('hookInit', () => { window.nextgenEditor.addButtonGroup('quark-open-publishing', { label: 'Quark Open Publishing', }); }); window.nextgenEditor.addShortcode('h5p', { type: 'block', plugin: 'quark-open-publishing', title: 'H5P', button: { label: 'H5P', group: 'quark-open-publishing', }, attributes: { url: { type: String, innerHTML: true, title: 'URL', widget: 'input-text', default: '', }, }, titlebar({ attributes }) { return `URL: ${attributes.url || 'No URL provided'}`; }, content({ attributes }) { return attributes.url ? `
` : '
No URL provided
'; }, preserve: { block: [ 'iframe', 'script', ], }, });