html-to-markdown-node 2.6.5 → 2.6.6
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 +2 -2
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Native Node.js and Bun bindings for html-to-markdown using NAPI-RS v3.
|
|
4
4
|
|
|
5
|
-
Built on the shared Rust engine that powers the Python wheels, Ruby gem, WebAssembly package, and CLI – ensuring identical Markdown output across every language target.
|
|
5
|
+
Built on the shared Rust engine that powers the Python wheels, Ruby gem, PHP extension, WebAssembly package, and CLI – ensuring identical Markdown output across every language target.
|
|
6
6
|
|
|
7
7
|
High-performance HTML to Markdown conversion using native Rust code compiled to platform-specific binaries.
|
|
8
8
|
|
|
9
9
|
[](https://crates.io/crates/html-to-markdown-rs)
|
|
10
10
|
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
11
11
|
[](https://www.npmjs.com/package/html-to-markdown-wasm)
|
|
12
|
-
[](https://www.npmjs.com/package/html-to-markdown)
|
|
13
12
|
[](https://pypi.org/project/html-to-markdown/)
|
|
14
13
|
[](https://packagist.org/packages/goldziher/html-to-markdown)
|
|
15
14
|
[](https://rubygems.org/gems/html-to-markdown)
|
|
@@ -191,6 +190,7 @@ Other runtimes:
|
|
|
191
190
|
|
|
192
191
|
- 🐍 Python: [`html-to-markdown`](https://pypi.org/project/html-to-markdown/)
|
|
193
192
|
- 💎 Ruby: [`html-to-markdown`](https://rubygems.org/gems/html-to-markdown)
|
|
193
|
+
- 🐘 PHP: [`goldziher/html-to-markdown`](https://packagist.org/packages/goldziher/html-to-markdown)
|
|
194
194
|
- 🌐 WebAssembly: [`html-to-markdown-wasm`](https://www.npmjs.com/package/html-to-markdown-wasm)
|
|
195
195
|
|
|
196
196
|
## Configuration Options
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "html-to-markdown-node",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.6",
|
|
4
4
|
"description": "High-performance HTML to Markdown converter - Node.js native bindings",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
"up": "^1.0.2"
|
|
60
60
|
},
|
|
61
61
|
"optionalDependencies": {
|
|
62
|
-
"html-to-markdown-node-darwin-x64": "2.6.
|
|
63
|
-
"html-to-markdown-node-darwin-arm64": "2.6.
|
|
64
|
-
"html-to-markdown-node-win32-x64-msvc": "2.6.
|
|
65
|
-
"html-to-markdown-node-win32-arm64-msvc": "2.6.
|
|
66
|
-
"html-to-markdown-node-linux-x64-gnu": "2.6.
|
|
67
|
-
"html-to-markdown-node-linux-x64-musl": "2.6.
|
|
68
|
-
"html-to-markdown-node-linux-arm64-gnu": "2.6.
|
|
69
|
-
"html-to-markdown-node-linux-arm64-musl": "2.6.
|
|
70
|
-
"html-to-markdown-node-linux-arm-gnueabihf": "2.6.
|
|
62
|
+
"html-to-markdown-node-darwin-x64": "2.6.6",
|
|
63
|
+
"html-to-markdown-node-darwin-arm64": "2.6.6",
|
|
64
|
+
"html-to-markdown-node-win32-x64-msvc": "2.6.6",
|
|
65
|
+
"html-to-markdown-node-win32-arm64-msvc": "2.6.6",
|
|
66
|
+
"html-to-markdown-node-linux-x64-gnu": "2.6.6",
|
|
67
|
+
"html-to-markdown-node-linux-x64-musl": "2.6.6",
|
|
68
|
+
"html-to-markdown-node-linux-arm64-gnu": "2.6.6",
|
|
69
|
+
"html-to-markdown-node-linux-arm64-musl": "2.6.6",
|
|
70
|
+
"html-to-markdown-node-linux-arm-gnueabihf": "2.6.6"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"artifacts": "napi artifacts",
|