Markdown handling just got better
2025-12-12- HTML to Markdown now handles large HTML much more reliably.
- HTML tables are now converted into clean ASCII-style Markdown tables.
Example input (HTML):
<table>
<thead>
<tr> <th>Language</th> <th>Syntax style</th> <th>Notes</th> </tr> </thead>
<tbody>
<tr> <td>HTML</td> <td>Tag-based</td> <td>Good for browsers, verbose for humans</td> </tr>
<tr> <td>Markdown</td> <td>Plain text</td> <td>Great for writing docs and README files</td> </tr>
<tr> <td>JSON</td> <td>Key-value</td> <td>Perfect for configs and APIs, not for articles</td> </tr>
</tbody>
</table>
Converted output (Markdown table):
| Language | Syntax style | Notes |
|----------|--------------|-----------------------------------------------|
| HTML | Tag-based | Good for browsers, verbose for humans |
| Markdown | Plain text | Great for writing docs and README files |
| JSON | Key-value | Perfect for configs and APIs, not for articles|