0.1.0 • Published 9 years ago

mdtable2json v0.1.0

Weekly downloads
67
License
BSD
Repository
github
Last release
9 years ago

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.