A simple Obsidian plugin that converts selected lists into Markdown tables.
-, *, +)- [ ], - [x])1., 2., etc.)Given this selection:
- Fruit
- apple
- banana
- Color
- red
- yellow
Flattens the list into a single-column table.
| |
| -------- |
| Fruit |
| apple |
| banana |
| Color |
| red |
| yellow |
Top-level items become column headers; nested items fill the rows below.
| Fruit | Color |
| -------- | -------- |
| apple | red |
| banana | yellow |
Top-level items become row labels; nested items fill the cells across that row.
| | | |
| -------- | -------- | -------- |
| Fruit | apple | banana |
| Color | red | yellow |