Need AI Training/Help?CloudYeti.io/meet
MarkdownMe
Markdown to Outlook guide

How to Paste a Markdown Table Into Outlook

A pipe table pasted into Outlook stays a wall of pipes and dashes. Outlook needs a real HTML table with a border and padding inline on every cell.

Direct answer

Outlook does not render Markdown pipe tables. The | and --- characters arrive as plain text and stay that way. To show a table in Outlook, the content must be a real HTML <table> with border-collapse on the table and a border plus padding inline on each cell. This converter builds that markup from your pipe table, and Copy Rich puts it on the clipboard so a normal paste drops a formatted table into the compose window.

Open Markdown to Outlook converter

Sending to Gmail, Apple Mail, or a newsletter tool as well? The Markdown to Email converter covers the general email case. This tool targets Outlook only.

When to use this

  • A status table, comparison, or report table drafted in Markdown must go into an Outlook message.
  • A pasted table shows as rows of pipes and dashes.
  • The table must survive Outlook desktop, which renders with Word's engine.

Steps

  1. Keep the table narrow. Two to four columns fit an email body; wider tables wrap badly.
  2. Confirm the Markdown table has a header row and a |---|---| separator line under it.
  3. Paste it into the converter and check the preview renders a real table.
  4. Press Copy Rich and paste into the Outlook compose window with a normal paste.
  5. Send a test to an Outlook desktop account before the real send.

Example conversion

Markdown input
| Workstream | Owner | Status |
| --- | --- | --- |
| Schema freeze | Priya | Done |
| Dual-write | Marcus | In progress |
| Cutover | Dana | Not started |
Outlook HTML output
<table style="border-collapse:collapse;margin:12px 0;font-family:Calibri,'Segoe UI',Arial,sans-serif;font-size:13px;"><tbody><tr><th style="border:1px solid #d1d1d1;padding:6px 10px;background:#f3f3f3;font-weight:600;text-align:left;">Workstream</th><th style="border:1px solid #d1d1d1;padding:6px 10px;background:#f3f3f3;font-weight:600;text-align:left;">Owner</th><th style="border:1px solid #d1d1d1;padding:6px 10px;background:#f3f3f3;font-weight:600;text-align:left;">Status</th></tr><tr><td style="border:1px solid #d1d1d1;padding:6px 10px;">Schema freeze</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">Priya</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">Done</td></tr><tr><td style="border:1px solid #d1d1d1;padding:6px 10px;">Dual-write</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">Marcus</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">In progress</td></tr><tr><td style="border:1px solid #d1d1d1;padding:6px 10px;">Cutover</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">Dana</td><td style="border:1px solid #d1d1d1;padding:6px 10px;">Not started</td></tr></tbody></table>

Common mistakes

  • Do not paste the raw pipe table. Outlook shows the pipes as characters, in every version.
  • Do not style the table with a CSS class or a <style> block. Outlook desktop strips both.
  • Do not omit the |---|---| separator row. Without it the block is parsed as ordinary paragraphs, not a table.
  • Do not build tables past four columns for email. They wrap on phones, where much mail is read.

FAQ

Why does my Markdown table show as pipes in Outlook?
Pipe tables are Markdown source syntax. Outlook renders HTML and has no Markdown parser, so the | and --- characters carry no meaning and print literally.
Which table CSS does Outlook desktop actually honour?
Inline border-collapse on the <table>, and inline border, padding, background, font-weight, and text-align on each <th> and <td>. Anything in a stylesheet or class is discarded by Word's HTML filter.
Can I paste an Excel range instead?
Yes, and Outlook renders it, but you lose the Markdown source as your single copy of the data. Converting the Markdown keeps the table editable in your notes and gives Outlook the HTML it needs.
Does the converted table also render in Gmail and Apple Mail?
Yes. Every style sits inline on standard table elements, which all mainstream clients support. Outlook desktop is the strictest case, so a table that renders there renders elsewhere.

Related Outlook guides