html-to-markdown-wasm 2.9.2 → 2.10.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/dist/README.md CHANGED
@@ -51,19 +51,19 @@ Experience WebAssembly-powered HTML to Markdown conversion instantly in your bro
51
51
 
52
52
  ## Installation
53
53
 
54
- | Target | Command |
55
- | --------------------------- | ------------------------------------------------------------------------- |
56
- | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
- | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
- | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
- | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
- | **PHP** (extension + helpers) | `pie install goldziher/html-to-markdown`<br>`composer require html-to-markdown/extension` |
61
- | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
- | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
- | **Rust** crate | `cargo add html-to-markdown-rs` |
64
- | Rust CLI | `cargo install html-to-markdown-cli` |
65
- | Homebrew CLI | `brew tap goldziher/tap`<br>`brew install html-to-markdown` |
66
- | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
54
+ | Target | Command(s) |
55
+ | --------------------------- | ---------------------------------------------------------------------------------------------------------------- |
56
+ | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
+ | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
+ | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
+ | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
+ | **PHP** (extension + helpers) | `PHP_EXTENSION_DIR=$(php-config --extension-dir) pie install goldziher/html-to-markdown`<br>`composer require goldziher/html-to-markdown` |
61
+ | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
+ | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
+ | **Rust** crate | `cargo add html-to-markdown-rs` |
64
+ | Rust CLI (crates.io) | `cargo install html-to-markdown-cli` |
65
+ | Homebrew CLI | `brew install html-to-markdown` (core) |
66
+ | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
67
67
 
68
68
  ## Quick Start
69
69
 
Binary file
package/dist/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "collaborators": [
5
5
  "Na'aman Hirschfeld <nhirschfeld@gmail.com>"
6
6
  ],
7
- "version": "2.9.2",
7
+ "version": "2.10.1",
8
8
  "license": "MIT",
9
9
  "repository": {
10
10
  "type": "git",
@@ -51,19 +51,19 @@ Experience WebAssembly-powered HTML to Markdown conversion instantly in your bro
51
51
 
52
52
  ## Installation
53
53
 
54
- | Target | Command |
55
- | --------------------------- | ------------------------------------------------------------------------- |
56
- | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
- | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
- | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
- | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
- | **PHP** (extension + helpers) | `pie install goldziher/html-to-markdown`<br>`composer require html-to-markdown/extension` |
61
- | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
- | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
- | **Rust** crate | `cargo add html-to-markdown-rs` |
64
- | Rust CLI | `cargo install html-to-markdown-cli` |
65
- | Homebrew CLI | `brew tap goldziher/tap`<br>`brew install html-to-markdown` |
66
- | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
54
+ | Target | Command(s) |
55
+ | --------------------------- | ---------------------------------------------------------------------------------------------------------------- |
56
+ | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
+ | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
+ | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
+ | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
+ | **PHP** (extension + helpers) | `PHP_EXTENSION_DIR=$(php-config --extension-dir) pie install goldziher/html-to-markdown`<br>`composer require goldziher/html-to-markdown` |
61
+ | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
+ | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
+ | **Rust** crate | `cargo add html-to-markdown-rs` |
64
+ | Rust CLI (crates.io) | `cargo install html-to-markdown-cli` |
65
+ | Homebrew CLI | `brew install html-to-markdown` (core) |
66
+ | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
67
67
 
68
68
  ## Quick Start
69
69
 
@@ -3,7 +3,7 @@
3
3
  "collaborators": [
4
4
  "Na'aman Hirschfeld <nhirschfeld@gmail.com>"
5
5
  ],
6
- "version": "2.9.2",
6
+ "version": "2.10.1",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
@@ -51,19 +51,19 @@ Experience WebAssembly-powered HTML to Markdown conversion instantly in your bro
51
51
 
52
52
  ## Installation
53
53
 
54
- | Target | Command |
55
- | --------------------------- | ------------------------------------------------------------------------- |
56
- | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
- | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
- | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
- | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
- | **PHP** (extension + helpers) | `pie install goldziher/html-to-markdown`<br>`composer require html-to-markdown/extension` |
61
- | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
- | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
- | **Rust** crate | `cargo add html-to-markdown-rs` |
64
- | Rust CLI | `cargo install html-to-markdown-cli` |
65
- | Homebrew CLI | `brew tap goldziher/tap`<br>`brew install html-to-markdown` |
66
- | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
54
+ | Target | Command(s) |
55
+ | --------------------------- | ---------------------------------------------------------------------------------------------------------------- |
56
+ | **Node.js/Bun** (native) | `npm install html-to-markdown-node` |
57
+ | **WebAssembly** (universal) | `npm install html-to-markdown-wasm` |
58
+ | **Deno** | `import { convert } from "npm:html-to-markdown-wasm"` |
59
+ | **Python** (bindings + CLI) | `pip install html-to-markdown` |
60
+ | **PHP** (extension + helpers) | `PHP_EXTENSION_DIR=$(php-config --extension-dir) pie install goldziher/html-to-markdown`<br>`composer require goldziher/html-to-markdown` |
61
+ | **Ruby** gem | `bundle add html-to-markdown` or `gem install html-to-markdown` |
62
+ | **Elixir** (Rustler NIF) | `{:html_to_markdown, "~> 2.8"}` |
63
+ | **Rust** crate | `cargo add html-to-markdown-rs` |
64
+ | Rust CLI (crates.io) | `cargo install html-to-markdown-cli` |
65
+ | Homebrew CLI | `brew install html-to-markdown` (core) |
66
+ | Releases | [GitHub Releases](https://github.com/Goldziher/html-to-markdown/releases) |
67
67
 
68
68
  ## Quick Start
69
69
 
@@ -4,7 +4,7 @@
4
4
  "collaborators": [
5
5
  "Na'aman Hirschfeld <nhirschfeld@gmail.com>"
6
6
  ],
7
- "version": "2.9.2",
7
+ "version": "2.10.1",
8
8
  "license": "MIT",
9
9
  "repository": {
10
10
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "html-to-markdown-wasm",
3
- "version": "2.9.2",
3
+ "version": "2.10.1",
4
4
  "description": "High-performance HTML to Markdown converter - WebAssembly bindings",
5
5
  "main": "dist/html_to_markdown_wasm.js",
6
6
  "types": "dist/html_to_markdown_wasm.d.ts",