36 Plugins

Built-in Plugins

SynclineMDX ships with 36 plugins covering formatting, media, code, diagrams, embeds, and more. Enable only what you need to keep bundles lean. Click any category below for detailed documentation, configuration options, and examples.

Selecting Plugins

Pass an array of plugin names, or 'all' to enable every plugin:

editor.ts

import { createEditor } from '@synclineapi/mdx-editor';

// Enable only specific plugins
const editor = createEditor({
  container: '#editor',
  plugins: ['heading', 'bold', 'italic', 'code-block', 'table'],
});

// Enable all built-in plugins (default behaviour)
const editorFull = createEditor({
  container: '#editor',
  plugins: 'all',
});
SynclineMDX

© 2026 SynclineMDX Editor. All rights reserved.