@kreuzberg/html-to-markdown-node 2.19.0-rc.1 → 2.19.1
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 +40 -2
- package/package.json +10 -10
- package/html-to-markdown-node.darwin-arm64.node +0 -0
package/README.md
CHANGED
|
@@ -15,11 +15,49 @@ High-performance HTML to Markdown conversion using native Rust code compiled to
|
|
|
15
15
|
[](https://pypi.org/project/html-to-markdown/)
|
|
16
16
|
[](https://packagist.org/packages/goldziher/html-to-markdown)
|
|
17
17
|
[](https://rubygems.org/gems/html-to-markdown)
|
|
18
|
-
[](https://www.nuget.org/packages/KreuzbergDev.HtmlToMarkdown/)
|
|
19
|
+
[](https://central.sonatype.com/artifact/dev.kreuzberg/html-to-markdown)
|
|
20
20
|
[](https://pkg.go.dev/github.com/kreuzberg-dev/html-to-markdown/packages/go/v2/htmltomarkdown)
|
|
21
21
|
[](https://github.com/kreuzberg-dev/html-to-markdown/blob/main/LICENSE)
|
|
22
22
|
|
|
23
|
+
## Migration Guide (v2.18.x → v2.19.0)
|
|
24
|
+
|
|
25
|
+
> **⚠️ BREAKING CHANGE: Package Namespace Update**
|
|
26
|
+
>
|
|
27
|
+
> In v2.19.0, the npm package namespace changed from `html-to-markdown-node` to `@kreuzberg/html-to-markdown-node` to reflect the new Kreuzberg.dev organization.
|
|
28
|
+
|
|
29
|
+
### Install Updated Package
|
|
30
|
+
|
|
31
|
+
**Before (v2.18.x):**
|
|
32
|
+
```bash
|
|
33
|
+
npm install html-to-markdown-node
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
**After (v2.19.0+):**
|
|
37
|
+
```bash
|
|
38
|
+
npm install @kreuzberg/html-to-markdown-node
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Update Import Statements
|
|
42
|
+
|
|
43
|
+
**Before:**
|
|
44
|
+
```typescript
|
|
45
|
+
import { convert } from 'html-to-markdown-node';
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**After:**
|
|
49
|
+
```typescript
|
|
50
|
+
import { convert } from '@kreuzberg/html-to-markdown-node';
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Summary of Changes
|
|
54
|
+
|
|
55
|
+
- Package renamed from `html-to-markdown-node` to `@kreuzberg/html-to-markdown-node`
|
|
56
|
+
- All APIs remain identical
|
|
57
|
+
- Full backward compatibility after updating package name and imports
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
23
61
|
## Performance
|
|
24
62
|
|
|
25
63
|
Native NAPI-RS bindings deliver **the fastest HTML to Markdown conversion** available in JavaScript.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kreuzberg/html-to-markdown-node",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.1",
|
|
4
4
|
"description": "High-performance HTML to Markdown converter - Node.js native bindings",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -70,14 +70,14 @@
|
|
|
70
70
|
"up": "^1.0.2"
|
|
71
71
|
},
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"@kreuzberg/html-to-markdown-node-darwin-x64": "2.19.
|
|
74
|
-
"@kreuzberg/html-to-markdown-node-darwin-arm64": "2.19.
|
|
75
|
-
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "2.19.
|
|
76
|
-
"@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "2.19.
|
|
77
|
-
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "2.19.
|
|
78
|
-
"@kreuzberg/html-to-markdown-node-linux-x64-musl": "2.19.
|
|
79
|
-
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "2.19.
|
|
80
|
-
"@kreuzberg/html-to-markdown-node-linux-arm64-musl": "2.19.
|
|
81
|
-
"@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "2.19.
|
|
73
|
+
"@kreuzberg/html-to-markdown-node-darwin-x64": "2.19.1",
|
|
74
|
+
"@kreuzberg/html-to-markdown-node-darwin-arm64": "2.19.1",
|
|
75
|
+
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "2.19.1",
|
|
76
|
+
"@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "2.19.1",
|
|
77
|
+
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "2.19.1",
|
|
78
|
+
"@kreuzberg/html-to-markdown-node-linux-x64-musl": "2.19.1",
|
|
79
|
+
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "2.19.1",
|
|
80
|
+
"@kreuzberg/html-to-markdown-node-linux-arm64-musl": "2.19.1",
|
|
81
|
+
"@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "2.19.1"
|
|
82
82
|
}
|
|
83
83
|
}
|
|
Binary file
|