Convert Google Sheets Cells to a Markdown Table
Google Sheets copies a selected range as tab-separated text plus an HTML table. Paste either flavour into the converter to get a Markdown table.
Direct answer
Select the range in Google Sheets and copy it. Sheets puts tab-separated text and an HTML table on the clipboard, the same as Excel. Paste into the converter above and it writes a GitHub Flavored Markdown table. Use the header toggle and the per-column alignment controls to match the table you want.
Open Excel to Markdown converterWhen to use this
- A shared Sheet holds the source data and the docs live in a Git repository.
- You publish notes in Markdown but collaborate on numbers in Sheets.
- You need a quick table for a ticket, README, or chat message.
Steps
- Open the Google Sheet and select the range you need.
- Press Ctrl+C (Cmd+C on a Mac).
- Paste into the converter's paste box.
- Confirm the column count looks right in the live output pane.
- Press Copy and paste the Markdown where you need it.
Example conversion
Task Owner Status Spec review Dana Done Pricing page Ravi In progress Legal sign-off Mei Blocked
| Task | Owner | Status | | --- | --- | --- | | Spec review | Dana | Done | | Pricing page | Ravi | In progress | | Legal sign-off | Mei | Blocked |
Common mistakes
- Do not copy a whole sheet when you only need a range. Empty trailing columns become empty Markdown columns.
- Do not expect cell colours, formulas, or notes to survive. Markdown tables carry text only.
- A cell that contains a line break becomes two rows in the plain-text flavour. Remove the line break in Sheets first, or paste when the HTML flavour is available so the row structure holds.
FAQ
- Do Google Sheets formulas convert?
- No. The clipboard carries the computed values, not the formulas. The Markdown table shows the results you saw on screen.
- Is there a Google Sheets add-on step?
- None. Copy and paste is the whole flow. The converter never connects to your Google account.
- What happens to number formatting?
- Currency symbols, thousand separators, and percent signs come across as the displayed text. Underlying precision beyond what is displayed is not copied.
Related Excel to Markdown guides
How to Paste Excel Cells as a Markdown Table
Copied Excel cells travel as tab-separated text. Paste them into the converter and get a GitHub Flavored Markdown table with the header row and alignment you choose.
Put an Excel Table Into a GitHub README
GitHub renders GitHub Flavored Markdown tables. Convert copied Excel cells to GFM pipe syntax, then paste the result into README.md.
How to Align Columns in a Markdown Table
Alignment lives in the separator row. A colon on the left aligns left, on the right aligns right, and on both sides centres the column.
Fix Pipe Characters That Break a Markdown Table
A literal | inside a cell starts a new column and breaks the table. Escape it as \| so the renderer prints the character instead of splitting the row.