Table to Markdown

🚫 Using an adblocker? I respect your choice! Please consider supporting this site by sharing it with a friend or colleague, or if it's saved you a chunk of time, with a coffee. Thanks!

- John, creator of this little site

Convert spreadsheet cells to HTML

Table to Markdown makes it easy to convert cells from Microsoft Excel, Google Sheet, LibreOffice Calc, or any modern spreadsheet application, into HTML.

How it works

Need to convert from Excel to HTML? When copying cells from Excel and other spreadsheet applications, this data is stored in your clipboard as text and as an HTML table. This is how you can copy cells from Microsoft Excel, paste them into Microsoft Word, and still see the cells as a table.

Table to Markdown uses this HTML version of your spreadsheet cells, too. And with just a few steps, you can turn those cells into a well-formatted HTML table:

1. Select the cells you'd like to convert to Markdown

Google Sheets cells
Google Sheets cells

2. Copy those cells to your clipboard

You can right-click and select "Copy" or type Ctrl+C for Windows or Command+C for macOS.

3. Paste the cells in the paste area

You can right-click and select "Paste" or type Ctrl+V for Windows or Command+V for macOS.

4. Click the "Convert" button

Once you click "Convert", you'll see a happy HTML table waiting for you:

<table>
  <thead>
    <tr>
      <th>Format</th>
      <th>Grooviness</th>
    </th>
  </thead>
  <tbody>
    <tr>
      <td>HTML</td>
      <td>Medium</td>
    </tr>
    <tr>
      <td>Markdown</td>
      <td>High</td>
    </tr>
  </tbody>
</table>

It's as easy as that!