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
npm install joplin-turndown-plugin-gfm
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
12 Stars
60 Commits
5 Forks
4 Watching
1 Branches
3 Contributors
Updated on 29 Jun 2024
JavaScript (49.36%)
HTML (47.23%)
Shell (3.41%)
Cumulative downloads
Total Downloads
Last day
9.8%
1,202
Compared to previous day
Last week
7.7%
6,089
Compared to previous week
Last month
24.3%
25,549
Compared to previous month
Last year
208.2%
178,123
Compared to previous year
5
IMPORTANT: This package is now hosted there: https://github.com/laurent22/joplin/tree/dev/packages/turndown-plugin-gfm
It can be installed using npm install --save @joplin/turndown-plugin-gfm
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('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('turndown-plugin-gfm').tables 2var turndownService = new TurndownService() 3turndownService.use(tables)
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
32 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
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