mirror of
https://github.com/purocean/yn.git
synced 2026-08-30 17:47:18 +08:00
e9731f08a6
Agent-Logs-Url: https://github.com/purocean/yn/sessions/423ca3b8-9674-4d0f-98d1-bc1fd5c33c5d Co-authored-by: purocean <7115690+purocean@users.noreply.github.com>
2.2 KiB
2.2 KiB
Multi-Markdown Table Test
This document tests advanced table features provided by markdown-it-multimd-table.
Basic Table
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| A1 | A2 | A3 |
| B1 | B2 | B3 |
Multiline Cells
Enable with multimd-multiline: true in render settings.
| Feature | Description |
|---|---|
| Multiline | This cell spans \ |
| multiple lines using \ | |
| the backslash continuation | |
| Single | This is a single line cell |
Column Span
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| A1 | A2 | A3 |
| Merged Cell | ||
| C1 | Merged Cell |
Row Span
Enable with multimd-rowspan: true in render settings.
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| A1 | A2 | A3 |
| ^^ | B2 | B3 |
| C1 | C2 | ^^ |
The ^^ indicates the cell above spans into this row.
Headerless Table
Enable with multimd-headerless: true in render settings.
| A1 | A2 | A3 |
| B1 | B2 | B3 |
Multi-body Table
Enable with multimd-multibody: true in render settings.
| Header 1 | Header 2 |
|---|---|
| Body 1 A | Body 1 B |
| Body 1 C | Body 1 D |
| ---------- | ---------- |
| Body 2 A | Body 2 B |
| Body 2 C | Body 2 D |
Complex Table
| Project | Status | Priority | Notes |
|---|---|---|---|
| Feature A | ✅ Done | High | Merged Cell |
| Feature B | 🔄 In Progress | Medium | |
| Feature C | ❌ Blocked | Low | Waiting for \ |
| dependency resolution |
Table with Alignment and Formatting
| Left | Center | Right |
|---|---|---|
| Bold | Italic | Code |
| Link | ==Mark== | |
| Normal | E=mc^2 |
😄 |
Notes
multimd-multiline: Enable multi-line cells using\continuationmultimd-rowspan: Enable row spanning using^^markermultimd-headerless: Allow tables without header rowsmultimd-multibody: Allow multiple table bodies separated by horizontal rules- Column spanning uses empty cells (
||)