Turndown plugin to add GitHub Flavored Markdown extensions.
npm install turndown-plugin-gfmA Turndown plugin which adds GitHub Flavored Markdown extensions.
npm:
```
npm install turndown-plugin-gfm
Browser:
`html`
`js
// For Node.js
var TurndownService = require('turndown')
var turndownPluginGfm = require('turndown-plugin-gfm')
var gfm = turndownPluginGfm.gfm
var turndownService = new TurndownService()
turndownService.use(gfm)
var markdown = turndownService.turndown('Hello world!')
`
turndown-plugin-gfm is a suite of plugins which can be applied individually. The available plugins are as follows:
- strikethrough (for converting , , and elements)tables
- taskListItems
- gfm
- (which applies all of the above)
So for example, if you only wish to convert tables:
`js``
var tables = require('turndown-plugin-gfm').tables
var turndownService = new TurndownService()
turndownService.use(tables)
turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.