JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 498
  • Score
    100M100P100Q93957F
  • License MIT

MarkdownIt plugin for Pandoc Grid Tables

Package Exports

  • markdown-it-gridtables
  • markdown-it-gridtables/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (markdown-it-gridtables) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

MarkdownIt Grid Tables

Build Status Coverage Status

MarkdownIt plugin for Pandoc Grid Tables.

Usage

Install:

npm install --save markdown-it-gridtables

Use as a MarkdownIt plugin:

import * as MarkdownIt from "markdown-it";
import gridTableRulePlugin from "markdown-it-gridtables";

const md = MarkdownIt();
md.use(gridTableRulePlugin);

const html = md.render("...");
console.log(html);

Development

Checkout:

git clone https://github.com/basverweij/markdown-it-gridtables.git

Clean:

npm run clean

Build:

npm run build

Test:

npm run test