THIS EXTENSION IS DEPRECATED
As of showdown v 1.2.0, table support was moved into core as an opt-in feature making this extension obsolete. As such, this extension will not receive further updates.
Add markdown table flavor to showdown
Adds support for:
| Col 1 | Col 2 |
|======== |====================================================|
|**bold** | ![Valid XHTML] (http://w3.org/Icons/valid-xhtml10) |
| Plain | Value |
With npm
npm install showdown-table
With bower
bower install showdown-table
You can also download the latest release zip or tarball and include it in your webpage, after showdown:
<script src="showdown.min.js">
<script src="showdown-table.min.js">
After including the extension in your application, you just need to enable it in showdown.
var converter = new showdown.Converter({extensions: ['table']});
var converter = new showdown.Converter({extensions: ['table']}),
input = '| Col 1 | Col 2 |' +
'|======== |====================================================|' +
'|**bold** | ![Valid XHTML] (http://w3.org/Icons/valid-xhtml10) |' +
'| Plain | Value |';
html = converter.makeHtml(input);
console.log(html);
This should output the equivalent to:
<table>
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td><strong>bold</strong></td>
<td><img alt="Valid XHTML" src="http://w3.org/Icons/valid-xhtml10"></td>
</tr>
<tr>
<td>Plain</td>
<td>Value</td>
</tr>
</table>
These files are distributed under BSD license. For more information, please check the LICENSE file in the source code.