EditorJs

UI Extension

Editor.js is a block-styled editor with a clean JSON output. Each block is a separate content unit with its own plugin.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #107
KEY FEATURES
Block-styled editing
Clean JSON output
Plugin system
Inline tools
Block tunes
Read-only mode
Collaboration ready
Usage Example

Here's how you'll use EditorJs with Oorian once the extension is available:

Java
// Create and configure EditorJs component
EditorJs component = new EditorJs();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, EditorJsEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.