mdtable2json

0.1.0 • Public • Published

mdtable2json NPM version

Install globally with npm

$ npm i -g mdtable2json

What is it

Takes a markdown string and extracts tables in json form contained in it.

Example

var x =
            `
| a    | b     | c     |
| ---- | ----- | ----- |
| 1    | 2     | 3     |
`
 
var tb = require('mdtable2json').getTables(x)
 
/* tb =
 
[{
            "headers": [
                "a",
                "b",
                "c"
            ],
            "json": [{
                "a": "1",
                "b": "2",
                "c": "3"
            }]
        }]
 
*/

API

Author

  • Vittorio Zaccaria

License

Copyright © 2015 Vittorio Zaccaria Released under the BSD license.


This file was generated by verb-cli on September 29, 2015.

Readme

Keywords

none

Package Sidebar

Install

npm i mdtable2json

Weekly Downloads

17

Version

0.1.0

License

BSD

Last publish

Collaborators

  • vzaccaria