![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@joplin/turndown-plugin-gfm
Advanced tools
Turndown plugin to add GitHub Flavored Markdown extensions.
A Turndown plugin which adds GitHub Flavored Markdown extensions.
This is a fork of the original turndown-plugin-gfm for use with Joplin. The changes are:
\n
) with <br>
inside table cells so that multi-line content is displayed correctly as Markdown.<tr>
tag)npm:
npm install joplin-turndown-plugin-gfm
// For Node.js
var TurndownService = require('@joplin/turndown')
var turndownPluginGfm = require('@joplin/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)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)
turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.
FAQs
Turndown plugin to add GitHub Flavored Markdown extensions.
The npm package @joplin/turndown-plugin-gfm receives a total of 5,125 weekly downloads. As such, @joplin/turndown-plugin-gfm popularity was classified as popular.
We found that @joplin/turndown-plugin-gfm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.