Table Cell Extras adds lightweight inline formatting tools to WordPress’s standard table block.
All features appear only inside table block (core/table) cells.
Features:
- Text size — Change selected text to Small (S), Medium (M), or Large (L)
- Row spacing (top) — Add margin-top with a slider (0.1–2.0 lines)
- Row spacing (bottom) — Add margin-bottom with a slider (0.1–2.0 lines)
- Pseudo unordered list — Convert selected lines to bullet-point style (span-based)
- Pseudo ordered list — Convert selected lines to numbered list style (CSS counter)
- Horizontal rule — Insert a divider line at the cursor position
Why “pseudo” lists?
Gutenberg’s RichText sanitizes block-level elements such as <ul>, <ol>, and <li> inside table cells. This plugin uses <span> elements with CSS to achieve the same visual result while remaining fully compatible with Gutenberg.
Notes
- This plugin does not register any custom blocks; it extends the existing core/table block.
- No external requests are made.
- Lightweight — a single JS file and a single CSS file.