html-to-markdown 3.6.6 → 3.6.8
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.
- checksums.yaml +4 -4
- data/ext/html_to_markdown_rb/Cargo.toml +1 -1
- data/ext/html_to_markdown_rb/native/Cargo.lock +3 -3
- data/ext/html_to_markdown_rb/native/Cargo.toml +2 -2
- data/ext/html_to_markdown_rb/src/lib.rs +41 -41
- data/lib/html_to_markdown/native.rb +1 -1
- data/lib/html_to_markdown/version.rb +2 -2
- data/lib/html_to_markdown.rb +1 -1
- data/lib/html_to_markdown_rb.so +0 -0
- data/sig/types.rbs +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abf17ab82eb4a2a892b129890c90bdb0e238c3d4428173d26ac1da492d07fa49
|
|
4
|
+
data.tar.gz: 8a61c992059348f0ad0bd08a99845e8525a1b0c01443ce776bae1d6a2f720196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 689454d2cfb976ee2b1c258c6d1638e1452fedc378f8d5b31a5bdf0620f7d5bd8755993d6a406fed4b45d55dba814babf7f5aeed02efec327adf2408bb5575ed
|
|
7
|
+
data.tar.gz: ce00f3bee1fe2ce19bb776cacb4f89809b9cf9ab58f6b2ac99e0f2db3fc7ba1cdcea2caa4058384efaa7bc65c990fd22e680abcd5ebba7eec2e454ec9cb93159
|
|
@@ -263,7 +263,7 @@ dependencies = [
|
|
|
263
263
|
|
|
264
264
|
[[package]]
|
|
265
265
|
name = "html-to-markdown-rb"
|
|
266
|
-
version = "3.6.
|
|
266
|
+
version = "3.6.8"
|
|
267
267
|
dependencies = [
|
|
268
268
|
"async-trait",
|
|
269
269
|
"html-to-markdown-rs",
|
|
@@ -276,9 +276,9 @@ dependencies = [
|
|
|
276
276
|
|
|
277
277
|
[[package]]
|
|
278
278
|
name = "html-to-markdown-rs"
|
|
279
|
-
version = "3.6.
|
|
279
|
+
version = "3.6.8"
|
|
280
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
-
checksum = "
|
|
281
|
+
checksum = "4388537cb7a5eb8ae725aa1d74a16bb78dc74f837182c2e8066a2b47aaa15c0a"
|
|
282
282
|
dependencies = [
|
|
283
283
|
"ahash",
|
|
284
284
|
"astral-tl",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "html-to-markdown-rb"
|
|
3
|
-
version = "3.6.
|
|
3
|
+
version = "3.6.8"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
description = "High-performance HTML to Markdown converter"
|
|
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
|
|
|
18
18
|
|
|
19
19
|
[dependencies]
|
|
20
20
|
async-trait = "0.1"
|
|
21
|
-
html-to-markdown-rs = { version = "3.6.
|
|
21
|
+
html-to-markdown-rs = { version = "3.6.8", features = ["serde", "metadata", "visitor", "inline-images", "testkit"] }
|
|
22
22
|
magnus = "0.8"
|
|
23
23
|
rb-sys = ">=0.9, <0.9.128"
|
|
24
24
|
serde = { version = "1", features = ["derive"] }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by alef. DO NOT EDIT.
|
|
2
|
-
// alef:hash:
|
|
2
|
+
// alef:hash:9135e12d3dfbd3200ba0cadbedaff214ea7fc5e98fc63761ce624408dd94db93
|
|
3
3
|
// Re-generate with: alef generate
|
|
4
4
|
#![allow(dead_code, unused_imports, unused_variables)]
|
|
5
5
|
#![allow(
|
|
@@ -4102,7 +4102,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4102
4102
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4103
4103
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4104
4104
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4105
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4105
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4106
4106
|
}
|
|
4107
4107
|
}
|
|
4108
4108
|
}
|
|
@@ -4133,7 +4133,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4133
4133
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4134
4134
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4135
4135
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4136
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4136
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4137
4137
|
}
|
|
4138
4138
|
}
|
|
4139
4139
|
}
|
|
@@ -4172,7 +4172,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4172
4172
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4173
4173
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4174
4174
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4175
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4175
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4176
4176
|
}
|
|
4177
4177
|
}
|
|
4178
4178
|
}
|
|
@@ -4227,7 +4227,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4227
4227
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4228
4228
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4229
4229
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4230
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4230
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4231
4231
|
}
|
|
4232
4232
|
}
|
|
4233
4233
|
}
|
|
@@ -4282,7 +4282,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4282
4282
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4283
4283
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4284
4284
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4285
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4285
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4286
4286
|
}
|
|
4287
4287
|
}
|
|
4288
4288
|
}
|
|
@@ -4334,7 +4334,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4334
4334
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4335
4335
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4336
4336
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4337
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4337
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4338
4338
|
}
|
|
4339
4339
|
}
|
|
4340
4340
|
}
|
|
@@ -4384,7 +4384,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4384
4384
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4385
4385
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4386
4386
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4387
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4387
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4388
4388
|
}
|
|
4389
4389
|
}
|
|
4390
4390
|
}
|
|
@@ -4423,7 +4423,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4423
4423
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4424
4424
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4425
4425
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4426
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4426
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4427
4427
|
}
|
|
4428
4428
|
}
|
|
4429
4429
|
}
|
|
@@ -4472,7 +4472,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4472
4472
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4473
4473
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4474
4474
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4475
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4475
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4476
4476
|
}
|
|
4477
4477
|
}
|
|
4478
4478
|
}
|
|
@@ -4507,7 +4507,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4507
4507
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4508
4508
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4509
4509
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4510
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4510
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4511
4511
|
}
|
|
4512
4512
|
}
|
|
4513
4513
|
}
|
|
@@ -4547,7 +4547,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4547
4547
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4548
4548
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4549
4549
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4550
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4550
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4551
4551
|
}
|
|
4552
4552
|
}
|
|
4553
4553
|
}
|
|
@@ -4578,7 +4578,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4578
4578
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4579
4579
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4580
4580
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4581
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4581
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4582
4582
|
}
|
|
4583
4583
|
}
|
|
4584
4584
|
}
|
|
@@ -4625,7 +4625,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4625
4625
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4626
4626
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4627
4627
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4628
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4628
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4629
4629
|
}
|
|
4630
4630
|
}
|
|
4631
4631
|
}
|
|
@@ -4664,7 +4664,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4664
4664
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4665
4665
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4666
4666
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4667
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4667
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4668
4668
|
}
|
|
4669
4669
|
}
|
|
4670
4670
|
}
|
|
@@ -4708,7 +4708,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4708
4708
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4709
4709
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4710
4710
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4711
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4711
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4712
4712
|
}
|
|
4713
4713
|
}
|
|
4714
4714
|
}
|
|
@@ -4747,7 +4747,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4747
4747
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4748
4748
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4749
4749
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4750
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4750
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4751
4751
|
}
|
|
4752
4752
|
}
|
|
4753
4753
|
}
|
|
@@ -4786,7 +4786,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4786
4786
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4787
4787
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4788
4788
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4789
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4789
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4790
4790
|
}
|
|
4791
4791
|
}
|
|
4792
4792
|
}
|
|
@@ -4825,7 +4825,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4825
4825
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4826
4826
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4827
4827
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4828
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4828
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4829
4829
|
}
|
|
4830
4830
|
}
|
|
4831
4831
|
}
|
|
@@ -4864,7 +4864,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4864
4864
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4865
4865
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4866
4866
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4867
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4867
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4868
4868
|
}
|
|
4869
4869
|
}
|
|
4870
4870
|
}
|
|
@@ -4903,7 +4903,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4903
4903
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4904
4904
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4905
4905
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4906
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4906
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4907
4907
|
}
|
|
4908
4908
|
}
|
|
4909
4909
|
}
|
|
@@ -4942,7 +4942,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4942
4942
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4943
4943
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4944
4944
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4945
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4945
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4946
4946
|
}
|
|
4947
4947
|
}
|
|
4948
4948
|
}
|
|
@@ -4977,7 +4977,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
4977
4977
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
4978
4978
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
4979
4979
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
4980
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
4980
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
4981
4981
|
}
|
|
4982
4982
|
}
|
|
4983
4983
|
}
|
|
@@ -5007,7 +5007,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5007
5007
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5008
5008
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5009
5009
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5010
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5010
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5011
5011
|
}
|
|
5012
5012
|
}
|
|
5013
5013
|
}
|
|
@@ -5038,7 +5038,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5038
5038
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5039
5039
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5040
5040
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5041
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5041
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5042
5042
|
}
|
|
5043
5043
|
}
|
|
5044
5044
|
}
|
|
@@ -5085,7 +5085,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5085
5085
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5086
5086
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5087
5087
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5088
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5088
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5089
5089
|
}
|
|
5090
5090
|
}
|
|
5091
5091
|
}
|
|
@@ -5122,7 +5122,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5122
5122
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5123
5123
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5124
5124
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5125
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5125
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5126
5126
|
}
|
|
5127
5127
|
}
|
|
5128
5128
|
}
|
|
@@ -5161,7 +5161,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5161
5161
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5162
5162
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5163
5163
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5164
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5164
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5165
5165
|
}
|
|
5166
5166
|
}
|
|
5167
5167
|
}
|
|
@@ -5203,7 +5203,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5203
5203
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5204
5204
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5205
5205
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5206
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5206
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5207
5207
|
}
|
|
5208
5208
|
}
|
|
5209
5209
|
}
|
|
@@ -5245,7 +5245,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5245
5245
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5246
5246
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5247
5247
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5248
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5248
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5249
5249
|
}
|
|
5250
5250
|
}
|
|
5251
5251
|
}
|
|
@@ -5298,7 +5298,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5298
5298
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5299
5299
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5300
5300
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5301
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5301
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5302
5302
|
}
|
|
5303
5303
|
}
|
|
5304
5304
|
}
|
|
@@ -5356,7 +5356,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5356
5356
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5357
5357
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5358
5358
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5359
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5359
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5360
5360
|
}
|
|
5361
5361
|
}
|
|
5362
5362
|
}
|
|
@@ -5395,7 +5395,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5395
5395
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5396
5396
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5397
5397
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5398
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5398
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5399
5399
|
}
|
|
5400
5400
|
}
|
|
5401
5401
|
}
|
|
@@ -5437,7 +5437,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5437
5437
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5438
5438
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5439
5439
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5440
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5440
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5441
5441
|
}
|
|
5442
5442
|
}
|
|
5443
5443
|
}
|
|
@@ -5479,7 +5479,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5479
5479
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5480
5480
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5481
5481
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5482
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5482
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5483
5483
|
}
|
|
5484
5484
|
}
|
|
5485
5485
|
}
|
|
@@ -5521,7 +5521,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5521
5521
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5522
5522
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5523
5523
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5524
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5524
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5525
5525
|
}
|
|
5526
5526
|
}
|
|
5527
5527
|
}
|
|
@@ -5556,7 +5556,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5556
5556
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5557
5557
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5558
5558
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5559
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5559
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5560
5560
|
}
|
|
5561
5561
|
}
|
|
5562
5562
|
}
|
|
@@ -5595,7 +5595,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5595
5595
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5596
5596
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5597
5597
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5598
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5598
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5599
5599
|
}
|
|
5600
5600
|
}
|
|
5601
5601
|
}
|
|
@@ -5626,7 +5626,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5626
5626
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5627
5627
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5628
5628
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5629
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5629
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5630
5630
|
}
|
|
5631
5631
|
}
|
|
5632
5632
|
}
|
|
@@ -5665,7 +5665,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5665
5665
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5666
5666
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5667
5667
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5668
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5668
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5669
5669
|
}
|
|
5670
5670
|
}
|
|
5671
5671
|
}
|
|
@@ -5704,7 +5704,7 @@ impl html_to_markdown_rs::visitor::HtmlVisitor for RbHtmlVisitorBridge {
|
|
|
5704
5704
|
"Continue" => html_to_markdown_rs::VisitResult::Continue,
|
|
5705
5705
|
"Skip" => html_to_markdown_rs::VisitResult::Skip,
|
|
5706
5706
|
"PreserveHtml" => html_to_markdown_rs::VisitResult::PreserveHtml,
|
|
5707
|
-
_ => html_to_markdown_rs::VisitResult::
|
|
5707
|
+
_ => html_to_markdown_rs::VisitResult::Custom(s),
|
|
5708
5708
|
}
|
|
5709
5709
|
}
|
|
5710
5710
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:9135e12d3dfbd3200ba0cadbedaff214ea7fc5e98fc63761ce624408dd94db93
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:9135e12d3dfbd3200ba0cadbedaff214ea7fc5e98fc63761ce624408dd94db93
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
|
6
6
|
|
|
7
7
|
module HtmlToMarkdown
|
|
8
8
|
## The version string for this package.
|
|
9
|
-
VERSION = "3.6.
|
|
9
|
+
VERSION = "3.6.8"
|
|
10
10
|
end
|
data/lib/html_to_markdown.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:9135e12d3dfbd3200ba0cadbedaff214ea7fc5e98fc63761ce624408dd94db93
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
data/lib/html_to_markdown_rb.so
CHANGED
|
Binary file
|
data/sig/types.rbs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:9135e12d3dfbd3200ba0cadbedaff214ea7fc5e98fc63761ce624408dd94db93
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-to-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.6.
|
|
4
|
+
version: 3.6.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Na'aman Hirschfeld <naaman@kreuzberg.dev>
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|