Gathering detailed insights and metrics for @joplin/turndown-plugin-gfm
Gathering detailed insights and metrics for @joplin/turndown-plugin-gfm
Gathering detailed insights and metrics for @joplin/turndown-plugin-gfm
Gathering detailed insights and metrics for @joplin/turndown-plugin-gfm
Fork of turndown-plugin-gfm for Jopin
npm install @joplin/turndown-plugin-gfm
Typescript
Module System
Node Version
NPM Version
94
Supply Chain
87.4
Quality
88.4
Maintenance
100
Vulnerability
100
License
JavaScript (49.36%)
HTML (47.23%)
Shell (3.41%)
Total Downloads
754,281
Last Day
2,275
Last Week
14,787
Last Month
61,566
Last Year
403,480
MIT License
12 Stars
60 Commits
6 Forks
4 Watchers
1 Branches
3 Contributors
Updated on Jun 29, 2024
Minified
Minified + Gzipped
Latest Version
1.0.62
Package Id
@joplin/turndown-plugin-gfm@1.0.62
Unpacked Size
15.32 kB
Size
5.51 kB
File Count
4
NPM Version
lerna/3.22.1/node@v20.18.3+arm64 (darwin)
Node Version
20.18.3
Published on
May 01, 2025
Cumulative downloads
Total Downloads
Last Day
-20.6%
2,275
Compared to previous day
Last Week
-5.9%
14,787
Compared to previous week
Last Month
4.5%
61,566
Compared to previous month
Last Year
141.9%
403,480
Compared to previous year
5
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
1// For Node.js 2var TurndownService = require('@joplin/turndown') 3var turndownPluginGfm = require('@joplin/turndown-plugin-gfm') 4 5var gfm = turndownPluginGfm.gfm 6var turndownService = new TurndownService() 7turndownService.use(gfm) 8var 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:
1var tables = require('@joplin/turndown-plugin-gfm').tables 2var turndownService = new TurndownService() 3turndownService.use(tables)
To use this in a typescript project, add this to a declarations.d.ts
file, as described in https://www.npmjs.com/package/@joplin/turndown, and then add:
1declare module "@joplin/turndown-plugin-gfm" { 2 export const gfm: any; 3 // Add other named exports if necessary 4}
turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
34 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-26
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More