| 1a | 2 a |  3a |
| --- | --- | --- |
| 1<br> | 2b | 3<br>b	 |
| <br><br><br> |  | 	c |
# Project Overview

This document contains multiple tables embedded in normal text.
It is intended to test GFM table parsing.

---

## 1. Simple table

| Name | Age | City |
| ---- | --- | ---- |
| Alice | 23 | Tokyo |
| Bob | 31 | Osaka |
| Carol | 27 | Nagoya |

Some text between tables.
This should *not* be part of any table.

---

## 2. Alignment test

| Left | Center | Right |
| :--- | :----: | ----: |
| a | b | c |
| 10 | 20 | 30 |
| foo | bar | baz |

---

## 3. Table with inline formatting

| Key | Description | Example |
| --- | ----------- | ------- |
| `id` | **Primary key** | `user_001` |
| name | _Display name_ | **Alice** |
| note | Free text | `a \| b \| c` |

Note: escaped pipes should be preserved.

---

## 4. Different column count (block separation test)

| A | B |
| - | - |
| 1 | 2 |
| 3 | 4 |

Text in between.

| A | B | C | D |
| - | - | - | - |
| 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 |

---

## 5. Table without leading/trailing empty lines
| X | Y |
| - | - |
| x1 | y1 |
| x2 | y2 |
Text immediately after table.

---

## 6. Table inside a section with lists

- item 1
- item 2

| Feature | Status | Comment |
| ------- | ------ | ------- |
| parser | OK | fast |
| writer | WIP | needs tests |
| diff | TODO | later |

- item 3
- item 4

---

## 7. Mixed content, many small tables

### Metrics

| Metric | Value |
| ------ | ----- |
| rows | 120 |
| cols | 8 |

### Limits

| Name | Max |
| ---- | --- |
| rows | 1000 |
| cols | 64 |

### Flags

| Flag | Meaning |
| ---- | ------- |
| `-v` | verbose |
| `-q` | quiet |

---

## 8. Edge-ish cases

| Col1 | Col2 |
| ---- | ---- |
| trailing space | value |
| empty |  |

---

End of document.

* pukiwiki 表 [#k0258d54]

- table

||
|  |  |
| --- | --- |

| a |
| --- |
| bbbb |

- PIPE

|a
| a |
| --- |

| a | a | c |
| --- | --- | --- |

| a | a | h | c |
| --- | --- | --- | --- |
| a | a | 3x | h |
| a | a | 3 |  |

| 1 | 2 | 3 |
| --- | --- | --- |

| a | a | 3 | 4 | f |
| --- | --- | --- | --- | --- |
|a|a|3|4|5|x
|a|a|3|4|5|ch
|a|a|3|4|5|cb

- CSV

| a |
| --- |
,
| \| | \| |
| --- | --- |
| a |  |
| 1 | 2 |

| 1 | 2 |  |
| --- | --- | --- |
| 1 | 2 | 3 |

- format

| LEFT: | CENTER: | RIGHT: | c |
| --- | --- | --- | --- |
| 1234 | 2345 | 3456 |  |
| h1 | h2 | h3 | h |
| a | b | c |  |
| CENTER: | RIGHT: | LEFT: | c |
| foot | foot | foot | f |
| BGCOLOR(red): | BGCOLOR(green): | BGCOLOR(blue): | c |
| H1 | H2 | H3 | h |
|a|b|c| 
| F | F | F | f |
| --- | --- | --- | --- |

| a | b | c |
| --- | --- | --- |

|BGCOLOR(red): |BGCOLOR(green): |BGCOLOR(blue):|c 
|H1|H2|H3|h 

- width
| 100 | 100 | 100 | c |
| --- | --- | --- | --- |
| a | b2 | 12345678901234567890 |  |

- CSV

| 1a | 2 a | 3a |
| --- | --- | --- |
| 1 , | 2b | "3 b |
|  |  | c |
