Turndown plugin to add GitHub Flavored Markdown extensions.
npm install @guyplusplus/turndown-plugin-gfmA Turndown plugin which adds GitHub Flavored Markdown extensions.
The test page can be found here.
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
npm:
```
npm install @guyplusplus/turndown-plugin-gfm
Browser:
`html`
`js
// 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('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.