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
2. Copy those cells to your clipboard
You can right-click and select "Copy" or type
3. Paste the cells in the paste area
You can right-click and select "Paste" or type
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!