Gathering detailed insights and metrics for @kwangkim/remark-html-katex
Gathering detailed insights and metrics for @kwangkim/remark-html-katex
Gathering detailed insights and metrics for @kwangkim/remark-html-katex
Gathering detailed insights and metrics for @kwangkim/remark-html-katex
npm install @kwangkim/remark-html-katex
Typescript
Module System
Node Version
NPM Version
62.3
Supply Chain
73.7
Quality
74.2
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2 Stars
108 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Feb 05, 2023
Latest Version
1.11.2
Package Id
@kwangkim/remark-html-katex@1.11.2
Unpacked Size
4.66 kB
Size
2.21 kB
File Count
4
NPM Version
6.3.0
Node Version
10.8.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
KaTeX transformer plugin for remark-html.
It transfroms html content of math
and inlineMath
nodes with KaTeX.
math
andinlineMath
nodes can be parsed withremark-math
.
1npm i -S remark remark-math remark-html 2npm i -S remark-html-katex
1const remark = require('remark') 2const math = require('remark-math') 3const katex = require('remark-html-katex') 4const html = require('remark-html') 5 6// Raw String => MDAST => transformed MDAST => HTML 7const processor = remark() 8 .use(math) 9 .use(katex) 10 .use(html) 11 12// https://en.wikipedia.org/wiki/Lift_(force)#Lift_coefficient 13const rawString = `Lift($L$) can be determined by Lift Coeeficient ($C_L$) like the following equation. 14 15$$ 16L = \\frac{1}{2} \\rho v^2 S C_L 17$$ 18` 19 20const result = processor.processSync(rawString).toString() 21/* result 22<p> 23 Lift(<span class="inlineMath"><span class="katex">...</span></span>) can be determined by Lift Coeeficient (<span class="inlineMath"><span class="katex">...</span></span>) like the following equation. 24</p> 25<div class="math"> 26 <span class="katex-display"><span class="katex">...</span></span> 27</div> 28*/
Check remark-math for more information.
MIT © Junyoung Choi
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
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
Score
Last Scanned on 2025-07-07
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