Rich Table
approvedby sdking
Rich tables with merges, styles, and choice columns, wikilinks inside fenced code blocks. - This plugin has not been manually reviewed by Obsidian staff.
๐ Merge ย ยทย ๐จ Style ย ยทย ๐ท๏ธ Type ย ยทย ๐ Wikilink ย ยทย โ๏ธ Reorder ย ยทย โ๏ธ Resize ย ยทย ๐ Math ย ยทย ๐ Lists
Why? ยท Demo ยท Format ยท Features ยท Install ยท ไธญๆ
Follow on WeChat for more Obsidian plugins & tools
Obsidian only. The
rich-tablefenced code block is rendered by the plugin โ it won't display in standard Markdown editors or GitHub previews.
Rich, interactive tables for Obsidian โ with cell merges, inline editing, wikilink autocomplete, typed columns, drag-to-reorder, math formulas, lists, images, and more.
Why Rich Table?
| Feature | Native tables | Rich Table |
|---|---|---|
| Cell merging | โ | โ |
| Click-to-edit cells inline | โ | โ |
[[wikilink]] autocomplete in cells | โ | โ |
| Math formulas (KaTeX) in cells | โ | โ |
| Lists, bold, italic, links, images in cells | โ | โ |
| Multi-line cell content | โ | โ |
| Typed columns (status, priorityโฆ) | โ | โ |
| Per-cell style (bg color, font sizeโฆ) | โ | โ |
| Column alignment (left / center / right) | โ | โ |
| Table title & footer notes | โ | โ |
| Drag to reorder rows / columns | โ | โ |
| Drag to resize column width / row height | โ | โ |
| Insert / hide / delete rows & columns | โ | โ |
| Row filtering by value | โ | โ |
| Per-table lock | โ | โ |
Demo
โฌ๏ธ Upgrading from v0.x? โ v1 โ v2 migration: the upgrade banner on old-format tables, converting in one click or keeping the old format read-only.
1 ยท Quick start from template โ or a blank table
An empty rich-table code block shows one button per built-in template (currently a full-featured Demo and a Cornell Notes layout) plus Insert blank table, which opens a Word/Sheets-style size picker โ hover an 8ร6 grid to preview and click to confirm a row/column count, or type exact numbers for anything past the visible grid. Hovering any button live-previews that option below; with nothing hovered, the default template previews. Templates are auto-discovered from src/templates/*.yaml (same pattern as themes) โ no code changes needed to add one.

2 ยท Merge cells โ drag-select โ Merge in popup

3 ยท Typed columns & cell style โ click to pick value, double-click to set style

4 ยท Drag to reorder & row/column ops โ โ ฟ handle + double-click menu

5 ยท Drag to resize โ column header right edge ยท row bottom edge

6 ยท Title & footer โ click to edit, Shift+Enter for multi-line

7 ยท Column filtering โ filter rows to focus on what matters

8 ยท Rich cell content โ math ยท bold/italic ยท links ยท images ยท lists ยท multi-line
๐ฌ Demo GIF coming soon
9 ยท Copy/paste interop with Excel & Markdown โ paste values pasted from Excel/Sheets straight into a cell (detected via clipboard HTML); copy a selection out as an Excel-compatible table or as a Markdown table, from the selection/cell/header menus
๐ฌ Demo GIF coming soon
10 ยท Row sorting โ column selector popup: one-time sort or live auto-sort with a header indicator

11 ยท Summary/aggregate rows โ Sum/Average/Min/Max/Count via the ฮฃ icon or column selector popup; per-row remove and reorder

12 ยท Collapse/expand table โ fold-icon button hides/shows the body while keeping the title and header row visible

13 ยท Table lock โ ๐ icon disables all graphical editing for that table

14 ยท Auto-fit all โ โ icon fits every column width and row height to its content in one click

15 ยท Theme picker โ ๐จ icon switches between built-in themes (academic, grid, plain)

16 ยท Split cell โ double-click a plain cell โ split into 2 rows/columns; other cells in that row/column keep their current shape
๐ฌ Demo GIF coming soon
Format
```rich-table
---
version: 2
title: Project tracker
columns:
- id: c_000000
name: Task
width: 200
- id: c_000001
name: Status
type: task-status
width: 110
rows:
- id: r_000000
cells:
c_000000: "**Design** โ architecture review"
c_000001: done
- id: r_000001
cells:
c_000000: Build
c_000001: pending
- id: r_000002
cells:
c_000000: |-
- Write tests
- Fix edge cases
c_000001: todo
merges:
- anchor: r_000000.c_000000
end: r_000001.c_000000
styles:
- target: header
bold: true
bg: "#e8f0fe"
- target: r_000000.c_000001
bg: "#f0fdf4"
footer: "Updated weekly ยท click any cell to edit"
---
<!-- Generated by Rich Table. Do not edit below โ data source is the YAML front-matter above. -->
| Task | Status |
| ----------------------------- | ------- |
| **Design** โ architecture ... | done |
| Build | pending |
| - Write tests<br>- Fix edge.. | todo |
```
The YAML front-matter is the only data source. The pipe table below the <!-- Generated โฆ --> comment is a read-only mirror regenerated on every write-back and can be safely ignored.
Cell content supports full Obsidian Markdown: **bold**, *italic*, [[wikilinks]], [links](url), , - lists, $math$, <br> for line breaks.
Style targets (v2 ID-based):
| Target | Meaning |
|---|---|
header | Entire header row |
header.c_xxx | Single header cell |
r_xxx | Entire data row |
c_xxx | Entire column (including header) |
r_aaa:r_bbb | Row range |
c_aaa:c_bbb | Column range |
r_aaa.c_aaa:r_bbb.c_bbb | Rectangle range |
r_xxx.c_yyy | Single data cell |
Upgrading from v0.x? Tables written in the old format automatically show an upgrade banner. Click Convert to new format for one-click migration, or Keep old format to continue reading without converting.
Themes
Add theme: to the YAML front-matter to apply a built-in visual theme:
theme: academic # LaTeX booktabs style โ three horizontal rules, no grid lines
theme: grid # Excel "All Borders" style โ full grid, bold outer frame + header rule
theme: plain # Colorful gradient header + animated border
| Theme | Description |
|---|---|
| (none) | Default โ no special styling |
academic ๐ | Inspired by LaTeX's booktabs package: toprule / midrule / bottomrule, no vertical lines, no cell backgrounds |
grid ๐ฒ | Full grid on every cell, a bolder outer frame, and a bolder rule separating the header from the data |
plain ๐ | Animated rainbow border, gradient header with breathing effect, cursor-reactive row glow |
Themes are purely visual โ they never affect data or layout.
Quick customization without a theme: for a small tweak (not a full theme), set one of these CSS variables on .bt-render-root in an Obsidian CSS snippet โ no selectors needed:
| Variable | Controls | Default |
|---|---|---|
--bt-border-outer | Table's outer edge | none |
--bt-cell-border (+ -top/-right/-bottom/-left) | Gridlines between cells | none |
--bt-cell-bg | Data cell background | transparent |
--bt-header-bg | Header cell background | theme default |
.bt-render-root {
--bt-header-bg: #223;
--bt-cell-bg: #fafafa;
--bt-border-outer: 2px solid #888;
}
A manually-set per-cell style (via the style panel) always wins over both themes and these variables.
Features & Roadmap
| Feature | |
|---|---|
| Editing | |
Single-click any cell to edit โ text, [[wikilinks]], bold, italic | โ |
[[ triggers Obsidian's native file & heading autocomplete | โ |
| Shift+Enter for line breaks inside the cell editor | โ |
| Double-click / right-click menu โ insert, delete, hide rows & columns; merge cells; set style; change column type | โ |
| Column alignment (left / center / right) โ in the double-click header menu | โ |
| Keyboard navigation โ arrow keys between cells, Tab to advance | ๐ |
| Paste values from Excel / Sheets โ Ctrl+V into a cell, detected via clipboard HTML | โ |
| Rich cell content | |
Math formulas โ inline KaTeX: $E=mc^2$ | โ |
Full Markdown: bold, italic, ==highlight==, [[wikilinks]], external links | โ |
Images โ inline  or ![[local.png]]; drag image edge to resize | โ |
Lists โ lines starting with - render as compact bullet lists | โ |
Multi-line โ <br> tag or Shift+Enter in the editor | โ |
| Typed columns | |
| Colored pill badges; single-click to pick value from dropdown | โ |
Built-in types: task-status ยท priority ยท boolean ยท rating ยท effort ยท approval | โ |
| Custom types defined in Settings โ Rich Table | โ |
| Row filtering โ funnel icon on each column header; click to open a checkbox panel and filter by value | โ |
| Filter status bar โ "Showing X of Y ยท Clear" unified with sort / aggregate info | ๐ |
| Row sorting โ via the column selector's popup menu: one-time (reorders rows once) or live (auto-sorts, shown by an indicator until cleared) | โ |
| Summary rows โ Sum / Average / Min / Max / Count, table-wide (toggle via the ฮฃ icon in the left control column, or the column selector's popup menu); one row per active statistic at the table's bottom, computed over currently-visible rows, columns without meaningful data left blank. Each summary row gets its own selector cell (remove) and drag grip (reorder) | โ |
Custom formulas โ type Excel-style syntax (=SUM(A1:B3)); cell references get converted to this table's own stable row/column IDs on entry, so they survive inserts/reorders instead of drifting like raw A1 coordinates would. Same-sheet first; cross-sheet references are a separate, later phase | ๐ |
| Styles | |
| Per-cell bg color, text color, and font size โ via panel or YAML | โ |
| Row / column selector strips โ hover to reveal, click or drag to style entire rows/columns | โ |
| Per-table lock โ click the ๐ icon at the top-left corner to disable / re-enable all editing | โ |
Themes โ set theme: academic (booktabs), theme: grid (full grid + bold outer/header rules), theme: plain (colorful gradient + animated border) | โ |
| Custom cell padding (top / bottom / left / right) | ๐ |
| Collapsible table โ fold-icon button in the top-left corner shows/hides the table body, keeping the title and header row visible | โ |
| Conditional formatting โ auto-apply styles based on cell value rules | ๐ |
| Progress bar column type | ๐ |
| Merges | |
| Cell merging โ drag-select โ Merge in popup, or declare in YAML | โ |
| Split a plain cell into 2 rows or 2 columns โ double-click menu; other cells in that row/column keep their current shape (merged or not) | โ |
| Copy selection to Excel / Sheets or as a Markdown table โ selection/cell/header menus | โ |
| Merge / style state preserved when copying to Excel | ๐ |
| Table structure | |
| Hover selector strips to reveal โ ฟ drag grips; drag to reorder rows / columns | โ |
| Hover selector strips to reveal resize seams; drag to resize, double-click to auto-fit | โ |
| Auto-fit-all button (top-left โ) โ one click to auto-fit every column and row | โ |
| Hover bottom / right edge โ + strips to append rows / columns | โ |
| Hide and show rows / columns | โ |
| Freeze header row / first N columns | ๐ |
| Row grouping โ collapsible groups | ๐ |
| Views โ alternate ways to browse the same rows/columns, switched via the layout-grid icon (or a Kanban/Calendar board's own icon column) | |
| Kanban board โ group rows into lanes by any choice-typed column; drag a card to another lane to change its value | โ |
Calendar โ place rows on a month grid by any date-typed column; drag an event to reschedule it, undated rows list in an Unscheduled tray below | โ |
| Multi-sheet โ Excel-style tab bar at the bottom once a table has 2+ sheets | |
| Left-toolbar button converts a single-sheet table into a multi-sheet workbook; each sheet has its own columns/rows/merges/styles/views | โ |
| Tabs: click to switch, click-again/double-click to rename, drag to reorder, right-click for rename / tab color / delete | โ |
| Title & annotations | |
| Table title above, footer notes below โ click to edit inline | โ |
| Cell comments โ floating notes shown on hover | ๐ |
| Excel interop | |
Open/edit an external .xlsx file directly (e.g. excel: path/to/file.xlsx in the front matter) โ same editing UI as a normal code-block table, backed by the actual spreadsheet file | ๐ |
Known Issues
| Issue | Workaround |
|---|---|
Reading mode: v2 tables remain interactive โ In Obsidian reading view, v2-format tables still show hover strips and allow editing. The allowReadingViewEdit setting has no effect on v2 tables. v1 tables (awaiting upgrade) are correctly read-only. | Use the ๐ lock button to prevent accidental edits in reading mode. |
Installation
Community plugin browser (recommended):
- Open Settings โ Community plugins โ Browse
- Search for Rich Table and install
- Enable the plugin
Or: Open in Obsidian
Manual: copy main.js, manifest.json, styles.css to <vault>/.obsidian/plugins/rich-table/
Minimum Obsidian version: 1.8.7
Settings
Open Settings โ Rich Table to configure the plugin.
| Setting | Default | Description |
|---|---|---|
| Allow editing in reading view | Off | When off, all interactive behaviour (hover strips, click-to-edit, panels, dropdowns) is disabled in Obsidian's reading view. Live preview / source mode is always interactive. |
| Single-click to edit | Off | When on, a single click on a cell enters edit mode immediately (no delay), and the style panel opens with Ctrl/Cmd+click instead of double-click. When off (default), single click enters edit after a short delay and double click opens the style panel. |
| Custom types | โ | Define custom choice-column types with labels and colors. |
Claude Code Skill
A SKILL.md is included for use with Claude Code. Once installed, Claude agents can create and modify rich-table blocks directly in your vault โ adding rows, applying styles, defining merges โ without you having to remember the syntax.
cp SKILL.md ~/.claude/skills/rich-table/SKILL.md
Then ask Claude: "Create a project tracker table in my note using rich-table".
License
AGPL-3.0 โ derivatives must be open-sourced under the same license.
For commercial licensing: sdkxyx@gmail.com
Support the Project
Rich Table is free and open-source under the AGPL-3.0 license. If this plugin has improved your workflow, you can support its ongoing development with a voluntary donation. Every contribution helps fix bugs, add new features, and maintain compatibility with future Obsidian updates.
๐ณ PayPal
๐งง WeChat Pay / Alipay
| WeChat Pay | Alipay |
|---|---|
![]() | ![]() |
Thank you for your support! ๐
Feedback
Issues and feature requests: GitHub Issues
For plugin developers
Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.
1 ยท Quick start from template โ or a blank table
