invert-markdown-table
v1.2.0
Published
Available on [npm](https://www.npmjs.com/package/invert-markdown-table):
Downloads
76
Readme
Available on npm:
npm i invert-markdown-table
Online Inverter: http://harttle.land/invert-markdown-table/
Usage
var invertMarkdownTable = require('invert-markdown-table');
var source = 'a | b\n---|---\nc | d'
var result = invertMarkdownTable(source);
console.log(result);
// Outputs:
// a | c\n---|---\nb | d
Use in Browser
Global Variable:
var source = 'a | b\n---|---\nc | d';
var result = window.invertMarkdownTable(source);
RequireJS:
require(['invert-markdown-table'], function (invertMarkdownTable) {
var source = 'a | b\n---|---\nc | d'
var result = invertMarkdownTable(source);
});