Skip to content

vzaccaria/mdtable2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Small module to convert markdown tables to json

Resources

Stars

Watchers

Forks

Packages

No packages published