@kreuzberg/html-to-markdown 2.24.3 → 2.24.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<img src="https://img.shields.io/maven-central/v/dev.kreuzberg/html-to-markdown?label=Java&color=007ec6" alt="Java">
|
|
19
19
|
</a>
|
|
20
20
|
<a href="https://pkg.go.dev/github.com/kreuzberg-dev/html-to-markdown/packages/go/v2/htmltomarkdown">
|
|
21
|
-
<img src="https://img.shields.io/badge/Go-v2.24.
|
|
21
|
+
<img src="https://img.shields.io/badge/Go-v2.24.4-007ec6" alt="Go">
|
|
22
22
|
</a>
|
|
23
23
|
<a href="https://www.nuget.org/packages/KreuzbergDev.HtmlToMarkdown/">
|
|
24
24
|
<img src="https://img.shields.io/nuget/v/KreuzbergDev.HtmlToMarkdown?label=C%23&color=007ec6" alt="C#">
|
|
@@ -54,7 +54,13 @@ This package wraps native `@kreuzberg/html-to-markdown-node` bindings and provid
|
|
|
54
54
|
|
|
55
55
|
## Installation
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
```bash
|
|
58
|
+
npm install @kreuzberg/html-to-markdown
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Requires Node.js 18+ or Bun. Native bindings provide superior performance.
|
|
58
64
|
|
|
59
65
|
**npm:**
|
|
60
66
|
```bash
|
|
@@ -82,14 +88,6 @@ Alternatively, use the WebAssembly version for browser/edge environments:
|
|
|
82
88
|
npm install @kreuzberg/html-to-markdown-wasm
|
|
83
89
|
```
|
|
84
90
|
|
|
85
|
-
## Runtime Support
|
|
86
|
-
|
|
87
|
-
- **Node.js:** 18+ (officially supported)
|
|
88
|
-
- **Bun:** 1.2+ (officially supported via Node-API compatibility)
|
|
89
|
-
- **Deno:** Not officially supported (use Node.js compatibility layer or WASM version)
|
|
90
|
-
|
|
91
|
-
The package uses native NAPI bindings that work across Node.js and Bun without changes. All features work identically in both runtimes.
|
|
92
|
-
|
|
93
91
|
|
|
94
92
|
|
|
95
93
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kreuzberg/html-to-markdown",
|
|
3
|
-
"version": "2.24.
|
|
3
|
+
"version": "2.24.5",
|
|
4
4
|
"description": "High-performance HTML to Markdown converter for TypeScript/Node.js with a Rust core.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"html",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"README.md"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@kreuzberg/html-to-markdown-node": "2.24.
|
|
49
|
+
"@kreuzberg/html-to-markdown-node": "2.24.5"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@biomejs/biome": "^2.3.13",
|