MarkdownIt
UI Extension
markdown-it is a fast Markdown parser with 100% CommonMark support, extensible syntax, and plugin architecture.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #160
KEY FEATURES
CommonMark compliant
Plugin architecture
Syntax extensions
Custom rules
Linkification
Tables
Footnotes
Usage Example
Here's how you'll use MarkdownIt with Oorian once the extension is available:
Java
// Create and configure MarkdownIt component
MarkdownIt component = new MarkdownIt();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, MarkdownItEvent.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.