Showdown's Table Extension
Add markdown table flavor to showdown
Adds support for:
| Col 1 | Col 2 |
|======== |====================================================|
|**bold** | ![Valid XHTML] (http://w3.org/Icons/valid-xhtml10) |
| Plain | Value |
Installation
npm
Withnpm install showdown-table
bower
Withbower install showdown-table
Manual
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">
Enabling the extension
After including the extension in your application, you just need to enable it in showdown.
var converter = new showdown.Converter({extensions: ['table']});
Example
var converter = extensions: 'table' input = '| Col 1 | Col 2 |' + '|======== |====================================================|' + '|**bold** | ![Valid XHTML] (http://w3.org/Icons/valid-xhtml10) |' + '| Plain | Value |'; html = converter; console;
This should output the equivalent to:
Col 1 Col 2 bold Plain Value
License
These files are distributed under BSD license. For more information, please check the LICENSE file in the source code.