@guyplusplus/turndown-plugin-gfm

1.0.7 • Public • Published

turndown-plugin-gfm

A Turndown plugin which adds GitHub Flavored Markdown extensions.

Test Page

The test page can be found here.

Fork information

This is a fork of the original turndown-plugin-gfm for general purpose. It is pending on this pull request.

The changes are:

  • migrated to node v5
  • upgraded inclusion of turndown npm package to 7.0.0
  • support tables with caption and colgroup elements
  • support conversion of a multi-lines cell to a single line cell
  • pipe character | are properly escaped in a table cell
  • fix support for tables with no row
  • support for colspan
  • nested table inside a table render as is, gfm is not applied
  • added more test cases accordingly

TODO:

  • [ ] rowspan support
  • [ ] support for relaxed and strict gfm (not html) rendering. So new lines, nested tables would render differently

Installation

npm:

npm install @guyplusplus/turndown-plugin-gfm

Browser:

<script src="https://unpkg.com/turndown/dist/turndown.js"></script>
<script src="https://unpkg.com/@guyplusplus/turndown-plugin-gfm/dist/turndown-plugin-gfm.js"></script>

Usage

// For Node.js
var TurndownService = require('turndown')
var TurndownPluginGfm = require('@guyplusplus/turndown-plugin-gfm')

var turndownService = new TurndownService()
TurndownPluginGfm.gfm(turndownService)
var markdown = turndownService.turndown('<strike>Hello world!</strike>')

turndown-plugin-gfm is a suite of plugins which can be applied individually. The available plugins are as follows:

  • strikethrough (for converting <strike>, <s>, and <del> elements)
  • tables
  • taskListItems
  • gfm (which applies all of the above)

So for example, if you only wish to convert tables:

var tables = require('turndown-plugin-gfm').tables
var turndownService = new TurndownService()
turndownService.use(tables)

License

turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.

Package Sidebar

Install

npm i @guyplusplus/turndown-plugin-gfm

Weekly Downloads

1,342

Version

1.0.7

License

MIT

Unpacked Size

28.7 kB

Total Files

8

Last publish

Collaborators

  • guyplusplus