html-to-markdown 2.3.3__tar.gz → 2.3.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.3.3 → html_to_markdown-2.3.4}/Cargo.lock +5 -5
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/Cargo.toml +3 -3
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/PKG-INFO +1 -1
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/__init__.py +1 -1
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/bin/html-to-markdown +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/pyproject.toml +1 -1
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/LICENSE +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/README_PYPI.md +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/Cargo.toml +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/README.md +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/benches/micro_benchmark.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/basic.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/table.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_escape.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_lists.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_tables.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/converter.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/error.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/converter.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/extractor.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/parser.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/spatial.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/types.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/inline_images.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/lib.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/options.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/sanitizer.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/text.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/wrapper.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/tests/hocr_compliance_test.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/tests/integration_test.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/Cargo.toml +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/README.md +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/src/lib.rs +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown-py/uv.lock +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/__main__.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/_rust.pyi +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/api.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/cli.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/cli_proxy.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/exceptions.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/options.py +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/py.typed +0 -0
- {html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/html_to_markdown/v1_compat.py +0 -0
|
@@ -615,7 +615,7 @@ dependencies = [
|
|
|
615
615
|
|
|
616
616
|
[[package]]
|
|
617
617
|
name = "html-to-markdown-cli"
|
|
618
|
-
version = "2.3.
|
|
618
|
+
version = "2.3.4"
|
|
619
619
|
dependencies = [
|
|
620
620
|
"assert_cmd",
|
|
621
621
|
"clap",
|
|
@@ -629,7 +629,7 @@ dependencies = [
|
|
|
629
629
|
|
|
630
630
|
[[package]]
|
|
631
631
|
name = "html-to-markdown-node"
|
|
632
|
-
version = "2.3.
|
|
632
|
+
version = "2.3.4"
|
|
633
633
|
dependencies = [
|
|
634
634
|
"html-to-markdown-rs",
|
|
635
635
|
"mimalloc-rust",
|
|
@@ -640,7 +640,7 @@ dependencies = [
|
|
|
640
640
|
|
|
641
641
|
[[package]]
|
|
642
642
|
name = "html-to-markdown-py"
|
|
643
|
-
version = "2.3.
|
|
643
|
+
version = "2.3.4"
|
|
644
644
|
dependencies = [
|
|
645
645
|
"base64",
|
|
646
646
|
"html-to-markdown-rs",
|
|
@@ -650,7 +650,7 @@ dependencies = [
|
|
|
650
650
|
|
|
651
651
|
[[package]]
|
|
652
652
|
name = "html-to-markdown-rs"
|
|
653
|
-
version = "2.3.
|
|
653
|
+
version = "2.3.4"
|
|
654
654
|
dependencies = [
|
|
655
655
|
"ammonia",
|
|
656
656
|
"base64",
|
|
@@ -667,7 +667,7 @@ dependencies = [
|
|
|
667
667
|
|
|
668
668
|
[[package]]
|
|
669
669
|
name = "html-to-markdown-wasm"
|
|
670
|
-
version = "2.3.
|
|
670
|
+
version = "2.3.4"
|
|
671
671
|
dependencies = [
|
|
672
672
|
"console_error_panic_hook",
|
|
673
673
|
"getrandom 0.2.16",
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/html-to-markdown-py"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "2.3.
|
|
6
|
+
version = "2.3.4"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
|
|
9
9
|
license = "MIT"
|
|
@@ -15,14 +15,14 @@ rust-version = "1.80"
|
|
|
15
15
|
|
|
16
16
|
[workspace.dependencies]
|
|
17
17
|
# Core library
|
|
18
|
-
html-to-markdown-rs = { version = "2.3.
|
|
18
|
+
html-to-markdown-rs = { version = "2.3.4", path = "crates/html-to-markdown" }
|
|
19
19
|
|
|
20
20
|
# HTML parsing and sanitization
|
|
21
21
|
tl = "0.7"
|
|
22
22
|
ammonia = "4.1"
|
|
23
23
|
|
|
24
24
|
# Utilities
|
|
25
|
-
regex = "1.
|
|
25
|
+
regex = "1.12"
|
|
26
26
|
once_cell = "1.21"
|
|
27
27
|
thiserror = "2.0"
|
|
28
28
|
base64 = "0.22"
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.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.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_escape.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/examples/test_lists.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.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.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/converter.rs
RENAMED
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/extractor.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/parser.rs
RENAMED
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.4}/crates/html-to-markdown/src/hocr/spatial.rs
RENAMED
|
File without changes
|
|
File without changes
|
{html_to_markdown-2.3.3 → html_to_markdown-2.3.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.3.3 → html_to_markdown-2.3.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
|
|
File without changes
|