html-to-markdown 2.5.2__tar.gz → 2.5.4__tar.gz
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.
Potentially problematic release.
This version of html-to-markdown might be problematic. Click here for more details.
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/Cargo.lock +12 -12
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/Cargo.toml +2 -2
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/PKG-INFO +6 -4
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/README_PYPI.md +5 -3
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/README.md +4 -1
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/README.md +3 -3
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/__init__.py +1 -1
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/bin/html-to-markdown +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/pyproject.toml +1 -1
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/LICENSE +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/Cargo.toml +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/benches/micro_benchmark.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/basic.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/table.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_escape.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_lists.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_tables.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/converter.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/error.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/converter.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/extractor.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/parser.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/spatial.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/types.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/inline_images.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/lib.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/options.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/sanitizer.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/text.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/wrapper.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/tests/hocr_compliance_test.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/tests/integration_test.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/Cargo.toml +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/src/lib.rs +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown-py/uv.lock +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/__main__.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/_rust.pyi +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/api.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/cli.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/cli_proxy.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/exceptions.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/options.py +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/py.typed +0 -0
- {html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/html_to_markdown/v1_compat.py +0 -0
|
@@ -88,9 +88,9 @@ dependencies = [
|
|
|
88
88
|
|
|
89
89
|
[[package]]
|
|
90
90
|
name = "assert_cmd"
|
|
91
|
-
version = "2.1.
|
|
91
|
+
version = "2.1.1"
|
|
92
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
93
|
+
checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
|
|
94
94
|
dependencies = [
|
|
95
95
|
"anstyle",
|
|
96
96
|
"bstr",
|
|
@@ -239,9 +239,9 @@ dependencies = [
|
|
|
239
239
|
|
|
240
240
|
[[package]]
|
|
241
241
|
name = "clap"
|
|
242
|
-
version = "4.5.
|
|
242
|
+
version = "4.5.51"
|
|
243
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
244
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
245
245
|
dependencies = [
|
|
246
246
|
"clap_builder",
|
|
247
247
|
"clap_derive",
|
|
@@ -249,9 +249,9 @@ dependencies = [
|
|
|
249
249
|
|
|
250
250
|
[[package]]
|
|
251
251
|
name = "clap_builder"
|
|
252
|
-
version = "4.5.
|
|
252
|
+
version = "4.5.51"
|
|
253
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
-
checksum = "
|
|
254
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
255
255
|
dependencies = [
|
|
256
256
|
"anstream",
|
|
257
257
|
"anstyle",
|
|
@@ -638,7 +638,7 @@ dependencies = [
|
|
|
638
638
|
|
|
639
639
|
[[package]]
|
|
640
640
|
name = "html-to-markdown-cli"
|
|
641
|
-
version = "2.5.
|
|
641
|
+
version = "2.5.4"
|
|
642
642
|
dependencies = [
|
|
643
643
|
"assert_cmd",
|
|
644
644
|
"clap",
|
|
@@ -652,7 +652,7 @@ dependencies = [
|
|
|
652
652
|
|
|
653
653
|
[[package]]
|
|
654
654
|
name = "html-to-markdown-node"
|
|
655
|
-
version = "2.5.
|
|
655
|
+
version = "2.5.4"
|
|
656
656
|
dependencies = [
|
|
657
657
|
"html-to-markdown-rs",
|
|
658
658
|
"mimalloc-rust",
|
|
@@ -663,7 +663,7 @@ dependencies = [
|
|
|
663
663
|
|
|
664
664
|
[[package]]
|
|
665
665
|
name = "html-to-markdown-py"
|
|
666
|
-
version = "2.5.
|
|
666
|
+
version = "2.5.4"
|
|
667
667
|
dependencies = [
|
|
668
668
|
"base64",
|
|
669
669
|
"html-to-markdown-rs",
|
|
@@ -673,7 +673,7 @@ dependencies = [
|
|
|
673
673
|
|
|
674
674
|
[[package]]
|
|
675
675
|
name = "html-to-markdown-rb"
|
|
676
|
-
version = "2.5.
|
|
676
|
+
version = "2.5.4"
|
|
677
677
|
dependencies = [
|
|
678
678
|
"html-to-markdown-rs",
|
|
679
679
|
"magnus",
|
|
@@ -682,7 +682,7 @@ dependencies = [
|
|
|
682
682
|
|
|
683
683
|
[[package]]
|
|
684
684
|
name = "html-to-markdown-rs"
|
|
685
|
-
version = "2.5.
|
|
685
|
+
version = "2.5.4"
|
|
686
686
|
dependencies = [
|
|
687
687
|
"ammonia",
|
|
688
688
|
"base64",
|
|
@@ -699,7 +699,7 @@ dependencies = [
|
|
|
699
699
|
|
|
700
700
|
[[package]]
|
|
701
701
|
name = "html-to-markdown-wasm"
|
|
702
|
-
version = "2.5.
|
|
702
|
+
version = "2.5.4"
|
|
703
703
|
dependencies = [
|
|
704
704
|
"console_error_panic_hook",
|
|
705
705
|
"html-to-markdown-rs",
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/html-to-markdown-py"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "2.5.
|
|
6
|
+
version = "2.5.4"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
|
|
9
9
|
license = "MIT"
|
|
@@ -15,7 +15,7 @@ rust-version = "1.80"
|
|
|
15
15
|
|
|
16
16
|
[workspace.dependencies]
|
|
17
17
|
# Core library
|
|
18
|
-
html-to-markdown-rs = { version = "2.5.
|
|
18
|
+
html-to-markdown-rs = { version = "2.5.4", path = "crates/html-to-markdown" }
|
|
19
19
|
|
|
20
20
|
# HTML parsing and sanitization
|
|
21
21
|
tl = "0.7"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: html-to-markdown
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.4
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -35,9 +35,11 @@ Project-URL: Repository, https://github.com/Goldziher/html-to-markdown.git
|
|
|
35
35
|
|
|
36
36
|
High-performance HTML to Markdown converter with a clean Python API (powered by a Rust core). The same engine also drives the Node.js, Ruby, and WebAssembly bindings, so rendered Markdown stays identical across runtimes. Wheels are published for Linux, macOS, and Windows.
|
|
37
37
|
|
|
38
|
-
[](https://crates.io/crates/html-to-markdown-rs)
|
|
39
|
+
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
40
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
41
|
+
[](https://rubygems.org/gems/html-to-markdown)
|
|
42
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
41
43
|
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
42
44
|
|
|
43
45
|
## Installation
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
High-performance HTML to Markdown converter with a clean Python API (powered by a Rust core). The same engine also drives the Node.js, Ruby, and WebAssembly bindings, so rendered Markdown stays identical across runtimes. Wheels are published for Linux, macOS, and Windows.
|
|
4
4
|
|
|
5
|
-
[](https://crates.io/crates/html-to-markdown-rs)
|
|
6
|
+
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
7
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
8
|
+
[](https://rubygems.org/gems/html-to-markdown)
|
|
9
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
8
10
|
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
9
11
|
|
|
10
12
|
## Installation
|
|
@@ -5,8 +5,11 @@ High-performance HTML to Markdown converter built with Rust.
|
|
|
5
5
|
This crate is the core engine compiled into the Python wheels, Ruby gem, Node.js NAPI bindings, WebAssembly package, and CLI, ensuring identical Markdown output across every language.
|
|
6
6
|
|
|
7
7
|
[](https://crates.io/crates/html-to-markdown-rs)
|
|
8
|
-
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
9
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
10
|
+
[](https://rubygems.org/gems/html-to-markdown)
|
|
9
11
|
[](https://docs.rs/html-to-markdown-rs)
|
|
12
|
+
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
10
13
|
|
|
11
14
|
Fast, reliable HTML to Markdown conversion with full CommonMark compliance. Built with `html5ever` for correctness and `ammonia` for safe HTML preprocessing.
|
|
12
15
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
High-performance HTML → Markdown conversion powered by Rust. Shipping as a Rust crate, Python package, Ruby gem, Node.js bindings, WebAssembly, and standalone CLI with identical rendering behaviour.
|
|
4
4
|
|
|
5
|
-
[](https://pypi.org/project/html-to-markdown/)
|
|
6
|
-
[](https://rubygems.org/gems/html-to-markdown)
|
|
7
|
-
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
8
5
|
[](https://crates.io/crates/html-to-markdown-rs)
|
|
6
|
+
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
7
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
8
|
+
[](https://rubygems.org/gems/html-to-markdown)
|
|
9
9
|
[](https://pypi.org/project/html-to-markdown/)
|
|
10
10
|
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
11
11
|
[](https://discord.gg/pXxagNK2zN)
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/benches/micro_benchmark.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_escape.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_lists.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/examples/test_tables.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/converter.rs
RENAMED
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/extractor.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/parser.rs
RENAMED
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/hocr/spatial.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/src/inline_images.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.5.2 → html_to_markdown-2.5.4}/crates/html-to-markdown/tests/integration_test.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|