mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-14 08:49:49 -06:00
611f0f037c4e579f8a60b4cd32c6fa8dd83e3e50
turndown-plugin-gfm
A Turndown plugin which adds GitHub Flavored Markdown extensions.
Installation
npm:
npm install turndown-plugin-gfm
Browser:
<script src="https://unpkg.com/turndown/dist/turndown.js"></script>
<script src="https://unpkg.com/turndown/dist/turndown-plugin-gfm.js"></script>
Usage
// 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('<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)tablestaskListItemsgfm(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.
Languages
TypeScript
79.7%
HTML
11.6%
CSS
3.8%
JavaScript
3.7%
EJS
0.6%
Other
0.5%