An open API service indexing awesome lists of open source software.

https://github.com/torifat/markdown-it-table

Plugin for markdown-it markdown parser, adding table with nested block syntax support.
https://github.com/torifat/markdown-it-table

markdown-it markdown-it-plugin table

Last synced: about 1 month ago
JSON representation

Plugin for markdown-it markdown parser, adding table with nested block syntax support.

Awesome Lists containing this project

README

        

# markdown-it-table
[![CircleCI](https://circleci.com/gh/torifat/markdown-it-table/tree/master.svg?style=svg)](https://circleci.com/gh/torifat/markdown-it-table/tree/master) [![NPM version](https://img.shields.io/npm/v/markdown-it-table.svg?style=flat)](https://www.npmjs.org/package/markdown-it-table)

> Plugin for [markdown-it](https://github.com/markdown-it/markdown-it) markdown parser, adding table with nested block syntax support.

## Install

```bash
$ yarn add markdown-it-table
```

## Use

### init

```js
var md = require('markdown-it')();
var { markdownItTable } = require('markdown-it-table');

md.use(markdownItTable [, options]);
```