Markdownテーブル生成ツール
視覚的にMarkdownテーブルを作成します。行と列を追加、配置を設定、CSVからインポート。
Import from CSV
入力
出力
| Name | Description | Price | | ------ | --------------------- | -----: | | Item 1 | Description of item 1 | $10.00 | | Item 2 | Description of item 2 | $20.00 |
Preview
| Name | Description | Price |
|---|---|---|
| Item 1 | Description of item 1 | $10.00 |
| Item 2 | Description of item 2 | $20.00 |
Markdown Tables - 技術的な詳細
Markdown tables use pipes (|) and hyphens (-) to create grid layouts. Column alignment is set with colons in the separator row: :-- left, :--: center, --: right. Supported by GitHub, GitLab, and most Markdown renderers.
コマンドラインでの代替方法
# Basic markdown table syntax\n| Header 1 | Header 2 |\n|----------|----------|\n| Cell 1 | Cell 2 |