MarkedJs

UI Extension

marked.js is a fast, low-level Markdown compiler for parsing Markdown without caching or blocking. Supports GitHub Flavored Markdown, custom renderers, and extensible tokenization.

Status
In Development
Supported Version
TBD
Licensing
Open Source
Priority
Rank #30
KEY FEATURES
Markdown to HTML
GitHub Flavored Markdown
Custom renderers
Extensible tokenizer
Syntax highlighting
Tables support
Fast parsing
Usage Example

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

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

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

// Register for events using Oorian's event model
component.registerForEvent(this, MarkedJsEvent.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.