MD Toolbox
approvedby knowckx
Transpose Markdown tables directly in the editor. - This plugin has not been manually reviewed by Obsidian staff.
MD Toolbox
Transpose Markdown tables directly in Obsidian.
Usage
- Place the cursor anywhere inside a Markdown table.
- Open the command palette and select Transpose Markdown table.
For example:
| A | B | C | D |
|---|---|---|---|
| 1 | 2 | 3 | 4 |
becomes:
| A | 1 |
|---|---|
| B | 2 |
| C | 3 |
| D | 4 |
The command works in source mode and Live Preview. After transposition, column alignment is reset to the default Markdown alignment. Missing cells in uneven rows are left empty.
Manual installation
Install dependencies and build the plugin:
pnpm install
pnpm build
Then copy the generated main.js and manifest.json into:
<Vault>/.obsidian/plugins/ob-toolbox/
Reload Obsidian, then enable the plugin under Settings → Community plugins.
Privacy
MD Toolbox works entirely locally. It does not collect analytics or send vault content to external services.
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.