This page covers tables and native HTML components. Simple tables can omit a caption; wide or complex tables should use a Table: … caption line.

Tables

Simple table (no caption)

ItemStatus
Simple tableCaption optional
| Item | Status |
| :--- | :--- |
| Simple table | Caption optional |

Table with caption

Markdown column alignment
CenterRightLeft
Center (:-:)Right (-:)Left (:-)
baaaaaaaaaaaaa
caaaaa
Table: Markdown column alignment

|     Center      |         Right | Left           |
| :-------------: | ------------: | :------------- |
| Center (`:-:`)  | Right (`-:`)  | Left (`:-`)    |
| b               |      aaaaaaaaa | aaaa           |
| c               |           aaaa | a              |

Wide table

Post list horizontal scroll demo
DateTitleCategoryTagsStatusLink
2026-05-17Extended Markdown sampleDocsmarkdown, stylePublishedhttps://example.com/posts/markdown-style-example
2026-05-18Pure CSS component testUIcss, html, staticDrafthttps://example.com/posts/css-only-components
Table: Post list horizontal scroll demo

| Date | Title | Category | Tags | Status | Link |
| :--- | :--- | :--- | :--- | :--- | :--- |
| 2026-05-17 | Extended Markdown sample | Docs | markdown, style | Published | https://example.com/posts/markdown-style-example |
| 2026-05-18 | Pure CSS component test | UI | css, html, static | Draft | https://example.com/posts/css-only-components |

Native collapsible

Show more Collapsible content using native HTML `
`.
<details>
<summary>Show more</summary>
Collapsible content using native HTML `<details>`.
</details>