Skip to content

mattjamc/html-table-to-markdown-converter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Converts HTML Tables to Markdown.

Paste in the raw HTML for the table you want to convert, e.g.:

<table>
  <tr><th>One</th><th>Two</th><th>Three</th></tr>
  <tr><td>Apples</td><td>Oranges</td><td>Pears</td></tr>
  <tr><td>Cakes</td><td>Donuts</td><td>Sweet Bread</td></tr>
</table>

Produces something like:

| One    | Two     | Three       |
| ------ | ------- | ----------- |
| Apples | Oranges | Pears       |
| Cakes  | Donuts  | Sweet Bread |

Demo:

About

Converts HTML tables to Markdown. Paste in, click Convert.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 72.2%
  • HTML 27.8%