@techie_doubts/editor-plugin-table-merged-cell
v3.1.0
Published
TOAST UI Editor : Table Merged Cell Plugin
Downloads
130
Maintainers
Readme
TOAST UI Editor : Table Merged Cell Plugin
This is a plugin of TOAST UI Editor to merge table columns.

🚩 Table of Contents
📁 Bundle File Structure
Files Distributed on npm
- node_modules/
- @techie_doubts/
- editor-plugin-table-merged-cell/
- dist/
- td-editor-plugin-table-merged-cell.js
- td-editor-plugin-table-merged-cell.cssFiles Distributed on CDN
The bundle files include all dependencies of this plugin.
- uicdn.toast.com/
- editor-plugin-table-merged-cell/
- latest/
- td-editor-plugin-table-merged-cell.js
- td-editor-plugin-table-merged-cell.min.js
- td-editor-plugin-table-merged-cell.css
- td-editor-plugin-table-merged-cell.min.css📦 Usage npm
To use the plugin, @techie_doubts/tui.editor.2026 must be installed.
Ref. Getting Started
Install
$ npm install @techie_doubts/editor-plugin-table-merged-cellImport Plugin
ES Modules
import '@techie_doubts/editor-plugin-table-merged-cell/dist/td-editor-plugin-table-merged-cell.css';
import tableMergedCell from '@techie_doubts/editor-plugin-table-merged-cell';CommonJS
require('@techie_doubts/editor-plugin-table-merged-cell/dist/td-editor-plugin-table-merged-cell.css');
const tableMergedCell = require('@techie_doubts/editor-plugin-table-merged-cell');Create Instance
Basic
import '@techie_doubts/editor-plugin-table-merged-cell/dist/td-editor-plugin-table-merged-cell.css';
import Editor from '@techie_doubts/tui.editor.2026';
import tableMergedCell from '@techie_doubts/editor-plugin-table-merged-cell';
const editor = new Editor({
// ...
plugins: [tableMergedCell]
});With Viewer
import '@techie_doubts/editor-plugin-table-merged-cell/dist/td-editor-plugin-table-merged-cell.css';
import Viewer from '@techie_doubts/tui.editor.2026/dist/td-editor-viewer';
import tableMergedCell from '@techie_doubts/editor-plugin-table-merged-cell';
const viewer = new Viewer({
// ...
plugins: [tableMergedCell]
});or
import '@techie_doubts/editor-plugin-table-merged-cell/dist/td-editor-plugin-table-merged-cell.css';
import Editor from '@techie_doubts/tui.editor.2026';
import tableMergedCell from '@techie_doubts/editor-plugin-table-merged-cell';
const viewer = Editor.factory({
// ...
plugins: [tableMergedCell],
viewer: true
});🗂 Usage CDN
To use the plugin, the CDN files(CSS, Script) of @techie_doubts/tui.editor.2026 must be included.
Include Files
...
<head>
...
<link
rel="stylesheet"
href="https://uicdn.toast.com/editor-plugin-table-merged-cell/latest/td-editor-plugin-table-merged-cell.min.css"
/>
...
</head>
<body>
...
<!-- Editor -->
<script src="https://uicdn.toast.com/editor/latest/td-editor-all.min.js"></script>
<!-- Editor's Plugin -->
<script src="https://uicdn.toast.com/editor-plugin-table-merged-cell/latest/td-editor-plugin-table-merged-cell.min.js"></script>
...
</body>
...Create Instance
Basic
const { Editor } = toastui;
const { tableMergedCell } = Editor.plugin;
const editor = new Editor({
// ...
plugins: [tableMergedCell]
});With Viewer
const Viewer = toastui.Editor;
const { tableMergedCell } = Viewer.plugin;
const viewer = new Viewer({
// ...
plugins: [tableMergedCell]
});or
const { Editor } = toastui;
const { tableMergedCell } = Editor.plugin;
const viewer = Editor.factory({
// ...
plugins: [tableMergedCell],
viewer: true
});