🔌 Plugin Directory

Extend Editora with 30+ powerful plugins

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>