Plugin Directory

Extend Editora with 40+ powerful plugins

Enterprise Plugin Catalog

Advanced workflows are available via @editora/plugins/enterprise. Full/lite/enterprise bundles are free and customizable.

Open Enterprise Plugin Guide (React + Web Components) →

All Enterprise Plugins

  • Mention
  • Track Changes
  • Version Diff
  • Conditional Content
  • Data Binding
  • Content Rules
  • Citations
  • Approval Workflow
  • PII Redaction
  • Smart Paste
  • Blocks Library
  • Document Schema
  • Translation Workflow
  • Slash Commands
  • Spell Check
  • A11y Checker
  • Comments
  • Merge Tag
  • Template
  • Media Manager
  • Document Manager

Available Plugins

Enhance your editor with these carefully crafted plugins. Each can be installed independently and configured for your needs.

Media Manager

Upload, manage, and insert media files with drag-and-drop support.

Learn More

Tables

Create and edit tables with advanced formatting options.

Learn More

Code Sample

Insert and highlight code samples with syntax highlighting.

Learn More

Checklist

Create interactive task lists and checklists.

Learn More

Templates

Use reusable content templates for faster document creation.

Learn More

Comments

Enable collaborative commenting and discussions on content.

Learn More

Image Plugin

Advanced image manipulation including resize and crop.

Learn More

Link Manager

Enhanced link management with SEO optimization options.

Learn More

Print Export

Export and print content with beautiful formatting.

Learn More

Preview Mode

Live preview of your content as you edit.

Learn More
⏱️

History

Unlimited undo/redo with complete revision history.

Learn More

Spell Check

Real-time spell checking and grammar assistance.

Learn More

Emojis

Insert emojis and emoticons with easy picker.

Learn More

Special Characters

Access library of special and unicode characters.

Learn More

Math Equations

Insert and render LaTeX mathematical equations.

Learn More

Document Manager

Organize and manage multiple documents efficiently.

Learn More

Popular Plugin Combinations

Start with these recommended plugin combinations for common use cases.

Blog Editor

Perfect for content creators and bloggers.

  • ✓ Media Manager
  • ✓ Code Sample
  • ✓ Templates
  • ✓ Link Manager

Technical Documentation

Ideal for API docs and technical guides.

  • ✓ Code Sample
  • ✓ Tables
  • ✓ Math Equations
  • ✓ Special Characters

Collaborative Platform

Perfect for team editing and feedback.

  • ✓ Comments
  • ✓ History
  • ✓ Document Manager
  • ✓ Preview Mode

Create Custom Plugins

Editora is highly extensible. Create your own plugins to add custom functionality.

Basic Plugin Structure

import { Plugin } from '@editora/core';

export const MyPlugin: Plugin = {
 name: 'my-plugin',
 version: '1.0.1',
 install(editor) {
 // Add your plugin functionality here
 editor.addCommand('myCommand', () => {
 console.log('Plugin command executed');
 });
 }
};

// Register the plugin
editor.use(MyPlugin);

For more details on plugin development, visit the API documentation or check the GitHub repository.


Installation

Install any plugin using npm or your preferred package manager.

Using npm

npm install @editora/plugin-[name]

Using Yarn

yarn add @editora/plugin-[name]

Browser (CDN)

<script src="https://cdn.jsdelivr.net/npm/@editora/plugin-[name]"></script>