Gathering detailed insights and metrics for @gerhobbelt/markdown-it-fontawesome
Gathering detailed insights and metrics for @gerhobbelt/markdown-it-fontawesome
npm install @gerhobbelt/markdown-it-fontawesome
Typescript
Module System
Min. Node Version
Node Version
NPM Version
68.6
Supply Chain
95.8
Quality
75.1
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,782
Last Day
1
Last Week
2
Last Month
22
Last Year
289
MIT License
20 Stars
11 Commits
3 Forks
1 Watchers
4 Branches
2 Contributors
Updated on Dec 13, 2024
Minified
Minified + Gzipped
Latest Version
0.3.0-3
Package Id
@gerhobbelt/markdown-it-fontawesome@0.3.0-3
Unpacked Size
14.71 kB
Size
3.42 kB
File Count
13
NPM Version
6.11.3
Node Version
12.12.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-75%
2
Compared to previous week
Last Month
120%
22
Compared to previous month
Last Year
0.3%
289
Compared to previous year
Markdown-it plugin that adds Font Awesome icons support.
Turn this:
1Hello World! :fa-flag:
Into this:
1<p>Hello World! <i class="fa fa-flag"></i></p>
1$ npm install @gerhobbelt/markdown-it-fontawesome --save
1var md = require('@gerhobbelt/markdown-it'); 2var fa = require('@gerhobbelt/markdown-it-fontawesome'); 3 4md().use(fa);
1Hello World! :fa-flag: 2 3- [:fa-google: Google](https://www.google.com/) 4- [:fa-github: GitHub](https://github.com/)
Gets converted to:
1<p>Hello World! <i class="fa fa-flag"></i></p> 2<ul> 3<li><a href="https://www.google.com/"><i class="fa fa-google"></i> Google</a></li> 4<li><a href="https://github.com/"><i class="fa fa-github"></i> GitHub</a></li> 5</ul>
1Hello World! :fal-flag: 2 3- [:fab-google: Google](https://www.google.com/) 4- [:fab-github: GitHub](https://github.com/)
gets converted to:
1<p>Hello World! <i class="fal fa-flag"></i></p> 2<ul> 3<li><a href="https://www.google.com/"><i class="fab fa-google"></i> Google</a></li> 4<li><a href="https://github.com/"><i class="fab fa-github"></i> GitHub</a></li> 5</ul>
Original: https://github.com/nunof07
Font awesome 5 support and tests: https://github.com/rjjakes
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 existing vulnerabilities detected
Details
Reason
Found 1/6 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-02-03
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